tam3517-common.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  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. /* commands to include */
  93. #include <config_cmd_default.h>
  94. #define CONFIG_CMD_CACHE
  95. #define CONFIG_CMD_DHCP
  96. #define CONFIG_CMD_EXT2 /* EXT2 Support */
  97. #define CONFIG_CMD_FAT /* FAT support */
  98. #define CONFIG_CMD_GPIO
  99. #define CONFIG_CMD_I2C /* I2C serial bus support */
  100. #define CONFIG_CMD_MII
  101. #define CONFIG_CMD_MMC /* MMC support */
  102. #define CONFIG_CMD_NET
  103. #define CONFIG_CMD_NFS
  104. #define CONFIG_CMD_NAND /* NAND support */
  105. #define CONFIG_CMD_PING
  106. #define CONFIG_CMD_USB
  107. #define CONFIG_CMD_EEPROM
  108. #undef CONFIG_CMD_FLASH /* only NAND on the SOM */
  109. #undef CONFIG_CMD_IMLS
  110. #define CONFIG_SYS_NO_FLASH
  111. #define CONFIG_HARD_I2C
  112. #define CONFIG_SYS_I2C_SPEED 400000
  113. #define CONFIG_SYS_I2C_SLAVE 1
  114. #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* base address */
  115. #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 /* bytes of address */
  116. #define CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW 0x07
  117. #define CONFIG_DRIVER_OMAP34XX_I2C
  118. /*
  119. * Board NAND Info.
  120. */
  121. #define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */
  122. /* to access */
  123. /* nand at CS0 */
  124. #define CONFIG_SYS_MAX_NAND_DEVICE 1 /* Max number of */
  125. /* NAND devices */
  126. #define CONFIG_AUTO_COMPLETE
  127. /*
  128. * Miscellaneous configurable options
  129. */
  130. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  131. #define CONFIG_SYS_HUSH_PARSER /* use "hush" command parser */
  132. #define CONFIG_CMDLINE_EDITING
  133. #define CONFIG_AUTO_COMPLETE
  134. #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
  135. /* Print Buffer Size */
  136. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
  137. sizeof(CONFIG_SYS_PROMPT) + 16)
  138. #define CONFIG_SYS_MAXARGS 32 /* max number of command */
  139. /* args */
  140. /* Boot Argument Buffer Size */
  141. #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE)
  142. /* memtest works on */
  143. #define CONFIG_SYS_MEMTEST_START (OMAP34XX_SDRC_CS0)
  144. #define CONFIG_SYS_MEMTEST_END (OMAP34XX_SDRC_CS0 + \
  145. 0x01F00000) /* 31MB */
  146. #define CONFIG_SYS_LOAD_ADDR (OMAP34XX_SDRC_CS0) /* default load */
  147. /* address */
  148. /*
  149. * AM3517 has 12 GP timers, they can be driven by the system clock
  150. * (12/13/16.8/19.2/38.4MHz) or by 32KHz clock. We use 13MHz (V_SCLK).
  151. * This rate is divided by a local divisor.
  152. */
  153. #define CONFIG_SYS_TIMERBASE OMAP34XX_GPT2
  154. #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */
  155. #define CONFIG_SYS_HZ 1000
  156. /*
  157. * Physical Memory Map
  158. */
  159. #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */
  160. #define PHYS_SDRAM_1 OMAP34XX_SDRC_CS0
  161. #define PHYS_SDRAM_2 OMAP34XX_SDRC_CS1
  162. /*
  163. * FLASH and environment organization
  164. */
  165. /* **** PISMO SUPPORT *** */
  166. /* Configure the PISMO */
  167. #define PISMO1_NAND_SIZE GPMC_SIZE_128M
  168. #define CONFIG_NAND_OMAP_GPMC
  169. #define GPMC_NAND_ECC_LP_x16_LAYOUT
  170. #define CONFIG_ENV_IS_IN_NAND
  171. #define SMNAND_ENV_OFFSET 0x180000 /* environment starts here */
  172. /* Redundant Environment */
  173. #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */
  174. #define CONFIG_ENV_OFFSET SMNAND_ENV_OFFSET
  175. #define CONFIG_ENV_ADDR SMNAND_ENV_OFFSET
  176. #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + \
  177. 2 * CONFIG_SYS_ENV_SECT_SIZE)
  178. #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
  179. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  180. #define CONFIG_SYS_INIT_RAM_ADDR 0x4020f800
  181. #define CONFIG_SYS_INIT_RAM_SIZE 0x800
  182. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \
  183. CONFIG_SYS_INIT_RAM_SIZE - \
  184. GENERATED_GBL_DATA_SIZE)
  185. /*
  186. * ethernet support, EMAC
  187. *
  188. */
  189. #define CONFIG_DRIVER_TI_EMAC
  190. #define CONFIG_DRIVER_TI_EMAC_USE_RMII
  191. #define CONFIG_MII
  192. #define CONFIG_EMAC_MDIO_PHY_NUM 0
  193. #define CONFIG_BOOTP_DEFAULT
  194. #define CONFIG_BOOTP_DNS
  195. #define CONFIG_BOOTP_DNS2
  196. #define CONFIG_BOOTP_SEND_HOSTNAME
  197. #define CONFIG_NET_RETRY_COUNT 10
  198. /* Defines for SPL */
  199. #define CONFIG_SPL
  200. #define CONFIG_SPL_FRAMEWORK
  201. #define CONFIG_SPL_BOARD_INIT
  202. #define CONFIG_SPL_CONSOLE
  203. #define CONFIG_SPL_NAND_SIMPLE
  204. #define CONFIG_SPL_NAND_SOFTECC
  205. #define CONFIG_SPL_NAND_WORKSPACE 0x8f07f000 /* below BSS */
  206. #define CONFIG_SPL_LIBCOMMON_SUPPORT
  207. #define CONFIG_SPL_LIBDISK_SUPPORT
  208. #define CONFIG_SPL_I2C_SUPPORT
  209. #define CONFIG_SPL_LIBGENERIC_SUPPORT
  210. #define CONFIG_SPL_SERIAL_SUPPORT
  211. #define CONFIG_SPL_GPIO_SUPPORT
  212. #define CONFIG_SPL_POWER_SUPPORT
  213. #define CONFIG_SPL_NAND_SUPPORT
  214. #define CONFIG_SPL_NAND_BASE
  215. #define CONFIG_SPL_NAND_DRIVERS
  216. #define CONFIG_SPL_NAND_ECC
  217. #define CONFIG_SPL_LDSCRIPT "$(CPUDIR)/omap-common/u-boot-spl.lds"
  218. #define CONFIG_SPL_TEXT_BASE 0x40200000 /*CONFIG_SYS_SRAM_START*/
  219. #define CONFIG_SPL_MAX_SIZE (54 * 1024) /* 8 KB for stack */
  220. #define CONFIG_SPL_STACK LOW_LEVEL_SRAM_STACK
  221. #define CONFIG_SYS_SPL_MALLOC_START 0x8f000000
  222. #define CONFIG_SYS_SPL_MALLOC_SIZE 0x80000
  223. #define CONFIG_SPL_BSS_START_ADDR 0x8f080000 /* end of RAM */
  224. #define CONFIG_SPL_BSS_MAX_SIZE 0x80000
  225. /* NAND boot config */
  226. #define CONFIG_SYS_NAND_PAGE_COUNT 64
  227. #define CONFIG_SYS_NAND_PAGE_SIZE 2048
  228. #define CONFIG_SYS_NAND_OOBSIZE 64
  229. #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024)
  230. #define CONFIG_SYS_NAND_5_ADDR_CYCLE
  231. #define CONFIG_SYS_NAND_BAD_BLOCK_POS 0
  232. #define CONFIG_SYS_NAND_ECCPOS {40, 41, 42, 43, 44, 45, 46, 47,\
  233. 48, 49, 50, 51, 52, 53, 54, 55,\
  234. 56, 57, 58, 59, 60, 61, 62, 63}
  235. #define CONFIG_SYS_NAND_ECCSIZE 256
  236. #define CONFIG_SYS_NAND_ECCBYTES 3
  237. #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
  238. #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
  239. #define CONFIG_SYS_NAND_U_BOOT_SIZE 0x80000
  240. #define CONFIG_OF_LIBFDT
  241. #define CONFIG_FIT
  242. #define CONFIG_CMD_UBI
  243. #define CONFIG_CMD_UBIFS
  244. #define CONFIG_RBTREE
  245. #define CONFIG_LZO
  246. #define CONFIG_MTD_PARTITIONS
  247. #define CONFIG_MTD_DEVICE
  248. #define CONFIG_CMD_MTDPARTS
  249. /* Setup MTD for NAND on the SOM */
  250. #define MTDIDS_DEFAULT "nand0=omap2-nand.0"
  251. #define MTDPARTS_DEFAULT "mtdparts=omap2-nand.0:512k(MLO)," \
  252. "1m(u-boot),256k(env1)," \
  253. "256k(env2),6m(kernel),-(rootfs)"
  254. #define CONFIG_TAM3517_SETTINGS \
  255. "netdev=eth0\0" \
  256. "nandargs=setenv bootargs root=${nandroot} " \
  257. "rootfstype=${nandrootfstype}\0" \
  258. "nfsargs=setenv bootargs root=/dev/nfs rw " \
  259. "nfsroot=${serverip}:${rootpath}\0" \
  260. "ramargs=setenv bootargs root=/dev/ram rw\0" \
  261. "addip_sta=setenv bootargs ${bootargs} " \
  262. "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
  263. ":${hostname}:${netdev}:off panic=1\0" \
  264. "addip_dyn=setenv bootargs ${bootargs} ip=dhcp\0" \
  265. "addip=if test -n ${ipdyn};then run addip_dyn;" \
  266. "else run addip_sta;fi\0" \
  267. "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
  268. "addtty=setenv bootargs ${bootargs}" \
  269. " console=ttyO0,${baudrate}\0" \
  270. "addmisc=setenv bootargs ${bootargs} ${misc}\0" \
  271. "loadaddr=82000000\0" \
  272. "kernel_addr_r=82000000\0" \
  273. "hostname=" __stringify(CONFIG_HOSTNAME) "\0" \
  274. "bootfile=" __stringify(CONFIG_HOSTNAME) "/uImage\0" \
  275. "flash_self=run ramargs addip addtty addmtd addmisc;" \
  276. "bootm ${kernel_addr} ${ramdisk_addr}\0" \
  277. "flash_nfs=run nfsargs addip addtty addmtd addmisc;" \
  278. "bootm ${kernel_addr}\0" \
  279. "nandboot=run nandargs addip addtty addmtd addmisc;" \
  280. "nand read ${kernel_addr_r} kernel\0" \
  281. "bootm ${kernel_addr_r}\0" \
  282. "net_nfs=tftp ${kernel_addr_r} ${bootfile}; " \
  283. "run nfsargs addip addtty addmtd addmisc;" \
  284. "bootm ${kernel_addr_r}\0" \
  285. "net_self=if run net_self_load;then " \
  286. "run ramargs addip addtty addmtd addmisc;" \
  287. "bootm ${kernel_addr_r} ${ramdisk_addr_r};" \
  288. "else echo Images not loades;fi\0" \
  289. "u-boot=" __stringify(CONFIG_HOSTNAME) "/u-boot.img\0" \
  290. "load=tftp ${loadaddr} ${u-boot}\0" \
  291. "loadmlo=tftp ${loadaddr} ${mlo}\0" \
  292. "mlo=" __stringify(CONFIG_HOSTNAME) "/MLO\0" \
  293. "uboot_addr=0x80000\0" \
  294. "update=nandecc sw;nand erase ${uboot_addr} 100000;" \
  295. "nand write ${loadaddr} ${uboot_addr} 80000\0" \
  296. "updatemlo=nandecc hw;nand erase 0 20000;" \
  297. "nand write ${loadaddr} 0 20000\0" \
  298. "upd=if run load;then echo Updating u-boot;if run update;" \
  299. "then echo U-Boot updated;" \
  300. "else echo Error updating u-boot !;" \
  301. "echo Board without bootloader !!;" \
  302. "fi;" \
  303. "else echo U-Boot not downloaded..exiting;fi\0" \
  304. /*
  305. * this is common code for all TAM3517 boards.
  306. * MAC address is stored from manufacturer in
  307. * I2C EEPROM
  308. */
  309. #if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
  310. /*
  311. * The I2C EEPROM on the TAM3517 contains
  312. * mac address and production data
  313. */
  314. struct tam3517_module_info {
  315. char customer[48];
  316. char product[48];
  317. /*
  318. * bit 0~47 : sequence number
  319. * bit 48~55 : week of year, from 0.
  320. * bit 56~63 : year
  321. */
  322. unsigned long long sequence_number;
  323. /*
  324. * bit 0~7 : revision fixed
  325. * bit 8~15 : revision major
  326. * bit 16~31 : TNxxx
  327. */
  328. unsigned int revision;
  329. unsigned char eth_addr[4][8];
  330. unsigned char _rev[100];
  331. };
  332. #define TAM3517_READ_EEPROM(info, ret) \
  333. do { \
  334. i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); \
  335. if (eeprom_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0, \
  336. (void *)info, sizeof(*info))) \
  337. ret = 1; \
  338. else \
  339. ret = 0; \
  340. } while (0)
  341. #define TAM3517_READ_MAC_FROM_EEPROM(info) \
  342. do { \
  343. char buf[80], ethname[20]; \
  344. int i; \
  345. memset(buf, 0, sizeof(buf)); \
  346. for (i = 0 ; i < ARRAY_SIZE((info)->eth_addr); i++) { \
  347. sprintf(buf, "%02X:%02X:%02X:%02X:%02X:%02X", \
  348. (info)->eth_addr[i][5], \
  349. (info)->eth_addr[i][4], \
  350. (info)->eth_addr[i][3], \
  351. (info)->eth_addr[i][2], \
  352. (info)->eth_addr[i][1], \
  353. (info)->eth_addr[i][0]); \
  354. \
  355. if (i) \
  356. sprintf(ethname, "eth%daddr", i); \
  357. else \
  358. sprintf(ethname, "ethaddr"); \
  359. printf("Setting %s from EEPROM with %s\n", ethname, buf);\
  360. setenv(ethname, buf); \
  361. } \
  362. } while (0)
  363. /* The following macros are taken from Technexion's documentation */
  364. #define TAM3517_sequence_number(info) \
  365. ((info)->sequence_number % 0x1000000000000LL)
  366. #define TAM3517_week_of_year(info) (((info)->sequence_number >> 48) % 0x100)
  367. #define TAM3517_year(info) ((info)->sequence_number >> 56)
  368. #define TAM3517_revision_fixed(info) ((info)->revision % 0x100)
  369. #define TAM3517_revision_major(info) (((info)->revision >> 8) % 0x100)
  370. #define TAM3517_revision_tn(info) ((info)->revision >> 16)
  371. #define TAM3517_PRINT_SOM_INFO(info) \
  372. do { \
  373. printf("Vendor:%s\n", (info)->customer); \
  374. printf("SOM: %s\n", (info)->product); \
  375. printf("SeqNr: %02llu%02llu%012llu\n", \
  376. TAM3517_year(info), \
  377. TAM3517_week_of_year(info), \
  378. TAM3517_sequence_number(info)); \
  379. printf("Rev: TN%u %u.%u\n", \
  380. TAM3517_revision_tn(info), \
  381. TAM3517_revision_major(info), \
  382. TAM3517_revision_fixed(info)); \
  383. } while (0)
  384. #endif
  385. #endif /* __TAM3517_H */