diff options
author | Tom Rini <trini@konsulko.com> | 2024-06-03 11:42:51 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-06-03 11:42:51 -0600 |
commit | 15d0dcc0ec1f424199dff2a3cbe037bc3a7d8749 (patch) | |
tree | ea6d50d38efd4170e269bba3c5c8ec12fa956431 /board/compulab/imx8mm-cl-iot-gate/ddr/ddr.c | |
parent | 38ba407ff4dd51af5f564a7fe5e14a2d9a472fe4 (diff) | |
parent | fb95661116fb4269883721afd80578e6d88ce043 (diff) |
Merge tag 'u-boot-imx-next-20240603' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx into next
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/20956
- Support different RAM sizes on imx8m phycoce boards.
- Support new toradex variants.
- Support Samsung 4GB DDR and Realtek RTL8211E PHY on imx8mm-cl-iot-gate.
- Convert imx8mm-phycore and imx8mp-phycore boards to use OF_UPSTREAM.
Diffstat (limited to 'board/compulab/imx8mm-cl-iot-gate/ddr/ddr.c')
-rw-r--r-- | board/compulab/imx8mm-cl-iot-gate/ddr/ddr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/board/compulab/imx8mm-cl-iot-gate/ddr/ddr.c b/board/compulab/imx8mm-cl-iot-gate/ddr/ddr.c index 99d3bf3af3b..6a3d816a48a 100644 --- a/board/compulab/imx8mm-cl-iot-gate/ddr/ddr.c +++ b/board/compulab/imx8mm-cl-iot-gate/ddr/ddr.c @@ -46,7 +46,9 @@ struct lpddr4_desc { static const struct lpddr4_desc lpddr4_array[] = { { .name = "Nanya", .id = 0x05000010, .subind = 0xff, .size = 2048, .count = 1, .timing = &ucm_dram_timing_01061010}, - { .name = "Samsung", .id = 0x01061010, .subind = 0xff, + { .name = "Samsung", .id = 0x01061010, .subind = 0x04, + .size = 4096, .count = 1, .timing = &ucm_dram_timing_ff000110}, + { .name = "Samsung", .id = 0x01061010, .subind = 0x02, .size = 2048, .count = 1, .timing = &ucm_dram_timing_01061010}, { .name = "Kingston", .id = 0xff000010, .subind = 0x04, .size = 4096, .count = 1, .timing = &ucm_dram_timing_ff000110}, |