Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __CONFIG_H |
| 7 | #define __CONFIG_H |
| 8 | |
Simon Glass | 1c12bce | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 9 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 42d3b29 | 2014-06-11 23:29:43 -0600 | [diff] [blame] | 10 | #define CONFIG_IO_TRACE |
Simon Glass | 1c12bce | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 11 | #endif |
Simon Glass | 42d3b29 | 2014-06-11 23:29:43 -0600 | [diff] [blame] | 12 | |
Simon Glass | b53e94b | 2014-07-10 22:23:32 -0600 | [diff] [blame] | 13 | #define CONFIG_MALLOC_F_ADDR 0x0010000 |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 14 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 15 | #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ |
| 16 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 17 | /* Size of our emulated memory */ |
Heinrich Schuchardt | e85497a | 2020-06-07 18:47:35 +0200 | [diff] [blame] | 18 | #define SB_CONCAT(x, y) x ## y |
| 19 | #define SB_TO_UL(s) SB_CONCAT(s, UL) |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 20 | #define CONFIG_SYS_SDRAM_BASE 0 |
Heinrich Schuchardt | e85497a | 2020-06-07 18:47:35 +0200 | [diff] [blame] | 21 | #define CONFIG_SYS_SDRAM_SIZE \ |
| 22 | (SB_TO_UL(CONFIG_SANDBOX_RAM_SIZE_MB) << 20) |
Simon Glass | a733b06 | 2013-04-26 02:53:43 +0000 | [diff] [blame] | 23 | #define CONFIG_SYS_MONITOR_BASE 0 |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 24 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 25 | #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ |
| 26 | 115200} |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 27 | |
Joe Hershberger | 1f5bc52 | 2015-04-08 01:41:25 -0500 | [diff] [blame] | 28 | #define CONFIG_TIMESTAMP |
Joe Hershberger | f3e0c37 | 2015-03-22 17:09:22 -0500 | [diff] [blame] | 29 | #define CONFIG_BOOTP_SERVERIP |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 30 | |
Simon Glass | ad0e463 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 31 | #ifndef SANDBOX_NO_SDL |
Simon Glass | 2c072c9 | 2014-02-27 13:26:25 -0700 | [diff] [blame] | 32 | #define CONFIG_SANDBOX_SDL |
Simon Glass | ad0e463 | 2014-03-22 17:12:58 -0600 | [diff] [blame] | 33 | #endif |
| 34 | |
Simon Glass | 1c12bce | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 35 | #ifndef CONFIG_SPL_BUILD |
Simon Glass | 74c6dc1 | 2016-05-01 11:36:23 -0600 | [diff] [blame] | 36 | #define CONFIG_SYS_IDE_MAXBUS 1 |
| 37 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0 |
| 38 | #define CONFIG_SYS_IDE_MAXDEVICE 2 |
| 39 | #define CONFIG_SYS_ATA_BASE_ADDR 0x100 |
| 40 | #define CONFIG_SYS_ATA_DATA_OFFSET 0 |
| 41 | #define CONFIG_SYS_ATA_REG_OFFSET 1 |
| 42 | #define CONFIG_SYS_ATA_ALT_OFFSET 2 |
| 43 | #define CONFIG_SYS_ATA_STRIDE 4 |
Simon Glass | 1c12bce | 2016-07-04 11:57:52 -0600 | [diff] [blame] | 44 | #endif |
Simon Glass | 74c6dc1 | 2016-05-01 11:36:23 -0600 | [diff] [blame] | 45 | |
Simon Glass | e8c0a25 | 2016-05-01 11:36:25 -0600 | [diff] [blame] | 46 | #define CONFIG_SCSI_AHCI_PLAT |
| 47 | #define CONFIG_SYS_SCSI_MAX_DEVICE 2 |
| 48 | #define CONFIG_SYS_SCSI_MAX_SCSI_ID 8 |
| 49 | #define CONFIG_SYS_SCSI_MAX_LUN 4 |
| 50 | |
Simon Glass | 199a120 | 2016-05-01 11:36:27 -0600 | [diff] [blame] | 51 | #define CONFIG_SYS_SATA_MAX_DEVICE 2 |
| 52 | |
Simon Glass | c861fbf | 2011-10-03 19:26:47 +0000 | [diff] [blame] | 53 | #endif |