mirror of
https://github.com/torvalds/linux.git
synced 2026-07-29 10:41:49 +02:00
Microchip RISC-V devicetrees for v7.2
This time around, there's nothing other than patches for Microchip boards. All of this is low priority fixes and cleanup, centred on the pic64gx and beaglev-fire boards. There is no new support added. Signed-off-by: Conor Dooley <conor.dooley@microchip.com> -----BEGIN PGP SIGNATURE----- iHUEABYKAB0WIQRh246EGq/8RLhDjO14tDGHoIJi0gUCaiaVfAAKCRB4tDGHoIJi 0ukrAP9WOUMFZsIkVJvjMgrPoC+0km/Uy8WDj4efBgxW8Z7xvwD8D2uG9Revojwm 8PRjydw22KWI2DIxzxP3Gei7HMZLwQE= =1br7 -----END PGP SIGNATURE----- gpgsig -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEo6/YBQwIrVS28WGKmmx57+YAGNkFAmooO9MACgkQmmx57+YA GNluoA/+IAZnT8Aa1dRag6H67qgERTFzyeU3uE48Vv/MHrhAuuRc8G22z4/i33Er 0z5mrb7PwGmC3OfrAkr3ATQDY9reYjADRe5jq3xA9Ip3e43uphBDcHN3qpDREDdX DaYOaWSwOkK80lWQ1nRE8OlztEIqqb2TamPZ7HYpuyMho8OHm0QZHQOMsSMzxlhX vYay2jSB/KwjcJWJdWANeyRarxnNY/g/V5lQT5YM4nt9vJ6W6/bRrR8O0wsHiGn8 daJ1ZljOKxEfhfQ12gbuzBKesz0aZ06aWPtuvsN/6HlkFWUwfxcsrJvbRR5zLKAZ QeKBnyWeN3xZe9ZiZN4rMgU6IxCChQbYsWB3yLei/NUTcB4YsM2NZXt7c3JBPIIj fqt7Pj9BCrSnvSFMS2bA43M7sNTfIA1DyNEgTo+Gp3D/4HFTz69vOBwSERS5PlfK JBXiw4/uVskQxbNwc9IhpEGo0Aa1Y+Vf9I+XbqFqvbGqNpaaw9LeFCCLjqHHRnjW l8YFxj7FO4u7BDt8LZ2NIUrQu0NTJHYSWNZe+ps4TpwkRrFMD/xODRP0QkFxd3Gy wLDAHN6MPBRLo3/zusoXHRe0xZK4f4C8SFXjVBB8K5pCYgZLgbxg/IprDgTLvU10 vLVjiDlkBlLa/AnT1QAGoAsmuE2kWy/NR6GPx4SVn1yc/vdUxxs= =syLy -----END PGP SIGNATURE----- Merge tag 'riscv-dt-for-v7.2' of https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux into soc/dt Microchip RISC-V devicetrees for v7.2 This time around, there's nothing other than patches for Microchip boards. All of this is low priority fixes and cleanup, centred on the pic64gx and beaglev-fire boards. There is no new support added. Signed-off-by: Conor Dooley <conor.dooley@microchip.com> * tag 'riscv-dt-for-v7.2' of https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux: riscv: dts: microchip: remove redudant enabling of syscontroller riscv: dts: microchip: fix pic64gx gpio interrupt-cells riscv: dts: microchip: add gpio line names on beaglev-fire riscv: dts: microchip: add adc interrupt on beaglev-fire riscv: dts: microchip: clean up beaglev-fire regulator node names riscv: dts: microchip: remove gpio hogs from beaglev-fire riscv: dts: microchip: gpio controllers on mpfs need 2 interrupt cells riscv: dts: microchip: sort pic64gx i2c nodes alphanumerically riscv: dts: microchip: update pic64gx gpio interrupts to better match the SoC riscv: dts: microchip: add tsu clock to macb on pic64gx Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
commit
1012d4d9f7
|
|
@ -4,6 +4,7 @@
|
|||
/dts-v1/;
|
||||
|
||||
#include <dt-bindings/gpio/gpio.h>
|
||||
#include <dt-bindings/interrupt-controller/irq.h>
|
||||
#include "mpfs.dtsi"
|
||||
#include "mpfs-beaglev-fire-fabric.dtsi"
|
||||
|
||||
|
|
@ -63,20 +64,29 @@ imx219_vana: fixedregulator-0 {
|
|||
regulator-max-microvolt = <2800000>;
|
||||
};
|
||||
|
||||
imx219_vdig: fixedregulator-1 {
|
||||
imx219_vdig: regulator-1v8 {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-name = "imx219_vdig";
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <1800000>;
|
||||
};
|
||||
|
||||
imx219_vddl: fixedregulator-2 {
|
||||
imx219_vddl: regulator-1v2 {
|
||||
compatible = "regulator-fixed";
|
||||
regulator-name = "imx219_vddl";
|
||||
regulator-min-microvolt = <1200000>;
|
||||
regulator-max-microvolt = <1200000>;
|
||||
};
|
||||
|
||||
regulator-1v8-syzygy {
|
||||
compatible = "regulator-fixed";
|
||||
gpios = <&gpio2 30 GPIO_ACTIVE_HIGH>;
|
||||
regulator-name = "syzygy_1v8";
|
||||
regulator-min-microvolt = <1800000>;
|
||||
regulator-max-microvolt = <1800000>;
|
||||
regulator-always-on;
|
||||
enable-active-high;
|
||||
};
|
||||
};
|
||||
|
||||
&gpio0 {
|
||||
|
|
@ -85,6 +95,8 @@ &gpio0 {
|
|||
<21>, <22>, <23>, <24>,
|
||||
<25>, <26>;
|
||||
ngpios = <14>;
|
||||
gpio-line-names = "", "", "", "", "", "", "",
|
||||
"", "", "", "", "", "SD_CARD_CS", "USER_BUTTON";
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
|
|
@ -96,6 +108,9 @@ &gpio1 {
|
|||
<43>, <44>, <45>, <46>,
|
||||
<47>, <48>, <49>, <50>;
|
||||
ngpios = <24>;
|
||||
gpio-line-names = "", "", "", "", "", "", "", "", "", "",
|
||||
"", "", "", "", "", "", "", "", "", "",
|
||||
"ADC_IRQn", "", "", "USB_OCn";
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
|
|
@ -118,20 +133,6 @@ &gpio2 {
|
|||
"P8_PIN27", "P8_PIN28", "P8_PIN29", "P8_PIN30", "M2_W_DISABLE1",
|
||||
"M2_W_DISABLE2", "VIO_ENABLE", "SD_DET";
|
||||
status = "okay";
|
||||
|
||||
vio-enable-hog {
|
||||
gpio-hog;
|
||||
gpios = <30 30>;
|
||||
output-high;
|
||||
line-name = "VIO_ENABLE";
|
||||
};
|
||||
|
||||
sd-det-hog {
|
||||
gpio-hog;
|
||||
gpios = <31 31>;
|
||||
input;
|
||||
line-name = "SD_DET";
|
||||
};
|
||||
};
|
||||
|
||||
&i2c0 {
|
||||
|
|
@ -260,6 +261,7 @@ adc@0 {
|
|||
spi-cpha;
|
||||
spi-max-frequency = <5000000>;
|
||||
microchip,hw-device-address = <1>;
|
||||
interrupts-extended = <&gpio1 20 IRQ_TYPE_LEVEL_LOW>;
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
status = "okay";
|
||||
|
|
@ -316,7 +318,7 @@ channel@7 {
|
|||
mmc@1 {
|
||||
compatible = "mmc-spi-slot";
|
||||
reg = <1>;
|
||||
gpios = <&gpio2 31 1>;
|
||||
cd-gpios = <&gpio2 31 GPIO_ACTIVE_LOW>;
|
||||
voltage-ranges = <3300 3300>;
|
||||
spi-max-frequency = <5000000>;
|
||||
disable-wp;
|
||||
|
|
@ -326,7 +328,6 @@ mmc@1 {
|
|||
|
||||
&syscontroller {
|
||||
microchip,bitstream-flash = <&sys_ctrl_flash>;
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&syscontroller_qspi {
|
||||
|
|
|
|||
|
|
@ -199,7 +199,3 @@ &spi0 {
|
|||
&spi1 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&syscontroller {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -238,10 +238,6 @@ &spi1 {
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
&syscontroller {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&syscontroller_qspi {
|
||||
/*
|
||||
* The flash *is* there, but Icicle kits that have engineering sample
|
||||
|
|
|
|||
|
|
@ -179,10 +179,6 @@ &spi1 {
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
&syscontroller {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&usb {
|
||||
status = "okay";
|
||||
dr_mode = "host";
|
||||
|
|
|
|||
|
|
@ -112,7 +112,3 @@ &refclk {
|
|||
&rtc {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&syscontroller {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -149,10 +149,6 @@ &rtc {
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
&syscontroller {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&usb {
|
||||
status = "okay";
|
||||
dr_mode = "otg";
|
||||
|
|
|
|||
|
|
@ -171,10 +171,6 @@ flash@0 {
|
|||
};
|
||||
};
|
||||
|
||||
&syscontroller {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&usb {
|
||||
status = "okay";
|
||||
dr_mode = "host";
|
||||
|
|
|
|||
|
|
@ -499,7 +499,7 @@ gpio0: gpio@20120000 {
|
|||
reg = <0x0 0x20120000 0x0 0x1000>;
|
||||
interrupt-parent = <&irqmux>;
|
||||
interrupt-controller;
|
||||
#interrupt-cells = <1>;
|
||||
#interrupt-cells = <2>;
|
||||
interrupts = <0>, <1>, <2>, <3>,
|
||||
<4>, <5>, <6>, <7>,
|
||||
<8>, <9>, <10>, <11>,
|
||||
|
|
@ -516,7 +516,7 @@ gpio1: gpio@20121000 {
|
|||
reg = <0x0 0x20121000 0x0 0x1000>;
|
||||
interrupt-parent = <&irqmux>;
|
||||
interrupt-controller;
|
||||
#interrupt-cells = <1>;
|
||||
#interrupt-cells = <2>;
|
||||
interrupts = <32>, <33>, <34>, <35>,
|
||||
<36>, <37>, <38>, <39>,
|
||||
<40>, <41>, <42>, <43>,
|
||||
|
|
@ -535,7 +535,7 @@ gpio2: gpio@20122000 {
|
|||
reg = <0x0 0x20122000 0x0 0x1000>;
|
||||
interrupt-parent = <&irqmux>;
|
||||
interrupt-controller;
|
||||
#interrupt-cells = <1>;
|
||||
#interrupt-cells = <2>;
|
||||
interrupts = <64>, <65>, <66>, <67>,
|
||||
<68>, <69>, <70>, <71>,
|
||||
<72>, <73>, <74>, <75>,
|
||||
|
|
|
|||
|
|
@ -63,10 +63,6 @@ hss: hss-buffer@bfc00000 {
|
|||
};
|
||||
|
||||
&gpio0 {
|
||||
interrupts = <13>, <14>, <15>, <16>,
|
||||
<17>, <18>, <19>, <20>,
|
||||
<21>, <22>, <23>, <24>,
|
||||
<25>, <26>;
|
||||
status ="okay";
|
||||
gpio-line-names =
|
||||
"", "", "", "", "", "", "", "",
|
||||
|
|
@ -74,12 +70,6 @@ &gpio0 {
|
|||
};
|
||||
|
||||
&gpio1 {
|
||||
interrupts = <27>, <28>, <29>, <30>,
|
||||
<31>, <32>, <33>, <34>,
|
||||
<35>, <36>, <37>, <38>,
|
||||
<39>, <40>, <41>, <42>,
|
||||
<43>, <44>, <45>, <46>,
|
||||
<47>, <48>, <49>, <50>;
|
||||
status ="okay";
|
||||
gpio-line-names =
|
||||
"", "", "LED1", "LED2", "LED3", "LED4", "LED5", "LED6",
|
||||
|
|
@ -88,14 +78,6 @@ &gpio1 {
|
|||
};
|
||||
|
||||
&gpio2 {
|
||||
interrupts = <53>, <53>, <53>, <53>,
|
||||
<53>, <53>, <53>, <53>,
|
||||
<53>, <53>, <53>, <53>,
|
||||
<53>, <53>, <53>, <53>,
|
||||
<53>, <53>, <53>, <53>,
|
||||
<53>, <53>, <53>, <53>,
|
||||
<53>, <53>, <53>, <53>,
|
||||
<53>, <53>, <53>, <53>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&mdio1_gpio>, <&spi0_gpio>, <&can0_gpio>, <&pcie_gpio>,
|
||||
<&qspi_gpio>, <&uart3_gpio>, <&uart4_gpio>, <&can1_gpio>;
|
||||
|
|
@ -107,6 +89,43 @@ &gpio2 {
|
|||
"DIP4", "USR_IO11", "", "", "SWITCH1", "", "", "";
|
||||
};
|
||||
|
||||
&i2c0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&i2c1 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&irqmux {
|
||||
interrupt-map = <0 &plic 13>, <1 &plic 14>, <2 &plic 15>,
|
||||
<3 &plic 16>, <4 &plic 17>, <5 &plic 18>,
|
||||
<6 &plic 19>, <7 &plic 20>, <8 &plic 21>,
|
||||
<9 &plic 22>, <10 &plic 23>, <11 &plic 24>,
|
||||
<12 &plic 25>, <13 &plic 26>,
|
||||
|
||||
<32 &plic 27>, <33 &plic 28>, <34 &plic 29>,
|
||||
<35 &plic 30>, <36 &plic 31>, <37 &plic 32>,
|
||||
<38 &plic 33>, <39 &plic 34>, <40 &plic 35>,
|
||||
<41 &plic 36>, <42 &plic 37>, <43 &plic 38>,
|
||||
<44 &plic 39>, <45 &plic 40>, <46 &plic 41>,
|
||||
<47 &plic 42>, <48 &plic 43>, <49 &plic 44>,
|
||||
<50 &plic 45>, <51 &plic 46>, <52 &plic 47>,
|
||||
<53 &plic 48>, <54 &plic 49>, <55 &plic 50>,
|
||||
|
||||
<64 &plic 53>, <65 &plic 53>, <66 &plic 53>,
|
||||
<67 &plic 53>, <68 &plic 53>, <69 &plic 53>,
|
||||
<70 &plic 53>, <71 &plic 53>, <72 &plic 53>,
|
||||
<73 &plic 53>, <74 &plic 53>, <75 &plic 53>,
|
||||
<76 &plic 53>, <77 &plic 53>, <78 &plic 53>,
|
||||
<79 &plic 53>, <80 &plic 53>, <81 &plic 53>,
|
||||
<82 &plic 53>, <83 &plic 53>, <84 &plic 53>,
|
||||
<85 &plic 53>, <86 &plic 53>, <87 &plic 53>,
|
||||
<88 &plic 53>, <89 &plic 53>, <90 &plic 53>,
|
||||
<91 &plic 53>, <92 &plic 53>, <93 &plic 53>,
|
||||
<94 &plic 53>, <95 &plic 53>;
|
||||
};
|
||||
|
||||
&mac0 {
|
||||
status = "okay";
|
||||
phy-mode = "sgmii";
|
||||
|
|
@ -123,14 +142,6 @@ &mbox {
|
|||
status = "okay";
|
||||
};
|
||||
|
||||
&i2c0 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&i2c1 {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&mmc {
|
||||
bus-width = <4>;
|
||||
disable-wp;
|
||||
|
|
@ -159,7 +170,3 @@ &refclk {
|
|||
&rtc {
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
&syscontroller {
|
||||
status = "okay";
|
||||
};
|
||||
|
|
|
|||
|
|
@ -295,6 +295,14 @@ mss_top_sysreg: syscon@20002000 {
|
|||
#size-cells = <1>;
|
||||
#reset-cells = <1>;
|
||||
|
||||
irqmux: interrupt-controller@54 {
|
||||
compatible = "microchip,pic64gx-irqmux", "microchip,mpfs-irqmux";
|
||||
reg = <0x54 0x4>;
|
||||
#address-cells = <0>;
|
||||
#interrupt-cells = <1>;
|
||||
interrupt-map-mask = <0x7f>;
|
||||
};
|
||||
|
||||
iomux0: pinctrl@200 {
|
||||
compatible = "microchip,pic64gx-pinctrl-iomux0",
|
||||
"microchip,mpfs-pinctrl-iomux0";
|
||||
|
|
@ -459,8 +467,8 @@ mac0: ethernet@20110000 {
|
|||
interrupts = <64>, <65>, <66>, <67>, <68>, <69>;
|
||||
/* Filled in by a bootloader */
|
||||
local-mac-address = [00 00 00 00 00 00];
|
||||
clocks = <&clkcfg CLK_MAC0>, <&clkcfg CLK_AHB>;
|
||||
clock-names = "pclk", "hclk";
|
||||
clocks = <&clkcfg CLK_MAC0>, <&clkcfg CLK_AHB>, <&refclk>;
|
||||
clock-names = "pclk", "hclk", "tsu_clk";
|
||||
resets = <&mss_top_sysreg CLK_MAC0>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
|
@ -475,8 +483,8 @@ mac1: ethernet@20112000 {
|
|||
interrupts = <70>, <71>, <72>, <73>, <74>, <75>;
|
||||
/* Filled in by a bootloader */
|
||||
local-mac-address = [00 00 00 00 00 00];
|
||||
clocks = <&clkcfg CLK_MAC1>, <&clkcfg CLK_AHB>;
|
||||
clock-names = "pclk", "hclk";
|
||||
clocks = <&clkcfg CLK_MAC0>, <&clkcfg CLK_AHB>, <&refclk>;
|
||||
clock-names = "pclk", "hclk", "tsu_clk";
|
||||
resets = <&mss_top_sysreg CLK_MAC1>;
|
||||
status = "disabled";
|
||||
};
|
||||
|
|
@ -484,9 +492,13 @@ mac1: ethernet@20112000 {
|
|||
gpio0: gpio@20120000 {
|
||||
compatible = "microchip,pic64gx-gpio", "microchip,mpfs-gpio";
|
||||
reg = <0x0 0x20120000 0x0 0x1000>;
|
||||
interrupt-parent = <&plic>;
|
||||
interrupt-parent = <&irqmux>;
|
||||
interrupt-controller;
|
||||
#interrupt-cells = <1>;
|
||||
#interrupt-cells = <2>;
|
||||
interrupts = <0>, <1>, <2>, <3>,
|
||||
<4>, <5>, <6>, <7>,
|
||||
<8>, <9>, <10>, <11>,
|
||||
<12>, <13>;
|
||||
clocks = <&clkcfg CLK_GPIO0>;
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
|
|
@ -497,9 +509,15 @@ gpio0: gpio@20120000 {
|
|||
gpio1: gpio@20121000 {
|
||||
compatible = "microchip,pic64gx-gpio", "microchip,mpfs-gpio";
|
||||
reg = <0x0 0x20121000 0x0 0x1000>;
|
||||
interrupt-parent = <&plic>;
|
||||
interrupt-parent = <&irqmux>;
|
||||
interrupt-controller;
|
||||
#interrupt-cells = <1>;
|
||||
#interrupt-cells = <2>;
|
||||
interrupts = <32>, <33>, <34>, <35>,
|
||||
<36>, <37>, <38>, <39>,
|
||||
<40>, <41>, <42>, <43>,
|
||||
<44>, <45>, <46>, <47>,
|
||||
<48>, <49>, <50>, <51>,
|
||||
<52>, <53>, <54>, <55>;
|
||||
clocks = <&clkcfg CLK_GPIO1>;
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
|
|
@ -510,9 +528,17 @@ gpio1: gpio@20121000 {
|
|||
gpio2: gpio@20122000 {
|
||||
compatible = "microchip,pic64gx-gpio", "microchip,mpfs-gpio";
|
||||
reg = <0x0 0x20122000 0x0 0x1000>;
|
||||
interrupt-parent = <&plic>;
|
||||
interrupt-parent = <&irqmux>;
|
||||
interrupt-controller;
|
||||
#interrupt-cells = <1>;
|
||||
#interrupt-cells = <2>;
|
||||
interrupts = <64>, <65>, <66>, <67>,
|
||||
<68>, <69>, <70>, <71>,
|
||||
<72>, <73>, <74>, <75>,
|
||||
<76>, <77>, <78>, <79>,
|
||||
<80>, <81>, <82>, <83>,
|
||||
<84>, <85>, <86>, <87>,
|
||||
<88>, <89>, <90>, <91>,
|
||||
<92>, <93>, <94>, <95>;
|
||||
clocks = <&clkcfg CLK_GPIO2>;
|
||||
gpio-controller;
|
||||
#gpio-cells = <2>;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user