mx6-ddr.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  1. /*
  2. * Copyright (C) 2013 Boundary Devices Inc.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __ASM_ARCH_MX6_DDR_H__
  7. #define __ASM_ARCH_MX6_DDR_H__
  8. #ifndef CONFIG_SPL_BUILD
  9. #ifdef CONFIG_MX6Q
  10. #include "mx6q-ddr.h"
  11. #else
  12. #if defined(CONFIG_MX6DL) || defined(CONFIG_MX6S)
  13. #include "mx6dl-ddr.h"
  14. #else
  15. #ifdef CONFIG_MX6SX
  16. #include "mx6sx-ddr.h"
  17. #else
  18. #ifdef CONFIG_MX6UL
  19. #include "mx6ul-ddr.h"
  20. #else
  21. #ifdef CONFIG_MX6SL
  22. #include "mx6sl-ddr.h"
  23. #else
  24. #error "Please select cpu"
  25. #endif /* CONFIG_MX6SL */
  26. #endif /* CONFIG_MX6UL */
  27. #endif /* CONFIG_MX6SX */
  28. #endif /* CONFIG_MX6DL or CONFIG_MX6S */
  29. #endif /* CONFIG_MX6Q */
  30. #else
  31. enum {
  32. DDR_TYPE_DDR3,
  33. DDR_TYPE_LPDDR2,
  34. };
  35. /* MMDC P0/P1 Registers */
  36. struct mmdc_p_regs {
  37. u32 mdctl;
  38. u32 mdpdc;
  39. u32 mdotc;
  40. u32 mdcfg0;
  41. u32 mdcfg1;
  42. u32 mdcfg2;
  43. u32 mdmisc;
  44. u32 mdscr;
  45. u32 mdref;
  46. u32 res1[2];
  47. u32 mdrwd;
  48. u32 mdor;
  49. u32 mdmrr;
  50. u32 mdcfg3lp;
  51. u32 mdmr4;
  52. u32 mdasp;
  53. u32 res2[239];
  54. u32 maarcr;
  55. u32 mapsr;
  56. u32 maexidr0;
  57. u32 maexidr1;
  58. u32 madpcr0;
  59. u32 madpcr1;
  60. u32 madpsr0;
  61. u32 madpsr1;
  62. u32 madpsr2;
  63. u32 madpsr3;
  64. u32 madpsr4;
  65. u32 madpsr5;
  66. u32 masbs0;
  67. u32 masbs1;
  68. u32 res3[2];
  69. u32 magenp;
  70. u32 res4[239];
  71. u32 mpzqhwctrl;
  72. u32 mpzqswctrl;
  73. u32 mpwlgcr;
  74. u32 mpwldectrl0;
  75. u32 mpwldectrl1;
  76. u32 mpwldlst;
  77. u32 mpodtctrl;
  78. u32 mprddqby0dl;
  79. u32 mprddqby1dl;
  80. u32 mprddqby2dl;
  81. u32 mprddqby3dl;
  82. u32 mpwrdqby0dl;
  83. u32 mpwrdqby1dl;
  84. u32 mpwrdqby2dl;
  85. u32 mpwrdqby3dl;
  86. u32 mpdgctrl0;
  87. u32 mpdgctrl1;
  88. u32 mpdgdlst0;
  89. u32 mprddlctl;
  90. u32 mprddlst;
  91. u32 mpwrdlctl;
  92. u32 mpwrdlst;
  93. u32 mpsdctrl;
  94. u32 mpzqlp2ctl;
  95. u32 mprddlhwctl;
  96. u32 mpwrdlhwctl;
  97. u32 mprddlhwst0;
  98. u32 mprddlhwst1;
  99. u32 mpwrdlhwst0;
  100. u32 mpwrdlhwst1;
  101. u32 mpwlhwerr;
  102. u32 mpdghwst0;
  103. u32 mpdghwst1;
  104. u32 mpdghwst2;
  105. u32 mpdghwst3;
  106. u32 mppdcmpr1;
  107. u32 mppdcmpr2;
  108. u32 mpswdar0;
  109. u32 mpswdrdr0;
  110. u32 mpswdrdr1;
  111. u32 mpswdrdr2;
  112. u32 mpswdrdr3;
  113. u32 mpswdrdr4;
  114. u32 mpswdrdr5;
  115. u32 mpswdrdr6;
  116. u32 mpswdrdr7;
  117. u32 mpmur0;
  118. u32 mpwrcadl;
  119. u32 mpdccr;
  120. };
  121. #define MX6SL_IOM_DDR_BASE 0x020e0300
  122. struct mx6sl_iomux_ddr_regs {
  123. u32 dram_cas;
  124. u32 dram_cs0_b;
  125. u32 dram_cs1_b;
  126. u32 dram_dqm0;
  127. u32 dram_dqm1;
  128. u32 dram_dqm2;
  129. u32 dram_dqm3;
  130. u32 dram_ras;
  131. u32 dram_reset;
  132. u32 dram_sdba0;
  133. u32 dram_sdba1;
  134. u32 dram_sdba2;
  135. u32 dram_sdcke0;
  136. u32 dram_sdcke1;
  137. u32 dram_sdclk_0;
  138. u32 dram_odt0;
  139. u32 dram_odt1;
  140. u32 dram_sdqs0;
  141. u32 dram_sdqs1;
  142. u32 dram_sdqs2;
  143. u32 dram_sdqs3;
  144. u32 dram_sdwe_b;
  145. };
  146. #define MX6SL_IOM_GRP_BASE 0x020e0500
  147. struct mx6sl_iomux_grp_regs {
  148. u32 res1[43];
  149. u32 grp_addds;
  150. u32 grp_ddrmode_ctl;
  151. u32 grp_ddrpke;
  152. u32 grp_ddrpk;
  153. u32 grp_ddrhys;
  154. u32 grp_ddrmode;
  155. u32 grp_b0ds;
  156. u32 grp_ctlds;
  157. u32 grp_b1ds;
  158. u32 grp_ddr_type;
  159. u32 grp_b2ds;
  160. u32 grp_b3ds;
  161. };
  162. #define MX6UL_IOM_DDR_BASE 0x020e0200
  163. struct mx6ul_iomux_ddr_regs {
  164. u32 res1[17];
  165. u32 dram_dqm0;
  166. u32 dram_dqm1;
  167. u32 dram_ras;
  168. u32 dram_cas;
  169. u32 dram_cs0;
  170. u32 dram_cs1;
  171. u32 dram_sdwe_b;
  172. u32 dram_odt0;
  173. u32 dram_odt1;
  174. u32 dram_sdba0;
  175. u32 dram_sdba1;
  176. u32 dram_sdba2;
  177. u32 dram_sdcke0;
  178. u32 dram_sdcke1;
  179. u32 dram_sdclk_0;
  180. u32 dram_sdqs0;
  181. u32 dram_sdqs1;
  182. u32 dram_reset;
  183. };
  184. #define MX6UL_IOM_GRP_BASE 0x020e0400
  185. struct mx6ul_iomux_grp_regs {
  186. u32 res1[36];
  187. u32 grp_addds;
  188. u32 grp_ddrmode_ctl;
  189. u32 grp_b0ds;
  190. u32 grp_ddrpk;
  191. u32 grp_ctlds;
  192. u32 grp_b1ds;
  193. u32 grp_ddrhys;
  194. u32 grp_ddrpke;
  195. u32 grp_ddrmode;
  196. u32 grp_ddr_type;
  197. };
  198. #define MX6SX_IOM_DDR_BASE 0x020e0200
  199. struct mx6sx_iomux_ddr_regs {
  200. u32 res1[59];
  201. u32 dram_dqm0;
  202. u32 dram_dqm1;
  203. u32 dram_dqm2;
  204. u32 dram_dqm3;
  205. u32 dram_ras;
  206. u32 dram_cas;
  207. u32 res2[2];
  208. u32 dram_sdwe_b;
  209. u32 dram_odt0;
  210. u32 dram_odt1;
  211. u32 dram_sdba0;
  212. u32 dram_sdba1;
  213. u32 dram_sdba2;
  214. u32 dram_sdcke0;
  215. u32 dram_sdcke1;
  216. u32 dram_sdclk_0;
  217. u32 dram_sdqs0;
  218. u32 dram_sdqs1;
  219. u32 dram_sdqs2;
  220. u32 dram_sdqs3;
  221. u32 dram_reset;
  222. };
  223. #define MX6SX_IOM_GRP_BASE 0x020e0500
  224. struct mx6sx_iomux_grp_regs {
  225. u32 res1[61];
  226. u32 grp_addds;
  227. u32 grp_ddrmode_ctl;
  228. u32 grp_ddrpke;
  229. u32 grp_ddrpk;
  230. u32 grp_ddrhys;
  231. u32 grp_ddrmode;
  232. u32 grp_b0ds;
  233. u32 grp_b1ds;
  234. u32 grp_ctlds;
  235. u32 grp_ddr_type;
  236. u32 grp_b2ds;
  237. u32 grp_b3ds;
  238. };
  239. /*
  240. * MMDC iomux registers (pinctl/padctl) - (different for IMX6DQ vs IMX6SDL)
  241. */
  242. #define MX6DQ_IOM_DDR_BASE 0x020e0500
  243. struct mx6dq_iomux_ddr_regs {
  244. u32 res1[3];
  245. u32 dram_sdqs5;
  246. u32 dram_dqm5;
  247. u32 dram_dqm4;
  248. u32 dram_sdqs4;
  249. u32 dram_sdqs3;
  250. u32 dram_dqm3;
  251. u32 dram_sdqs2;
  252. u32 dram_dqm2;
  253. u32 res2[16];
  254. u32 dram_cas;
  255. u32 res3[2];
  256. u32 dram_ras;
  257. u32 dram_reset;
  258. u32 res4[2];
  259. u32 dram_sdclk_0;
  260. u32 dram_sdba2;
  261. u32 dram_sdcke0;
  262. u32 dram_sdclk_1;
  263. u32 dram_sdcke1;
  264. u32 dram_sdodt0;
  265. u32 dram_sdodt1;
  266. u32 res5;
  267. u32 dram_sdqs0;
  268. u32 dram_dqm0;
  269. u32 dram_sdqs1;
  270. u32 dram_dqm1;
  271. u32 dram_sdqs6;
  272. u32 dram_dqm6;
  273. u32 dram_sdqs7;
  274. u32 dram_dqm7;
  275. };
  276. #define MX6DQ_IOM_GRP_BASE 0x020e0700
  277. struct mx6dq_iomux_grp_regs {
  278. u32 res1[18];
  279. u32 grp_b7ds;
  280. u32 grp_addds;
  281. u32 grp_ddrmode_ctl;
  282. u32 res2;
  283. u32 grp_ddrpke;
  284. u32 res3[6];
  285. u32 grp_ddrmode;
  286. u32 res4[3];
  287. u32 grp_b0ds;
  288. u32 grp_b1ds;
  289. u32 grp_ctlds;
  290. u32 res5;
  291. u32 grp_b2ds;
  292. u32 grp_ddr_type;
  293. u32 grp_b3ds;
  294. u32 grp_b4ds;
  295. u32 grp_b5ds;
  296. u32 grp_b6ds;
  297. };
  298. #define MX6SDL_IOM_DDR_BASE 0x020e0400
  299. struct mx6sdl_iomux_ddr_regs {
  300. u32 res1[25];
  301. u32 dram_cas;
  302. u32 res2[2];
  303. u32 dram_dqm0;
  304. u32 dram_dqm1;
  305. u32 dram_dqm2;
  306. u32 dram_dqm3;
  307. u32 dram_dqm4;
  308. u32 dram_dqm5;
  309. u32 dram_dqm6;
  310. u32 dram_dqm7;
  311. u32 dram_ras;
  312. u32 dram_reset;
  313. u32 res3[2];
  314. u32 dram_sdba2;
  315. u32 dram_sdcke0;
  316. u32 dram_sdcke1;
  317. u32 dram_sdclk_0;
  318. u32 dram_sdclk_1;
  319. u32 dram_sdodt0;
  320. u32 dram_sdodt1;
  321. u32 dram_sdqs0;
  322. u32 dram_sdqs1;
  323. u32 dram_sdqs2;
  324. u32 dram_sdqs3;
  325. u32 dram_sdqs4;
  326. u32 dram_sdqs5;
  327. u32 dram_sdqs6;
  328. u32 dram_sdqs7;
  329. };
  330. #define MX6SDL_IOM_GRP_BASE 0x020e0700
  331. struct mx6sdl_iomux_grp_regs {
  332. u32 res1[18];
  333. u32 grp_b7ds;
  334. u32 grp_addds;
  335. u32 grp_ddrmode_ctl;
  336. u32 grp_ddrpke;
  337. u32 res2[2];
  338. u32 grp_ddrmode;
  339. u32 grp_b0ds;
  340. u32 res3;
  341. u32 grp_ctlds;
  342. u32 grp_b1ds;
  343. u32 grp_ddr_type;
  344. u32 grp_b2ds;
  345. u32 grp_b3ds;
  346. u32 grp_b4ds;
  347. u32 grp_b5ds;
  348. u32 res4;
  349. u32 grp_b6ds;
  350. };
  351. /* Device Information: Varies per DDR3 part number and speed grade */
  352. struct mx6_ddr3_cfg {
  353. u16 mem_speed; /* ie 1600 for DDR3-1600 (800,1066,1333,1600) */
  354. u8 density; /* chip density (Gb) (1,2,4,8) */
  355. u8 width; /* bus width (bits) (4,8,16) */
  356. u8 banks; /* number of banks */
  357. u8 rowaddr; /* row address bits (11-16)*/
  358. u8 coladdr; /* col address bits (9-12) */
  359. u8 pagesz; /* page size (K) (1-2) */
  360. u16 trcd; /* tRCD=tRP=CL (ns*100) */
  361. u16 trcmin; /* tRC min (ns*100) */
  362. u16 trasmin; /* tRAS min (ns*100) */
  363. u8 SRT; /* self-refresh temperature: 0=normal, 1=extended */
  364. };
  365. /* Device Information: Varies per LPDDR2 part number and speed grade */
  366. struct mx6_lpddr2_cfg {
  367. u16 mem_speed; /* ie 800 for LPDDR2-800 */
  368. u8 density; /* chip density (Gb) (1,2,4,8) */
  369. u8 width; /* bus width (bits) (4,8,16) */
  370. u8 banks; /* number of banks */
  371. u8 rowaddr; /* row address bits (11-16)*/
  372. u8 coladdr; /* col address bits (9-12) */
  373. u16 trcd_lp;
  374. u16 trppb_lp;
  375. u16 trpab_lp;
  376. u16 trcmin; /* tRC min (ns*100) */
  377. u16 trasmin; /* tRAS min (ns*100) */
  378. };
  379. /* System Information: Varies per board design, layout, and term choices */
  380. struct mx6_ddr_sysinfo {
  381. u8 dsize; /* size of bus (in dwords: 0=16bit,1=32bit,2=64bit) */
  382. u8 cs_density; /* density per chip select (Gb) */
  383. u8 ncs; /* number chip selects used (1|2) */
  384. char cs1_mirror;/* enable address mirror (0|1) */
  385. char bi_on; /* Bank interleaving enable */
  386. u8 rtt_nom; /* Rtt_Nom (DDR3_RTT_*) */
  387. u8 rtt_wr; /* Rtt_Wr (DDR3_RTT_*) */
  388. u8 ralat; /* Read Additional Latency (0-7) */
  389. u8 walat; /* Write Additional Latency (0-3) */
  390. u8 mif3_mode; /* Command prediction working mode */
  391. u8 rst_to_cke; /* Time from SDE enable to CKE rise */
  392. u8 sde_to_rst; /* Time from SDE enable until DDR reset# is high */
  393. u8 pd_fast_exit;/* enable precharge powerdown fast-exit */
  394. u8 ddr_type; /* DDR type: DDR3(0) or LPDDR2(1) */
  395. u8 refsel; /* REF_SEL field of register MDREF */
  396. u8 refr; /* REFR field of register MDREF */
  397. };
  398. /*
  399. * Board specific calibration:
  400. * This includes write leveling calibration values as well as DQS gating
  401. * and read/write delays. These values are board/layout/device specific.
  402. * Freescale recommends using the i.MX6 DDR Stress Test Tool V1.0.2
  403. * (DOC-96412) to determine these values over a range of boards and
  404. * temperatures.
  405. */
  406. struct mx6_mmdc_calibration {
  407. /* write leveling calibration */
  408. u32 p0_mpwldectrl0;
  409. u32 p0_mpwldectrl1;
  410. u32 p1_mpwldectrl0;
  411. u32 p1_mpwldectrl1;
  412. /* read DQS gating */
  413. u32 p0_mpdgctrl0;
  414. u32 p0_mpdgctrl1;
  415. u32 p1_mpdgctrl0;
  416. u32 p1_mpdgctrl1;
  417. /* read delay */
  418. u32 p0_mprddlctl;
  419. u32 p1_mprddlctl;
  420. /* write delay */
  421. u32 p0_mpwrdlctl;
  422. u32 p1_mpwrdlctl;
  423. /* lpddr2 zq hw calibration */
  424. u32 mpzqlp2ctl;
  425. };
  426. /* configure iomux (pinctl/padctl) */
  427. void mx6dq_dram_iocfg(unsigned width,
  428. const struct mx6dq_iomux_ddr_regs *,
  429. const struct mx6dq_iomux_grp_regs *);
  430. void mx6sdl_dram_iocfg(unsigned width,
  431. const struct mx6sdl_iomux_ddr_regs *,
  432. const struct mx6sdl_iomux_grp_regs *);
  433. void mx6sx_dram_iocfg(unsigned width,
  434. const struct mx6sx_iomux_ddr_regs *,
  435. const struct mx6sx_iomux_grp_regs *);
  436. void mx6ul_dram_iocfg(unsigned width,
  437. const struct mx6ul_iomux_ddr_regs *,
  438. const struct mx6ul_iomux_grp_regs *);
  439. void mx6sl_dram_iocfg(unsigned width,
  440. const struct mx6sl_iomux_ddr_regs *,
  441. const struct mx6sl_iomux_grp_regs *);
  442. #if defined(CONFIG_MX6QDL) || defined(CONFIG_MX6Q) || defined(CONFIG_MX6D)
  443. int mmdc_do_write_level_calibration(struct mx6_ddr_sysinfo const *sysinfo);
  444. int mmdc_do_dqs_calibration(struct mx6_ddr_sysinfo const *sysinfo);
  445. #endif
  446. /* configure mx6 mmdc registers */
  447. void mx6_dram_cfg(const struct mx6_ddr_sysinfo *,
  448. const struct mx6_mmdc_calibration *,
  449. const void *);
  450. #endif /* CONFIG_SPL_BUILD */
  451. #define MX6_MMDC_P0_MDCTL 0x021b0000
  452. #define MX6_MMDC_P0_MDPDC 0x021b0004
  453. #define MX6_MMDC_P0_MDOTC 0x021b0008
  454. #define MX6_MMDC_P0_MDCFG0 0x021b000c
  455. #define MX6_MMDC_P0_MDCFG1 0x021b0010
  456. #define MX6_MMDC_P0_MDCFG2 0x021b0014
  457. #define MX6_MMDC_P0_MDMISC 0x021b0018
  458. #define MX6_MMDC_P0_MDSCR 0x021b001c
  459. #define MX6_MMDC_P0_MDREF 0x021b0020
  460. #define MX6_MMDC_P0_MDRWD 0x021b002c
  461. #define MX6_MMDC_P0_MDOR 0x021b0030
  462. #define MX6_MMDC_P0_MDASP 0x021b0040
  463. #define MX6_MMDC_P0_MAPSR 0x021b0404
  464. #define MX6_MMDC_P0_MPZQHWCTRL 0x021b0800
  465. #define MX6_MMDC_P0_MPWLDECTRL0 0x021b080c
  466. #define MX6_MMDC_P0_MPWLDECTRL1 0x021b0810
  467. #define MX6_MMDC_P0_MPODTCTRL 0x021b0818
  468. #define MX6_MMDC_P0_MPRDDQBY0DL 0x021b081c
  469. #define MX6_MMDC_P0_MPRDDQBY1DL 0x021b0820
  470. #define MX6_MMDC_P0_MPRDDQBY2DL 0x021b0824
  471. #define MX6_MMDC_P0_MPRDDQBY3DL 0x021b0828
  472. #define MX6_MMDC_P0_MPDGCTRL0 0x021b083c
  473. #define MX6_MMDC_P0_MPDGCTRL1 0x021b0840
  474. #define MX6_MMDC_P0_MPRDDLCTL 0x021b0848
  475. #define MX6_MMDC_P0_MPWRDLCTL 0x021b0850
  476. #define MX6_MMDC_P0_MPZQLP2CTL 0x021b085C
  477. #define MX6_MMDC_P0_MPMUR0 0x021b08b8
  478. #define MX6_MMDC_P1_MDCTL 0x021b4000
  479. #define MX6_MMDC_P1_MDPDC 0x021b4004
  480. #define MX6_MMDC_P1_MDOTC 0x021b4008
  481. #define MX6_MMDC_P1_MDCFG0 0x021b400c
  482. #define MX6_MMDC_P1_MDCFG1 0x021b4010
  483. #define MX6_MMDC_P1_MDCFG2 0x021b4014
  484. #define MX6_MMDC_P1_MDMISC 0x021b4018
  485. #define MX6_MMDC_P1_MDSCR 0x021b401c
  486. #define MX6_MMDC_P1_MDREF 0x021b4020
  487. #define MX6_MMDC_P1_MDRWD 0x021b402c
  488. #define MX6_MMDC_P1_MDOR 0x021b4030
  489. #define MX6_MMDC_P1_MDASP 0x021b4040
  490. #define MX6_MMDC_P1_MAPSR 0x021b4404
  491. #define MX6_MMDC_P1_MPZQHWCTRL 0x021b4800
  492. #define MX6_MMDC_P1_MPWLDECTRL0 0x021b480c
  493. #define MX6_MMDC_P1_MPWLDECTRL1 0x021b4810
  494. #define MX6_MMDC_P1_MPODTCTRL 0x021b4818
  495. #define MX6_MMDC_P1_MPRDDQBY0DL 0x021b481c
  496. #define MX6_MMDC_P1_MPRDDQBY1DL 0x021b4820
  497. #define MX6_MMDC_P1_MPRDDQBY2DL 0x021b4824
  498. #define MX6_MMDC_P1_MPRDDQBY3DL 0x021b4828
  499. #define MX6_MMDC_P1_MPDGCTRL0 0x021b483c
  500. #define MX6_MMDC_P1_MPDGCTRL1 0x021b4840
  501. #define MX6_MMDC_P1_MPRDDLCTL 0x021b4848
  502. #define MX6_MMDC_P1_MPWRDLCTL 0x021b4850
  503. #define MX6_MMDC_P1_MPZQLP2CTL 0x021b485C
  504. #define MX6_MMDC_P1_MPMUR0 0x021b48b8
  505. #endif /*__ASM_ARCH_MX6_DDR_H__ */