tools/litex_json2dts: Fix DTS indentation

Make indentation of the generated DTS more consistent, by always using 8
spaces (no TABs), and aligning continued lines.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
This commit is contained in:
Geert Uytterhoeven 2020-12-04 15:40:16 +01:00
parent 8265d06728
commit a17b535906
1 changed files with 7 additions and 7 deletions

View File

@ -184,8 +184,8 @@ def generate_dts(d):
mac0: mac@{ethmac_csr_base:x} {{ mac0: mac@{ethmac_csr_base:x} {{
compatible = "litex,liteeth"; compatible = "litex,liteeth";
reg = <0x{ethmac_csr_base:x} 0x7c reg = <0x{ethmac_csr_base:x} 0x7c
0x{ethphy_csr_base:x} 0x0a 0x{ethphy_csr_base:x} 0x0a
0x{ethmac_mem_base:x} 0x2000>; 0x{ethmac_mem_base:x} 0x2000>;
tx-fifo-depth = <{ethmac_tx_slots}>; tx-fifo-depth = <{ethmac_tx_slots}>;
rx-fifo-depth = <{ethmac_rx_slots}>; rx-fifo-depth = <{ethmac_rx_slots}>;
}}; }};
@ -273,8 +273,8 @@ def generate_dts(d):
dts += """ dts += """
litespiflash: spiflash@{spiflash_csr_base:x} {{ litespiflash: spiflash@{spiflash_csr_base:x} {{
#address-cells = <1>; #address-cells = <1>;
#size-cells = <1>; #size-cells = <1>;
compatible = "litex,spiflash"; compatible = "litex,spiflash";
reg = <0x{spiflash_csr_base:x} 0x100>; reg = <0x{spiflash_csr_base:x} 0x100>;
flash: flash@0 {{ flash: flash@0 {{
@ -306,10 +306,10 @@ def generate_dts(d):
mmc-slot@0 {{ mmc-slot@0 {{
compatible = "mmc-spi-slot"; compatible = "mmc-spi-slot";
reg = <0>; reg = <0>;
voltage-ranges = <3300 3300>; voltage-ranges = <3300 3300>;
spi-max-frequency = <1500000>; spi-max-frequency = <1500000>;
status = "okay"; status = "okay";
}}; }};
}}; }};
""".format(spisdcard_csr_base=d["csr_bases"]["spisdcard"]) """.format(spisdcard_csr_base=d["csr_bases"]["spisdcard"])
@ -408,7 +408,7 @@ def generate_dts(d):
return """ return """
CLKOUT{clkout_nr}: CLKOUT{clkout_nr} {{ CLKOUT{clkout_nr}: CLKOUT{clkout_nr} {{
compatible = "litex,clk"; compatible = "litex,clk";
#clock-cells = <0>; #clock-cells = <0>;
clock-output-names = "CLKOUT{clkout_nr}"; clock-output-names = "CLKOUT{clkout_nr}";
reg = <{clkout_nr}>; reg = <{clkout_nr}>;
litex,clock-frequency = <{clk_f}>; litex,clock-frequency = <{clk_f}>;