sandbox.h (76b40ab41eff1f402ee52ba768b09daad293b9bb) | sandbox.h (a733b06b69d2cb058c4363952bc0793b1f514305) |
---|---|
1/* 2 * Copyright (c) 2011 The Chromium OS Authors. 3 * See file CREDITS for list of people who contributed to this 4 * project. 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License as 8 * published by the Free Software Foundation; either version 2 of --- 8 unchanged lines hidden (view full) --- 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 19 * MA 02111-1307 USA 20 */ 21 22#ifndef __CONFIG_H 23#define __CONFIG_H 24 | 1/* 2 * Copyright (c) 2011 The Chromium OS Authors. 3 * See file CREDITS for list of people who contributed to this 4 * project. 5 * 6 * This program is free software; you can redistribute it and/or 7 * modify it under the terms of the GNU General Public License as 8 * published by the Free Software Foundation; either version 2 of --- 8 unchanged lines hidden (view full) --- 17 * along with this program; if not, write to the Free Software 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 19 * MA 02111-1307 USA 20 */ 21 22#ifndef __CONFIG_H 23#define __CONFIG_H 24 |
25#define CONFIG_NR_DRAM_BANKS 1 26#define CONFIG_DRAM_SIZE (128 << 20) 27 | |
28/* Number of bits in a C 'long' on this architecture */ 29#define CONFIG_SANDBOX_BITS_PER_LONG 64 30 31#define CONFIG_OF_CONTROL 32#define CONFIG_OF_LIBFDT 33#define CONFIG_LMB 34 35#define CONFIG_FS_FAT --- 35 unchanged lines hidden (view full) --- 71 72/* Memory things - we don't really want a memory test */ 73#define CONFIG_SYS_LOAD_ADDR 0x00000000 74#define CONFIG_SYS_MEMTEST_START 0x00100000 75#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000) 76#define CONFIG_PHYS_64BIT 77 78/* Size of our emulated memory */ | 25/* Number of bits in a C 'long' on this architecture */ 26#define CONFIG_SANDBOX_BITS_PER_LONG 64 27 28#define CONFIG_OF_CONTROL 29#define CONFIG_OF_LIBFDT 30#define CONFIG_LMB 31 32#define CONFIG_FS_FAT --- 35 unchanged lines hidden (view full) --- 68 69/* Memory things - we don't really want a memory test */ 70#define CONFIG_SYS_LOAD_ADDR 0x00000000 71#define CONFIG_SYS_MEMTEST_START 0x00100000 72#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000) 73#define CONFIG_PHYS_64BIT 74 75/* Size of our emulated memory */ |
76#define CONFIG_SYS_SDRAM_BASE 0 |
|
79#define CONFIG_SYS_SDRAM_SIZE (128 << 20) | 77#define CONFIG_SYS_SDRAM_SIZE (128 << 20) |
78#define CONFIG_SYS_TEXT_BASE 0 79#define CONFIG_SYS_MONITOR_BASE 0 80#define CONFIG_NR_DRAM_BANKS 1 |
|
80 81#define CONFIG_BAUDRATE 115200 82#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ 83 115200} 84#define CONFIG_SANDBOX_SERIAL 85 86#define CONFIG_SYS_NO_FLASH 87 --- 21 unchanged lines hidden --- | 81 82#define CONFIG_BAUDRATE 115200 83#define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\ 84 115200} 85#define CONFIG_SANDBOX_SERIAL 86 87#define CONFIG_SYS_NO_FLASH 88 --- 21 unchanged lines hidden --- |