dm355evm.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * Copyright (C) 2009 David Brownell
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. #include <common.h>
  19. #include <nand.h>
  20. #include <asm/io.h>
  21. #include <asm/arch/hardware.h>
  22. #include <asm/arch/emif_defs.h>
  23. #include <asm/arch/nand_defs.h>
  24. #include "../common/misc.h"
  25. #include <net.h>
  26. #include <netdev.h>
  27. DECLARE_GLOBAL_DATA_PTR;
  28. /*
  29. * With the DM355 EVM, u-boot is *always* a third stage loader,
  30. * unless a JTAG debugger handles the first two stages:
  31. *
  32. * - 1st stage is ROM Boot Loader (RBL), which searches for a
  33. * second stage loader in one of three places based on SW7:
  34. * NAND (with MMC/SD fallback), MMC/SD, or UART.
  35. *
  36. * - 2nd stage is User Boot Loader (UBL), using at most 30KB
  37. * of on-chip SRAM, responsible for lowlevel init, and for
  38. * loading the third stage loader into DRAM.
  39. *
  40. * - 3rd stage, that's us!
  41. */
  42. int board_init(void)
  43. {
  44. gd->bd->bi_arch_number = MACH_TYPE_DAVINCI_DM355_EVM;
  45. gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
  46. /* We expect the UBL to have handled "lowlevel init", which
  47. * involves setting up at least:
  48. * - clocks
  49. * + PLL1 (for ARM and peripherals) and PLL2 (for DDR)
  50. * + clock divisors for those PLLs
  51. * + LPSC_DDR module enabled
  52. * + LPSC_TIMER0 module (still) enabled
  53. * - EMIF
  54. * + DDR init and timings
  55. * + AEMIF timings (for NAND and DM9000)
  56. * - pinmux
  57. *
  58. * Some of that is repeated here, mostly as a precaution.
  59. */
  60. /* AEMIF: Some "address" lines are available as GPIOs. A3..A13
  61. * could be too if we used A12 as a GPIO during NAND chipselect
  62. * (and Linux did too), letting us control the LED on A7/GPIO61.
  63. */
  64. REG(PINMUX2) = 0x0c08;
  65. /* UART0 may still be in SyncReset if we didn't boot from UART */
  66. davinci_enable_uart0();
  67. /* EDMA may be in SyncReset too; turn it on, Linux won't (yet) */
  68. lpsc_on(DAVINCI_LPSC_TPCC);
  69. lpsc_on(DAVINCI_LPSC_TPTC0);
  70. lpsc_on(DAVINCI_LPSC_TPTC1);
  71. return 0;
  72. }
  73. #ifdef CONFIG_DRIVER_DM9000
  74. int board_eth_init(bd_t *bis)
  75. {
  76. return dm9000_initialize(bis);
  77. }
  78. #endif
  79. #ifdef CONFIG_NAND_DAVINCI
  80. static void nand_dm355evm_select_chip(struct mtd_info *mtd, int chip)
  81. {
  82. struct nand_chip *this = mtd->priv;
  83. unsigned long wbase = (unsigned long) this->IO_ADDR_W;
  84. unsigned long rbase = (unsigned long) this->IO_ADDR_R;
  85. if (chip == 1) {
  86. __set_bit(14, &wbase);
  87. __set_bit(14, &rbase);
  88. } else {
  89. __clear_bit(14, &wbase);
  90. __clear_bit(14, &rbase);
  91. }
  92. this->IO_ADDR_W = (void *)wbase;
  93. this->IO_ADDR_R = (void *)rbase;
  94. }
  95. int board_nand_init(struct nand_chip *nand)
  96. {
  97. davinci_nand_init(nand);
  98. nand->select_chip = nand_dm355evm_select_chip;
  99. return 0;
  100. }
  101. #endif