Mathieu Othacehe | 9b832ad | 2023-12-29 12:02:18 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2023 Mathieu Othacehe <m.othacehe@gmail.com> |
| 4 | */ |
| 5 | |
| 6 | / { |
| 7 | binman: binman { |
| 8 | multiple-images; |
| 9 | }; |
| 10 | }; |
| 11 | |
Fabio Estevam | 8a1a819 | 2024-07-18 13:54:54 -0300 | [diff] [blame] | 12 | &A55_0 { |
| 13 | clocks = <&clk IMX93_CLK_ARM_PLL>; |
| 14 | }; |
| 15 | |
| 16 | &A55_1 { |
| 17 | clocks = <&clk IMX93_CLK_ARM_PLL>; |
| 18 | }; |
| 19 | |
Mathieu Othacehe | 9b832ad | 2023-12-29 12:02:18 +0100 | [diff] [blame] | 20 | &binman { |
| 21 | u-boot-spl-ddr { |
| 22 | align = <4>; |
| 23 | align-size = <4>; |
| 24 | filename = "u-boot-spl-ddr.bin"; |
| 25 | pad-byte = <0xff>; |
| 26 | |
| 27 | u-boot-spl { |
| 28 | align-end = <4>; |
| 29 | filename = "u-boot-spl.bin"; |
| 30 | }; |
| 31 | |
| 32 | ddr-1d-imem-fw { |
| 33 | filename = "lpddr4_imem_1d_v202201.bin"; |
| 34 | align-end = <4>; |
| 35 | type = "blob-ext"; |
| 36 | }; |
| 37 | |
| 38 | ddr-1d-dmem-fw { |
| 39 | filename = "lpddr4_dmem_1d_v202201.bin"; |
| 40 | align-end = <4>; |
| 41 | type = "blob-ext"; |
| 42 | }; |
| 43 | |
| 44 | ddr-2d-imem-fw { |
| 45 | filename = "lpddr4_imem_2d_v202201.bin"; |
| 46 | align-end = <4>; |
| 47 | type = "blob-ext"; |
| 48 | }; |
| 49 | |
| 50 | ddr-2d-dmem-fw { |
| 51 | filename = "lpddr4_dmem_2d_v202201.bin"; |
| 52 | align-end = <4>; |
| 53 | type = "blob-ext"; |
| 54 | }; |
| 55 | }; |
| 56 | |
| 57 | spl { |
| 58 | filename = "spl.bin"; |
| 59 | |
| 60 | mkimage { |
| 61 | args = "-n spl/u-boot-spl.cfgout -T imx8image -e 0x2049A000"; |
| 62 | |
| 63 | blob { |
| 64 | filename = "u-boot-spl-ddr.bin"; |
| 65 | }; |
| 66 | }; |
| 67 | }; |
| 68 | |
| 69 | u-boot-container { |
| 70 | filename = "u-boot-container.bin"; |
| 71 | |
| 72 | mkimage { |
| 73 | args = "-n u-boot-container.cfgout -T imx8image -e 0x0"; |
| 74 | |
| 75 | blob { |
| 76 | filename = "u-boot.bin"; |
| 77 | }; |
| 78 | }; |
| 79 | }; |
| 80 | |
| 81 | imx-boot { |
| 82 | filename = "flash.bin"; |
| 83 | pad-byte = <0x00>; |
| 84 | |
| 85 | spl: blob-ext@1 { |
| 86 | filename = "spl.bin"; |
| 87 | offset = <0x0>; |
| 88 | align-size = <0x400>; |
| 89 | align = <0x400>; |
| 90 | }; |
| 91 | |
| 92 | uboot: blob-ext@2 { |
| 93 | filename = "u-boot-container.bin"; |
| 94 | }; |
| 95 | }; |
| 96 | }; |
Peng Fan | d64ae66 | 2024-04-24 17:12:22 +0800 | [diff] [blame] | 97 | |
| 98 | &tmu { |
| 99 | compatible = "fsl,imx93-tmu"; |
| 100 | reg = <0x44482000 0x1000>; |
| 101 | clocks = <&clk IMX93_CLK_TMC_GATE>; |
| 102 | little-endian; |
| 103 | fsl,tmu-calibration = <0x0000000e 0x800000da |
| 104 | 0x00000029 0x800000e9 |
| 105 | 0x00000056 0x80000102 |
| 106 | 0x000000a2 0x8000012a |
| 107 | 0x00000116 0x80000166 |
| 108 | 0x00000195 0x800001a7 |
| 109 | 0x000001b2 0x800001b6>; |
| 110 | #thermal-sensor-cells = <1>; |
| 111 | }; |