board.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481
  1. /*
  2. * (C) Copyright 2002-2006
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * (C) Copyright 2002
  6. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  7. * Marius Groeger <mgroeger@sysgo.de>
  8. *
  9. * See file CREDITS for list of people who contributed to this
  10. * project.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. /*
  28. * To match the U-Boot user interface on ARM platforms to the U-Boot
  29. * standard (as on PPC platforms), some messages with debug character
  30. * are removed from the default U-Boot build.
  31. *
  32. * Define DEBUG here if you want additional info as shown below
  33. * printed upon startup:
  34. *
  35. * U-Boot code: 00F00000 -> 00F3C774 BSS: -> 00FC3274
  36. * IRQ Stack: 00ebff7c
  37. * FIQ Stack: 00ebef7c
  38. */
  39. #include <common.h>
  40. #include <command.h>
  41. #include <malloc.h>
  42. #include <devices.h>
  43. #include <timestamp.h>
  44. #include <version.h>
  45. #include <net.h>
  46. #include <serial.h>
  47. #include <nand.h>
  48. #include <onenand_uboot.h>
  49. #include <mmc.h>
  50. #ifdef CONFIG_DRIVER_SMC91111
  51. #include "../drivers/net/smc91111.h"
  52. #endif
  53. #ifdef CONFIG_DRIVER_LAN91C96
  54. #include "../drivers/net/lan91c96.h"
  55. #endif
  56. DECLARE_GLOBAL_DATA_PTR;
  57. ulong monitor_flash_len;
  58. #ifdef CONFIG_HAS_DATAFLASH
  59. extern int AT91F_DataflashInit(void);
  60. extern void dataflash_print_info(void);
  61. #endif
  62. #ifndef CONFIG_IDENT_STRING
  63. #define CONFIG_IDENT_STRING ""
  64. #endif
  65. const char version_string[] =
  66. U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")"CONFIG_IDENT_STRING;
  67. #ifdef CONFIG_DRIVER_CS8900
  68. extern void cs8900_get_enetaddr (void);
  69. #endif
  70. #ifdef CONFIG_DRIVER_RTL8019
  71. extern void rtl8019_get_enetaddr (uchar * addr);
  72. #endif
  73. #if defined(CONFIG_HARD_I2C) || \
  74. defined(CONFIG_SOFT_I2C)
  75. #include <i2c.h>
  76. #endif
  77. /*
  78. * Begin and End of memory area for malloc(), and current "brk"
  79. */
  80. static ulong mem_malloc_start = 0;
  81. static ulong mem_malloc_end = 0;
  82. static ulong mem_malloc_brk = 0;
  83. static
  84. void mem_malloc_init (ulong dest_addr)
  85. {
  86. mem_malloc_start = dest_addr;
  87. mem_malloc_end = dest_addr + CONFIG_SYS_MALLOC_LEN;
  88. mem_malloc_brk = mem_malloc_start;
  89. memset ((void *) mem_malloc_start, 0,
  90. mem_malloc_end - mem_malloc_start);
  91. }
  92. void *sbrk (ptrdiff_t increment)
  93. {
  94. ulong old = mem_malloc_brk;
  95. ulong new = old + increment;
  96. if ((new < mem_malloc_start) || (new > mem_malloc_end)) {
  97. return (NULL);
  98. }
  99. mem_malloc_brk = new;
  100. return ((void *) old);
  101. }
  102. /************************************************************************
  103. * Coloured LED functionality
  104. ************************************************************************
  105. * May be supplied by boards if desired
  106. */
  107. void inline __coloured_LED_init (void) {}
  108. void inline coloured_LED_init (void) __attribute__((weak, alias("__coloured_LED_init")));
  109. void inline __red_LED_on (void) {}
  110. void inline red_LED_on (void) __attribute__((weak, alias("__red_LED_on")));
  111. void inline __red_LED_off(void) {}
  112. void inline red_LED_off(void) __attribute__((weak, alias("__red_LED_off")));
  113. void inline __green_LED_on(void) {}
  114. void inline green_LED_on(void) __attribute__((weak, alias("__green_LED_on")));
  115. void inline __green_LED_off(void) {}
  116. void inline green_LED_off(void)__attribute__((weak, alias("__green_LED_off")));
  117. void inline __yellow_LED_on(void) {}
  118. void inline yellow_LED_on(void)__attribute__((weak, alias("__yellow_LED_on")));
  119. void inline __yellow_LED_off(void) {}
  120. void inline yellow_LED_off(void)__attribute__((weak, alias("__yellow_LED_off")));
  121. void inline __blue_LED_on(void) {}
  122. void inline blue_LED_on(void)__attribute__((weak, alias("__blue_LED_on")));
  123. void inline __blue_LED_off(void) {}
  124. void inline blue_LED_off(void)__attribute__((weak, alias("__blue_LED_off")));
  125. /************************************************************************
  126. * Init Utilities *
  127. ************************************************************************
  128. * Some of this code should be moved into the core functions,
  129. * or dropped completely,
  130. * but let's get it working (again) first...
  131. */
  132. #if defined(CONFIG_ARM_DCC) && !defined(CONFIG_BAUDRATE)
  133. #define CONFIG_BAUDRATE 115200
  134. #endif
  135. static int init_baudrate (void)
  136. {
  137. char tmp[64]; /* long enough for environment variables */
  138. int i = getenv_r ("baudrate", tmp, sizeof (tmp));
  139. gd->bd->bi_baudrate = gd->baudrate = (i > 0)
  140. ? (int) simple_strtoul (tmp, NULL, 10)
  141. : CONFIG_BAUDRATE;
  142. return (0);
  143. }
  144. static int display_banner (void)
  145. {
  146. printf ("\n\n%s\n\n", version_string);
  147. debug ("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n",
  148. _armboot_start, _bss_start, _bss_end);
  149. #ifdef CONFIG_MODEM_SUPPORT
  150. debug ("Modem Support enabled\n");
  151. #endif
  152. #ifdef CONFIG_USE_IRQ
  153. debug ("IRQ Stack: %08lx\n", IRQ_STACK_START);
  154. debug ("FIQ Stack: %08lx\n", FIQ_STACK_START);
  155. #endif
  156. return (0);
  157. }
  158. /*
  159. * WARNING: this code looks "cleaner" than the PowerPC version, but
  160. * has the disadvantage that you either get nothing, or everything.
  161. * On PowerPC, you might see "DRAM: " before the system hangs - which
  162. * gives a simple yet clear indication which part of the
  163. * initialization if failing.
  164. */
  165. static int display_dram_config (void)
  166. {
  167. int i;
  168. #ifdef DEBUG
  169. puts ("RAM Configuration:\n");
  170. for(i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
  171. printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
  172. print_size (gd->bd->bi_dram[i].size, "\n");
  173. }
  174. #else
  175. ulong size = 0;
  176. for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
  177. size += gd->bd->bi_dram[i].size;
  178. }
  179. puts("DRAM: ");
  180. print_size(size, "\n");
  181. #endif
  182. return (0);
  183. }
  184. #ifndef CONFIG_SYS_NO_FLASH
  185. static void display_flash_config (ulong size)
  186. {
  187. puts ("Flash: ");
  188. print_size (size, "\n");
  189. }
  190. #endif /* CONFIG_SYS_NO_FLASH */
  191. #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
  192. static int init_func_i2c (void)
  193. {
  194. puts ("I2C: ");
  195. i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
  196. puts ("ready\n");
  197. return (0);
  198. }
  199. #endif
  200. #if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
  201. #include <pci.h>
  202. static int arm_pci_init(void)
  203. {
  204. pci_init();
  205. return 0;
  206. }
  207. #endif /* CONFIG_CMD_PCI || CONFIG_PCI */
  208. /*
  209. * Breathe some life into the board...
  210. *
  211. * Initialize a serial port as console, and carry out some hardware
  212. * tests.
  213. *
  214. * The first part of initialization is running from Flash memory;
  215. * its main purpose is to initialize the RAM so that we
  216. * can relocate the monitor code to RAM.
  217. */
  218. /*
  219. * All attempts to come up with a "common" initialization sequence
  220. * that works for all boards and architectures failed: some of the
  221. * requirements are just _too_ different. To get rid of the resulting
  222. * mess of board dependent #ifdef'ed code we now make the whole
  223. * initialization sequence configurable to the user.
  224. *
  225. * The requirements for any new initalization function is simple: it
  226. * receives a pointer to the "global data" structure as it's only
  227. * argument, and returns an integer return code, where 0 means
  228. * "continue" and != 0 means "fatal error, hang the system".
  229. */
  230. typedef int (init_fnc_t) (void);
  231. int print_cpuinfo (void);
  232. init_fnc_t *init_sequence[] = {
  233. #if defined(CONFIG_ARCH_CPU_INIT)
  234. arch_cpu_init, /* basic arch cpu dependent setup */
  235. #endif
  236. board_init, /* basic board dependent setup */
  237. #if defined(CONFIG_USE_IRQ)
  238. interrupt_init, /* set up exceptions */
  239. #endif
  240. timer_init, /* initialize timer */
  241. env_init, /* initialize environment */
  242. init_baudrate, /* initialze baudrate settings */
  243. serial_init, /* serial communications setup */
  244. console_init_f, /* stage 1 init of console */
  245. display_banner, /* say that we are here */
  246. #if defined(CONFIG_DISPLAY_CPUINFO)
  247. print_cpuinfo, /* display cpu info (and speed) */
  248. #endif
  249. #if defined(CONFIG_DISPLAY_BOARDINFO)
  250. checkboard, /* display board info */
  251. #endif
  252. #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
  253. init_func_i2c,
  254. #endif
  255. dram_init, /* configure available RAM banks */
  256. #if defined(CONFIG_CMD_PCI) || defined (CONFIG_PCI)
  257. arm_pci_init,
  258. #endif
  259. display_dram_config,
  260. NULL,
  261. };
  262. void start_armboot (void)
  263. {
  264. init_fnc_t **init_fnc_ptr;
  265. char *s;
  266. #if defined(CONFIG_VFD) || defined(CONFIG_LCD)
  267. unsigned long addr;
  268. #endif
  269. /* Pointer is writable since we allocated a register for it */
  270. gd = (gd_t*)(_armboot_start - CONFIG_SYS_MALLOC_LEN - sizeof(gd_t));
  271. /* compiler optimization barrier needed for GCC >= 3.4 */
  272. __asm__ __volatile__("": : :"memory");
  273. memset ((void*)gd, 0, sizeof (gd_t));
  274. gd->bd = (bd_t*)((char*)gd - sizeof(bd_t));
  275. memset (gd->bd, 0, sizeof (bd_t));
  276. gd->flags |= GD_FLG_RELOC;
  277. monitor_flash_len = _bss_start - _armboot_start;
  278. for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
  279. if ((*init_fnc_ptr)() != 0) {
  280. hang ();
  281. }
  282. }
  283. /* armboot_start is defined in the board-specific linker script */
  284. mem_malloc_init (_armboot_start - CONFIG_SYS_MALLOC_LEN);
  285. #ifndef CONFIG_SYS_NO_FLASH
  286. /* configure available FLASH banks */
  287. display_flash_config (flash_init ());
  288. #endif /* CONFIG_SYS_NO_FLASH */
  289. #ifdef CONFIG_VFD
  290. # ifndef PAGE_SIZE
  291. # define PAGE_SIZE 4096
  292. # endif
  293. /*
  294. * reserve memory for VFD display (always full pages)
  295. */
  296. /* bss_end is defined in the board-specific linker script */
  297. addr = (_bss_end + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
  298. vfd_setmem (addr);
  299. gd->fb_base = addr;
  300. #endif /* CONFIG_VFD */
  301. #ifdef CONFIG_LCD
  302. /* board init may have inited fb_base */
  303. if (!gd->fb_base) {
  304. # ifndef PAGE_SIZE
  305. # define PAGE_SIZE 4096
  306. # endif
  307. /*
  308. * reserve memory for LCD display (always full pages)
  309. */
  310. /* bss_end is defined in the board-specific linker script */
  311. addr = (_bss_end + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
  312. lcd_setmem (addr);
  313. gd->fb_base = addr;
  314. }
  315. #endif /* CONFIG_LCD */
  316. #if defined(CONFIG_CMD_NAND)
  317. puts ("NAND: ");
  318. nand_init(); /* go init the NAND */
  319. #endif
  320. #if defined(CONFIG_CMD_ONENAND)
  321. onenand_init();
  322. #endif
  323. #ifdef CONFIG_HAS_DATAFLASH
  324. AT91F_DataflashInit();
  325. dataflash_print_info();
  326. #endif
  327. /* initialize environment */
  328. env_relocate ();
  329. #ifdef CONFIG_VFD
  330. /* must do this after the framebuffer is allocated */
  331. drv_vfd_init();
  332. #endif /* CONFIG_VFD */
  333. #ifdef CONFIG_SERIAL_MULTI
  334. serial_initialize();
  335. #endif
  336. /* IP Address */
  337. gd->bd->bi_ip_addr = getenv_IPaddr ("ipaddr");
  338. devices_init (); /* get the devices list going. */
  339. jumptable_init ();
  340. #if defined(CONFIG_API)
  341. /* Initialize API */
  342. api_init ();
  343. #endif
  344. console_init_r (); /* fully init console as a device */
  345. #if defined(CONFIG_ARCH_MISC_INIT)
  346. /* miscellaneous arch dependent initialisations */
  347. arch_misc_init ();
  348. #endif
  349. #if defined(CONFIG_MISC_INIT_R)
  350. /* miscellaneous platform dependent initialisations */
  351. misc_init_r ();
  352. #endif
  353. /* enable exceptions */
  354. enable_interrupts ();
  355. /* Perform network card initialisation if necessary */
  356. #ifdef CONFIG_DRIVER_TI_EMAC
  357. /* XXX: this needs to be moved to board init */
  358. extern void davinci_eth_set_mac_addr (const u_int8_t *addr);
  359. if (getenv ("ethaddr")) {
  360. uchar enetaddr[6];
  361. eth_getenv_enetaddr("ethaddr", enetaddr);
  362. davinci_eth_set_mac_addr(enetaddr);
  363. }
  364. #endif
  365. #ifdef CONFIG_DRIVER_CS8900
  366. /* XXX: this needs to be moved to board init */
  367. cs8900_get_enetaddr ();
  368. #endif
  369. #if defined(CONFIG_DRIVER_SMC91111) || defined (CONFIG_DRIVER_LAN91C96)
  370. /* XXX: this needs to be moved to board init */
  371. if (getenv ("ethaddr")) {
  372. uchar enetaddr[6];
  373. eth_getenv_enetaddr("ethaddr", enetaddr);
  374. smc_set_mac_addr(enetaddr);
  375. }
  376. #endif /* CONFIG_DRIVER_SMC91111 || CONFIG_DRIVER_LAN91C96 */
  377. /* Initialize from environment */
  378. if ((s = getenv ("loadaddr")) != NULL) {
  379. load_addr = simple_strtoul (s, NULL, 16);
  380. }
  381. #if defined(CONFIG_CMD_NET)
  382. if ((s = getenv ("bootfile")) != NULL) {
  383. copy_filename (BootFile, s, sizeof (BootFile));
  384. }
  385. #endif
  386. #ifdef BOARD_LATE_INIT
  387. board_late_init ();
  388. #endif
  389. #ifdef CONFIG_GENERIC_MMC
  390. puts ("MMC: ");
  391. mmc_initialize (gd->bd);
  392. #endif
  393. #if defined(CONFIG_CMD_NET)
  394. #if defined(CONFIG_NET_MULTI)
  395. puts ("Net: ");
  396. #endif
  397. eth_initialize(gd->bd);
  398. #if defined(CONFIG_RESET_PHY_R)
  399. debug ("Reset Ethernet PHY\n");
  400. reset_phy();
  401. #endif
  402. #endif
  403. /* main_loop() can return to retry autoboot, if so just run it again. */
  404. for (;;) {
  405. main_loop ();
  406. }
  407. /* NOTREACHED - no way out of command loop except booting */
  408. }
  409. void hang (void)
  410. {
  411. puts ("### ERROR ### Please RESET the board ###\n");
  412. for (;;);
  413. }