tam3517-common.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. /*
  2. * Copyright (C) 2011
  3. * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
  4. *
  5. * Copyright (C) 2009 TechNexion Ltd.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc.
  20. */
  21. #ifndef __TAM3517_H
  22. #define __TAM3517_H
  23. /*
  24. * High Level Configuration Options
  25. */
  26. #define CONFIG_OMAP /* in a TI OMAP core */
  27. #define CONFIG_OMAP34XX /* which is a 34XX */
  28. #define CONFIG_OMAP_GPIO
  29. #define CONFIG_SYS_TEXT_BASE 0x80008000
  30. #define CONFIG_SYS_CACHELINE_SIZE 64
  31. #define CONFIG_EMIF4 /* The chip has EMIF4 controller */
  32. #include <asm/arch/cpu.h> /* get chip and board defs */
  33. #include <asm/arch/omap3.h>
  34. /*
  35. * Display CPU and Board information
  36. */
  37. #define CONFIG_DISPLAY_CPUINFO
  38. #define CONFIG_DISPLAY_BOARDINFO
  39. /* Clock Defines */
  40. #define V_OSCK 26000000 /* Clock output from T2 */
  41. #define V_SCLK (V_OSCK >> 1)
  42. #define CONFIG_MISC_INIT_R
  43. #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
  44. #define CONFIG_SETUP_MEMORY_TAGS
  45. #define CONFIG_INITRD_TAG
  46. #define CONFIG_REVISION_TAG
  47. /*
  48. * Size of malloc() pool
  49. */
  50. #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB sector */
  51. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (128 << 10) + \
  52. 2 * 1024 * 1024)
  53. /*
  54. * DDR related
  55. */
  56. #define CONFIG_OMAP3_MICRON_DDR /* Micron DDR */
  57. #define CONFIG_SYS_CS0_SIZE (256 * 1024 * 1024)
  58. /*
  59. * Hardware drivers
  60. */
  61. /*
  62. * NS16550 Configuration
  63. */
  64. #define CONFIG_SYS_NS16550
  65. #define CONFIG_SYS_NS16550_SERIAL
  66. #define CONFIG_SYS_NS16550_REG_SIZE (-4)
  67. #define CONFIG_SYS_NS16550_CLK 48000000 /* 48MHz (APLL96/2) */
  68. /*
  69. * select serial console configuration
  70. */
  71. #define CONFIG_CONS_INDEX 1
  72. #define CONFIG_SYS_NS16550_COM1 OMAP34XX_UART1
  73. #define CONFIG_SERIAL1 /* UART1 */
  74. /* allow to overwrite serial and ethaddr */
  75. #define CONFIG_ENV_OVERWRITE
  76. #define CONFIG_BAUDRATE 115200
  77. #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
  78. 115200}
  79. #define CONFIG_MMC
  80. #define CONFIG_OMAP_HSMMC
  81. #define CONFIG_GENERIC_MMC
  82. #define CONFIG_DOS_PARTITION
  83. /* EHCI */
  84. #define CONFIG_OMAP3_GPIO_5
  85. #define CONFIG_USB_EHCI
  86. #define CONFIG_USB_EHCI_OMAP
  87. #define CONFIG_USB_ULPI
  88. #define CONFIG_USB_ULPI_VIEWPORT_OMAP
  89. #define CONFIG_OMAP_EHCI_PHY1_RESET_GPIO 25
  90. #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3
  91. #define CONFIG_USB_STORAGE
  92. /* #define CONFIG_EHCI_DCACHE */
  93. /* commands to include */
  94. #include <config_cmd_default.h>
  95. #define CONFIG_CMD_CACHE
  96. #define CONFIG_CMD_DHCP
  97. #define CONFIG_CMD_EXT2 /* EXT2 Support */
  98. #define CONFIG_CMD_FAT /* FAT support */
  99. #define CONFIG_CMD_GPIO
  100. #define CONFIG_CMD_I2C /* I2C serial bus support */
  101. #define CONFIG_CMD_MII
  102. #define CONFIG_CMD_MMC /* MMC support */
  103. #define CONFIG_CMD_NET
  104. #define CONFIG_CMD_NFS
  105. #define CONFIG_CMD_NAND /* NAND support */
  106. #define CONFIG_CMD_PING
  107. #define CONFIG_CMD_USB
  108. #define CONFIG_CMD_EEPROM
  109. #undef CONFIG_CMD_FLASH /* only NAND on the SOM */
  110. #undef CONFIG_CMD_IMLS
  111. #define CONFIG_SYS_NO_FLASH
  112. #define CONFIG_HARD_I2C
  113. #define CONFIG_SYS_I2C_SPEED 400000
  114. #define CONFIG_SYS_I2C_SLAVE 1
  115. #define CONFIG_SYS_I2C_BUS 0
  116. #define CONFIG_SYS_I2C_BUS_SELECT 1
  117. #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* base address */
  118. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 /* bytes of address */
  119. #define CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW 0x07
  120. #define CONFIG_DRIVER_OMAP34XX_I2C
  121. /*
  122. * Board NAND Info.
  123. */
  124. #define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
  125. /* to access */
  126. /* nand at CS0 */
  127. #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of */
  128. /* NAND devices */
  129. #define CONFIG_AUTO_COMPLETE
  130. /*
  131. * Miscellaneous configurable options
  132. */
  133. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  134. #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
  135. #define CONFIG_CMDLINE_EDITING
  136. #define CONFIG_AUTO_COMPLETE
  137. #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
  138. /* Print Buffer Size */
  139. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  140. sizeof(CONFIG_SYS_PROMPT) + 16)
  141. #define CONFIG_SYS_MAXARGS 32 /* max number of command */
  142. /* args */
  143. /* Boot Argument Buffer Size */
  144. #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
  145. /* memtest works on */
  146. #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
  147. #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
  148. 0x01F00000) /* 31MB */
  149. #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default load */
  150. /* address */
  151. /*
  152. * AM3517 has 12 GP timers, they can be driven by the system clock
  153. * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
  154. * This rate is divided by a local divisor.
  155. */
  156. #define CONFIG_SYS_TIMERBASE OMAP34XX_GPT2
  157. #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
  158. #define CONFIG_SYS_HZ 1000
  159. /*
  160. * Physical Memory Map
  161. */
  162. #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
  163. #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
  164. #define PHYS_SDRAM_1_SIZE (32 << 20) /* at least 32 MiB */
  165. #define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
  166. /*
  167. * FLASH and environment organization
  168. */
  169. /* **** PISMO SUPPORT *** */
  170. /* Configure the PISMO */
  171. #define PISMO1_NAND_SIZE GPMC_SIZE_128M
  172. #define CONFIG_NAND_OMAP_GPMC
  173. #define GPMC_NAND_ECC_LP_x16_LAYOUT
  174. #define CONFIG_ENV_IS_IN_NAND
  175. #define SMNAND_ENV_OFFSET 0x180000 /* environment starts here */
  176. /* Redundant Environment */
  177. #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
  178. #define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
  179. #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
  180. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + \
  181. 2 * CONFIG_SYS_ENV_SECT_SIZE)
  182. #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
  183. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  184. #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
  185. #define CONFIG_SYS_INIT_RAM_SIZE 0x800
  186. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
  187. CONFIG_SYS_INIT_RAM_SIZE - \
  188. GENERATED_GBL_DATA_SIZE)
  189. /*
  190. * ethernet support, EMAC
  191. *
  192. */
  193. #define CONFIG_DRIVER_TI_EMAC
  194. #define CONFIG_DRIVER_TI_EMAC_USE_RMII
  195. #define CONFIG_MII
  196. #define CONFIG_EMAC_MDIO_PHY_NUM 0
  197. #define CONFIG_BOOTP_DEFAULT
  198. #define CONFIG_BOOTP_DNS
  199. #define CONFIG_BOOTP_DNS2
  200. #define CONFIG_BOOTP_SEND_HOSTNAME
  201. #define CONFIG_NET_RETRY_COUNT 10
  202. /* Defines for SPL */
  203. #define CONFIG_SPL
  204. #define CONFIG_SPL_FRAMEWORK
  205. #define CONFIG_SPL_BOARD_INIT
  206. #define CONFIG_SPL_CONSOLE
  207. #define CONFIG_SPL_NAND_SIMPLE
  208. #define CONFIG_SPL_NAND_SOFTECC
  209. #define CONFIG_SPL_NAND_WORKSPACE 0x8f07f000 /* below BSS */
  210. #define CONFIG_SPL_LIBCOMMON_SUPPORT
  211. #define CONFIG_SPL_LIBDISK_SUPPORT
  212. #define CONFIG_SPL_I2C_SUPPORT
  213. #define CONFIG_SPL_LIBGENERIC_SUPPORT
  214. #define CONFIG_SPL_SERIAL_SUPPORT
  215. #define CONFIG_SPL_GPIO_SUPPORT
  216. #define CONFIG_SPL_POWER_SUPPORT
  217. #define CONFIG_SPL_NAND_SUPPORT
  218. #define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/omap-common/u-boot-spl.lds"
  219. #define CONFIG_SPL_TEXT_BASE 0x40200000 /*CONFIG_SYS_SRAM_START*/
  220. #define CONFIG_SPL_MAX_SIZE (54 * 1024) /* 8 KB for stack */
  221. #define CONFIG_SPL_STACK LOW_LEVEL_SRAM_STACK
  222. #define CONFIG_SYS_SPL_MALLOC_START 0x8f000000
  223. #define CONFIG_SYS_SPL_MALLOC_SIZE 0x80000
  224. #define CONFIG_SPL_BSS_START_ADDR 0x8f080000 /* end of RAM */
  225. #define CONFIG_SPL_BSS_MAX_SIZE 0x80000
  226. /* NAND boot config */
  227. #define CONFIG_SYS_NAND_PAGE_COUNT 64
  228. #define CONFIG_SYS_NAND_PAGE_SIZE 2048
  229. #define CONFIG_SYS_NAND_OOBSIZE 64
  230. #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024)
  231. #define CONFIG_SYS_NAND_5_ADDR_CYCLE
  232. #define CONFIG_SYS_NAND_BAD_BLOCK_POS 0
  233. #define CONFIG_SYS_NAND_ECCPOS {40, 41, 42, 43, 44, 45, 46, 47,\
  234. 48, 49, 50, 51, 52, 53, 54, 55,\
  235. 56, 57, 58, 59, 60, 61, 62, 63}
  236. #define CONFIG_SYS_NAND_ECCSIZE 256
  237. #define CONFIG_SYS_NAND_ECCBYTES 3
  238. #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
  239. #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
  240. #define CONFIG_SYS_NAND_U_BOOT_SIZE 0x80000
  241. #define CONFIG_OF_LIBFDT
  242. #define CONFIG_FIT
  243. #define CONFIG_CMD_UBI
  244. #define CONFIG_CMD_UBIFS
  245. #define CONFIG_RBTREE
  246. #define CONFIG_LZO
  247. #define CONFIG_MTD_PARTITIONS
  248. #define CONFIG_MTD_DEVICE
  249. #define CONFIG_CMD_MTDPARTS
  250. /* Setup MTD for NAND on the SOM */
  251. #define MTDIDS_DEFAULT "nand0=omap2-nand.0"
  252. #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:512k(MLO)," \
  253. "1m(u-boot),256k(env1)," \
  254. "256k(env2),6m(kernel),-(rootfs)"
  255. #define CONFIG_TAM3517_SETTINGS \
  256. "netdev=eth0\0" \
  257. "nandargs=setenv bootargs root=${nandroot} " \
  258. "rootfstype=${nandrootfstype}\0" \
  259. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  260. "nfsroot=${serverip}:${rootpath}\0" \
  261. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  262. "addip_sta=setenv bootargs ${bootargs} " \
  263. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  264. ":${hostname}:${netdev}:off panic=1\0" \
  265. "addip_dyn=setenv bootargs ${bootargs} ip=dhcp\0" \
  266. "addip=if test -n ${ipdyn};then run addip_dyn;" \
  267. "else run addip_sta;fi\0" \
  268. "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
  269. "addtty=setenv bootargs ${bootargs}" \
  270. " console=ttyO0,${baudrate}\0" \
  271. "addmisc=setenv bootargs ${bootargs} ${misc}\0" \
  272. "loadaddr=82000000\0" \
  273. "kernel_addr_r=82000000\0" \
  274. "hostname=" __stringify(CONFIG_HOSTNAME) "\0" \
  275. "bootfile=" __stringify(CONFIG_HOSTNAME) "/uImage\0" \
  276. "flash_self=run ramargs addip addtty addmtd addmisc;" \
  277. "bootm ${kernel_addr} ${ramdisk_addr}\0" \
  278. "flash_nfs=run nfsargs addip addtty addmtd addmisc;" \
  279. "bootm ${kernel_addr}\0" \
  280. "nandboot=run nandargs addip addtty addmtd addmisc;" \
  281. "nand read ${kernel_addr_r} kernel\0" \
  282. "bootm ${kernel_addr_r}\0" \
  283. "net_nfs=tftp ${kernel_addr_r} ${bootfile}; " \
  284. "run nfsargs addip addtty addmtd addmisc;" \
  285. "bootm ${kernel_addr_r}\0" \
  286. "net_self=if run net_self_load;then " \
  287. "run ramargs addip addtty addmtd addmisc;" \
  288. "bootm ${kernel_addr_r} ${ramdisk_addr_r};" \
  289. "else echo Images not loades;fi\0" \
  290. "u-boot=" __stringify(CONFIG_HOSTNAME) "/u-boot.img\0" \
  291. "load=tftp ${loadaddr} ${u-boot}\0" \
  292. "loadmlo=tftp ${loadaddr} ${mlo}\0" \
  293. "mlo=" __stringify(CONFIG_HOSTNAME) "/MLO\0" \
  294. "uboot_addr=0x80000\0" \
  295. "update=nandecc sw;nand erase ${uboot_addr} 100000;" \
  296. "nand write ${loadaddr} ${uboot_addr} 80000\0" \
  297. "updatemlo=nandecc hw;nand erase 0 20000;" \
  298. "nand write ${loadaddr} 0 20000\0" \
  299. "upd=if run load;then echo Updating u-boot;if run update;" \
  300. "then echo U-Boot updated;" \
  301. "else echo Error updating u-boot !;" \
  302. "echo Board without bootloader !!;" \
  303. "fi;" \
  304. "else echo U-Boot not downloaded..exiting;fi\0" \
  305. /*
  306. * this is common code for all TAM3517 boards.
  307. * MAC address is stored from manufacturer in
  308. * I2C EEPROM
  309. */
  310. #if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
  311. /*
  312. * The I2C EEPROM on the TAM3517 contains
  313. * mac address and production data
  314. */
  315. struct tam3517_module_info {
  316. char customer[48];
  317. char product[48];
  318. /*
  319. * bit 0~47 : sequence number
  320. * bit 48~55 : week of year, from 0.
  321. * bit 56~63 : year
  322. */
  323. unsigned long long sequence_number;
  324. /*
  325. * bit 0~7 : revision fixed
  326. * bit 8~15 : revision major
  327. * bit 16~31 : TNxxx
  328. */
  329. unsigned int revision;
  330. unsigned char eth_addr[4][8];
  331. unsigned char _rev[100];
  332. };
  333. #define TAM3517_READ_MAC_FROM_EEPROM \
  334. do { \
  335. struct tam3517_module_info info;\
  336. char buf[80], ethname[20]; \
  337. int i; \
  338. i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); \
  339. if (eeprom_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0, \
  340. (void *)&info, sizeof(info))) \
  341. break; \
  342. memset(buf, 0, sizeof(buf)); \
  343. for (i = 0 ; i < ARRAY_SIZE(info.eth_addr); i++) { \
  344. sprintf(buf, "%02X:%02X:%02X:%02X:%02X:%02X", \
  345. info.eth_addr[i][5], \
  346. info.eth_addr[i][4], \
  347. info.eth_addr[i][3], \
  348. info.eth_addr[i][2], \
  349. info.eth_addr[i][1], \
  350. info.eth_addr[i][0]); \
  351. \
  352. if (i) \
  353. sprintf(ethname, "eth%daddr", i); \
  354. else \
  355. sprintf(ethname, "ethaddr"); \
  356. printf("Setting %s from EEPROM with %s\n", ethname, buf);\
  357. setenv(ethname, buf); \
  358. } \
  359. } while (0)
  360. #endif
  361. #endif /* __TAM3517_H */