Merge "dts: arm: ipq9574: Add BLSP3 I2C support"

This commit is contained in:
Linux Build Service Account 2021-08-31 08:07:31 -07:00 committed by Gerrit - the friendly Code Review server
commit 0528204539
5 changed files with 48 additions and 25 deletions

View file

@ -24,6 +24,7 @@
pci0 = "/pci@28000000";
pci1 = "/pci@10000000";
nand = "/nand-controller@79B0000";
i2c0 = "/i2c@78B8000";
};
console: serial@78B1000 {

View file

@ -24,7 +24,7 @@
pci0 = "/pci@20000000";
pci1 = "/pci@18000000";
nand = "/nand-controller@79B0000";
i2c0 = "/i2c@78BA000";
i2c0 = "/i2c@78B8000";
};
console: serial@78B1000 {
@ -126,26 +126,6 @@
};
};
i2c0: i2c@78BA000 {
i2c_gpio {
gpio1 {
gpio = <48>;
func = <1>;
pull = <GPIO_PULL_UP>;
drvstr = <GPIO_8MA>;
oe = <GPIO_OE_ENABLE>;
};
gpio2 {
gpio = <49>;
func = <1>;
pull = <GPIO_PULL_UP>;
drvstr = <GPIO_8MA>;
oe = <GPIO_OE_ENABLE>;
};
};
};
pci0: pci@20000000 {
status = "ok";
perst_gpio = <29>;

View file

@ -24,7 +24,7 @@
pci0 = "/pci@20000000";
pci1 = "/pci@18000000";
nand = "/nand-controller@79B0000";
i2c0 = "/i2c@78BA000";
i2c0 = "/i2c@78B8000";
};
console: serial@78B1000 {

View file

@ -26,7 +26,7 @@
pci3 = "/pci@10000000";
usb0 = "/xhci@8a00000";
nand = "/nand-controller@79B0000";
i2c0 = "/i2c@78BA000";
i2c0 = "/i2c@78B8000";
};
console: serial@78B1000 {

View file

@ -93,12 +93,54 @@
};
};
i2c0: i2c@78BA000 {
i2c@78BA000 {
compatible = "qcom,qup-i2c";
#address-cells = <1>;
#size-cells = <0>;
reg = <0x78BA000 0x600>;
clock-frequency = <400000>;
clock-frequency = <400000>;
i2c_gpio {
gpio1 {
gpio = <48>;
func = <1>;
pull = <GPIO_PULL_UP>;
drvstr = <GPIO_8MA>;
oe = <GPIO_OE_ENABLE>;
};
gpio2 {
gpio = <49>;
func = <1>;
pull = <GPIO_PULL_UP>;
drvstr = <GPIO_8MA>;
oe = <GPIO_OE_ENABLE>;
};
};
};
i2c@78B8000 {
compatible = "qcom,qup-i2c";
#address-cells = <1>;
#size-cells = <0>;
reg = <0x78B8000 0x600>;
clock-frequency = <400000>;
i2c_gpio {
gpio1 {
gpio = <15>;
func = <2>;
pull = <GPIO_PULL_UP>;
drvstr = <GPIO_8MA>;
oe = <GPIO_OE_ENABLE>;
};
gpio2 {
gpio = <16>;
func = <2>;
pull = <GPIO_PULL_UP>;
drvstr = <GPIO_8MA>;
oe = <GPIO_OE_ENABLE>;
};
};
};
nand: nand-controller@79B0000 {