tam3517-common.h 12 KB

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