cfe.c (34adb28d500e644cc260da4ceb66ba6dc0beaf93) | cfe.c (15d45cce3a0e0716fa49c768f887c6406dfb91f7) |
---|---|
1/* 2 * Copyright (C) 2000, 2001, 2002, 2003 Broadcom Corporation 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * as published by the Free Software Foundation; either version 2 7 * of the License, or (at your option) any later version. 8 * --- 35 unchanged lines hidden (view full) --- 44#define MAX_RAM_SIZE (0xffffffffULL) 45#endif 46#else 47#define MAX_RAM_SIZE (0x1fffffffULL) 48#endif 49#endif 50 51#define SIBYTE_MAX_MEM_REGIONS 8 | 1/* 2 * Copyright (C) 2000, 2001, 2002, 2003 Broadcom Corporation 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * as published by the Free Software Foundation; either version 2 7 * of the License, or (at your option) any later version. 8 * --- 35 unchanged lines hidden (view full) --- 44#define MAX_RAM_SIZE (0xffffffffULL) 45#endif 46#else 47#define MAX_RAM_SIZE (0x1fffffffULL) 48#endif 49#endif 50 51#define SIBYTE_MAX_MEM_REGIONS 8 |
52phys_t board_mem_region_addrs[SIBYTE_MAX_MEM_REGIONS]; 53phys_t board_mem_region_sizes[SIBYTE_MAX_MEM_REGIONS]; | 52phys_addr_t board_mem_region_addrs[SIBYTE_MAX_MEM_REGIONS]; 53phys_addr_t board_mem_region_sizes[SIBYTE_MAX_MEM_REGIONS]; |
54unsigned int board_mem_region_count; 55 56int cfe_cons_handle; 57 58#ifdef CONFIG_BLK_DEV_INITRD 59extern unsigned long initrd_start, initrd_end; 60#endif 61 --- 283 unchanged lines hidden --- | 54unsigned int board_mem_region_count; 55 56int cfe_cons_handle; 57 58#ifdef CONFIG_BLK_DEV_INITRD 59extern unsigned long initrd_start, initrd_end; 60#endif 61 --- 283 unchanged lines hidden --- |