at91sam9rlek.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. /*
  2. * (C) Copyright 2007-2008
  3. * Stelian Pop <stelian@popies.net>
  4. * Lead Tech Design <www.leadtechdesign.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #include <common.h>
  25. #include <asm/io.h>
  26. #include <asm/arch/at91sam9rl.h>
  27. #include <asm/arch/at91sam9rl_matrix.h>
  28. #include <asm/arch/at91sam9_smc.h>
  29. #include <asm/arch/at91_common.h>
  30. #include <asm/arch/at91_pmc.h>
  31. #include <asm/arch/at91_rstc.h>
  32. #include <asm/arch/clk.h>
  33. #include <asm/arch/gpio.h>
  34. #include <lcd.h>
  35. #include <atmel_lcdc.h>
  36. #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
  37. #include <net.h>
  38. #endif
  39. DECLARE_GLOBAL_DATA_PTR;
  40. /* ------------------------------------------------------------------------- */
  41. /*
  42. * Miscelaneous platform dependent initialisations
  43. */
  44. #ifdef CONFIG_CMD_NAND
  45. static void at91sam9rlek_nand_hw_init(void)
  46. {
  47. struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;
  48. struct at91_matrix *matrix = (struct at91_matrix *)ATMEL_BASE_MATRIX;
  49. struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
  50. unsigned long csa;
  51. /* Enable CS3 */
  52. csa = readl(&matrix->ebicsa);
  53. csa |= AT91_MATRIX_CS3A_SMC_SMARTMEDIA;
  54. writel(csa, &matrix->ebicsa);
  55. /* Configure SMC CS3 for NAND/SmartMedia */
  56. writel(AT91_SMC_SETUP_NWE(1) | AT91_SMC_SETUP_NCS_WR(0) |
  57. AT91_SMC_SETUP_NRD(1) | AT91_SMC_SETUP_NCS_RD(0),
  58. &smc->cs[3].setup);
  59. writel(AT91_SMC_PULSE_NWE(3) | AT91_SMC_PULSE_NCS_WR(3) |
  60. AT91_SMC_PULSE_NRD(3) | AT91_SMC_PULSE_NCS_RD(3),
  61. &smc->cs[3].pulse);
  62. writel(AT91_SMC_CYCLE_NWE(5) | AT91_SMC_CYCLE_NRD(5),
  63. &smc->cs[3].cycle);
  64. writel(AT91_SMC_MODE_RM_NRD | AT91_SMC_MODE_WM_NWE |
  65. AT91_SMC_MODE_EXNW_DISABLE |
  66. #ifdef CONFIG_SYS_NAND_DBW_16
  67. AT91_SMC_MODE_DBW_16 |
  68. #else /* CONFIG_SYS_NAND_DBW_8 */
  69. AT91_SMC_MODE_DBW_8 |
  70. #endif
  71. AT91_SMC_MODE_TDF_CYCLE(2),
  72. &smc->cs[3].mode);
  73. writel(1 << ATMEL_ID_PIOD, &pmc->pcer);
  74. /* Configure RDY/BSY */
  75. at91_set_gpio_input(CONFIG_SYS_NAND_READY_PIN, 1);
  76. /* Enable NandFlash */
  77. at91_set_gpio_output(CONFIG_SYS_NAND_ENABLE_PIN, 1);
  78. at91_set_A_periph(AT91_PIN_PB4, 0); /* NANDOE */
  79. at91_set_A_periph(AT91_PIN_PB5, 0); /* NANDWE */
  80. }
  81. #endif
  82. #ifdef CONFIG_LCD
  83. vidinfo_t panel_info = {
  84. vl_col: 240,
  85. vl_row: 320,
  86. vl_clk: 4965000,
  87. vl_sync: ATMEL_LCDC_INVLINE_INVERTED |
  88. ATMEL_LCDC_INVFRAME_INVERTED,
  89. vl_bpix: 3,
  90. vl_tft: 1,
  91. vl_hsync_len: 5,
  92. vl_left_margin: 1,
  93. vl_right_margin:33,
  94. vl_vsync_len: 1,
  95. vl_upper_margin:1,
  96. vl_lower_margin:0,
  97. mmio: ATMEL_BASE_LCDC,
  98. };
  99. void lcd_enable(void)
  100. {
  101. at91_set_gpio_value(AT91_PIN_PA30, 0); /* power up */
  102. }
  103. void lcd_disable(void)
  104. {
  105. at91_set_gpio_value(AT91_PIN_PA30, 1); /* power down */
  106. }
  107. static void at91sam9rlek_lcd_hw_init(void)
  108. {
  109. struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
  110. at91_set_B_periph(AT91_PIN_PC1, 0); /* LCDPWR */
  111. at91_set_A_periph(AT91_PIN_PC5, 0); /* LCDHSYNC */
  112. at91_set_A_periph(AT91_PIN_PC6, 0); /* LCDDOTCK */
  113. at91_set_A_periph(AT91_PIN_PC7, 0); /* LCDDEN */
  114. at91_set_A_periph(AT91_PIN_PC3, 0); /* LCDCC */
  115. at91_set_B_periph(AT91_PIN_PC9, 0); /* LCDD3 */
  116. at91_set_B_periph(AT91_PIN_PC10, 0); /* LCDD4 */
  117. at91_set_B_periph(AT91_PIN_PC11, 0); /* LCDD5 */
  118. at91_set_B_periph(AT91_PIN_PC12, 0); /* LCDD6 */
  119. at91_set_B_periph(AT91_PIN_PC13, 0); /* LCDD7 */
  120. at91_set_B_periph(AT91_PIN_PC15, 0); /* LCDD11 */
  121. at91_set_B_periph(AT91_PIN_PC16, 0); /* LCDD12 */
  122. at91_set_B_periph(AT91_PIN_PC17, 0); /* LCDD13 */
  123. at91_set_B_periph(AT91_PIN_PC18, 0); /* LCDD14 */
  124. at91_set_B_periph(AT91_PIN_PC19, 0); /* LCDD15 */
  125. at91_set_B_periph(AT91_PIN_PC20, 0); /* LCDD18 */
  126. at91_set_B_periph(AT91_PIN_PC21, 0); /* LCDD19 */
  127. at91_set_B_periph(AT91_PIN_PC22, 0); /* LCDD20 */
  128. at91_set_B_periph(AT91_PIN_PC23, 0); /* LCDD21 */
  129. at91_set_B_periph(AT91_PIN_PC24, 0); /* LCDD22 */
  130. at91_set_B_periph(AT91_PIN_PC25, 0); /* LCDD23 */
  131. writel(1 << ATMEL_ID_LCDC, &pmc->pcer);
  132. }
  133. #ifdef CONFIG_LCD_INFO
  134. #include <nand.h>
  135. #include <version.h>
  136. void lcd_show_board_info(void)
  137. {
  138. ulong dram_size, nand_size;
  139. int i;
  140. char temp[32];
  141. lcd_printf ("%s\n", U_BOOT_VERSION);
  142. lcd_printf ("(C) 2008 ATMEL Corp\n");
  143. lcd_printf ("at91support@atmel.com\n");
  144. lcd_printf ("%s CPU at %s MHz\n",
  145. ATMEL_CPU_NAME,
  146. strmhz(temp, get_cpu_clk_rate()));
  147. dram_size = 0;
  148. for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++)
  149. dram_size += gd->bd->bi_dram[i].size;
  150. nand_size = 0;
  151. for (i = 0; i < CONFIG_SYS_MAX_NAND_DEVICE; i++)
  152. nand_size += nand_info[i].size;
  153. lcd_printf (" %ld MB SDRAM, %ld MB NAND\n",
  154. dram_size >> 20,
  155. nand_size >> 20 );
  156. }
  157. #endif /* CONFIG_LCD_INFO */
  158. #endif
  159. int board_early_init_f(void)
  160. {
  161. struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
  162. /* Enable clocks for all PIOs */
  163. writel((1 << ATMEL_ID_PIOA) | (1 << ATMEL_ID_PIOB) |
  164. (1 << ATMEL_ID_PIOC) | (1 << ATMEL_ID_PIOD),
  165. &pmc->pcer);
  166. return 0;
  167. }
  168. int board_init(void)
  169. {
  170. /* arch number of AT91SAM9RLEK-Board */
  171. gd->bd->bi_arch_number = MACH_TYPE_AT91SAM9RLEK;
  172. /* adress of boot parameters */
  173. gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
  174. at91_seriald_hw_init();
  175. #ifdef CONFIG_CMD_NAND
  176. at91sam9rlek_nand_hw_init();
  177. #endif
  178. #ifdef CONFIG_HAS_DATAFLASH
  179. at91_spi0_hw_init(1 << 0);
  180. #endif
  181. #ifdef CONFIG_LCD
  182. at91sam9rlek_lcd_hw_init();
  183. #endif
  184. return 0;
  185. }
  186. int dram_init(void)
  187. {
  188. gd->ram_size = get_ram_size(
  189. (void *)CONFIG_SYS_SDRAM_BASE,
  190. CONFIG_SYS_SDRAM_SIZE);
  191. return 0;
  192. }