aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/oxnas/patches-4.14/340-oxnas-pcie.patch
blob: 2e4b5714f47726de4006c9c616b83b97063650ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
--- a/drivers/pci/host/Kconfig
+++ b/drivers/pci/host/Kconfig
@@ -220,4 +220,9 @@ config VMD
 	  To compile this driver as a module, choose M here: the
 	  module will be called vmd.
 
+config PCIE_OXNAS
+	bool "PLX Oxnas PCIe controller"
+	depends on ARCH_OXNAS
+	select PCIEPORTBUS
+
 endmenu
--- a/drivers/pci/host/Makefile
+++ b/drivers/pci/host/Makefile
@@ -20,6 +20,7 @@ obj-$(CONFIG_PCIE_ALTERA) += pcie-altera
 obj-$(CONFIG_PCIE_ALTERA_MSI) += pcie-altera-msi.o
 obj-$(CONFIG_PCIE_ROCKCHIP) += pcie-rockchip.o
 obj-$(CONFIG_PCIE_MEDIATEK) += pcie-mediatek.o
+obj-$(CONFIG_PCIE_OXNAS) += pcie-oxnas.o
 obj-$(CONFIG_PCIE_TANGO_SMP8759) += pcie-tango.o
 obj-$(CONFIG_VMD) += vmd.o
 
--- a/arch/arm/boot/dts/ox820.dtsi
+++ b/arch/arm/boot/dts/ox820.dtsi
@@ -316,6 +316,89 @@
 				reg = <0x1000 0x1000>,
 				      <0x100 0x500>;
 			};
+
+			pcie0: pcie-controller@c00000 {
+				compatible = "plxtech,nas782x-pcie";
+				device_type = "pci";
+				#address-cells = <3>;
+				#size-cells = <2>;
+
+				/*		flag & space	bus address	host address	size */
+				ranges = <	0x82000000	0 0x48000000	0x48000000	0 0x2000000
+						0xC2000000	0 0x4A000000	0x4A000000	0 0x1E00000
+						0x81000000	0 0x4BE00000	0x4BE00000	0 0x0100000
+						0x80000000	0 0x4BF00000	0x4BF00000	0 0x0100000>;
+
+				bus-range = <0x00 0x7f>;
+
+				/*	cfg		inbound translator	*/
+				reg =	<0xc00000 0x1000>,	<0xd00000 0x100>;
+
+				phys = <&pcie_phy>;
+				phy-names = "pcie-phy";
+
+				#interrupt-cells = <1>;
+				/* wild card mask, match all bus address & interrupt specifier */
+				/* format: bus address mask, interrupt specifier mask */
+				/* each bit 1 means need match, 0 means ignored when match */
+				interrupt-map-mask = <0 0 0 0>;
+				/* format: a list of: bus address, interrupt specifier,
+				 * parent interrupt controller & specifier */
+				interrupt-map = <0 0 0 0 &gic 0 19 0x304>;
+
+				gpios = <&gpio1 12 0>;
+				clocks = <&stdclk CLK_820_PCIEA>, <&pllb>;
+				clock-names = "pcie", "busclk";
+				resets = <&reset RESET_PCIEA>;
+				reset-names = "pcie";
+
+				plxtech,pcie-hcsl-bit = <2>;
+				plxtech,pcie-ctrl-offset = <0x120>;
+				plxtech,pcie-outbound-offset = <0x138>;
+				status = "disabled";
+			};
+
+			pcie1: pcie-controller@e00000 {
+				compatible = "plxtech,nas782x-pcie";
+				device_type = "pci";
+				#address-cells = <3>;
+				#size-cells = <2>;
+
+				/*		flag & space	bus address	host address	size */
+				ranges = <	0x82000000	0 0x4C000000	0x4C000000	0 0x2000000
+						0xC2000000	0 0x4E000000	0x4E000000	0 0x1E00000
+						0x81000000	0 0x4FE00000	0x4FE00000	0 0x0100000
+						0x80000000	0 0x4FF00000	0x4FF00000	0 0x0100000>;
+
+				bus-range = <0x80 0xff>;
+
+				/*	cfg		inbound translator	*/
+				reg =	<0xe00000 0x1000>,	<0xf00000 0x100>;
+
+				phys = <&pcie_phy>;
+				phy-names = "pcie-phy";
+
+				#interrupt-cells = <1>;
+				/* wild card mask, match all bus address & interrupt specifier */
+				/* format: bus address mask, interrupt specifier mask */
+				/* each bit 1 means need match, 0 means ignored when match */
+				interrupt-map-mask = <0 0 0 0>;
+				/* format: a list of: bus address, interrupt specifier,
+				 * parent interrupt controller & specifier */
+				interrupt-map = <0 0 0 0 &gic 0 20 0x304>;
+
+				/* gpios = <&gpio1 12 0>; */
+				clocks = <&stdclk CLK_820_PCIEB>, <&pllb>;
+				clock-names = "pcie", "busclk";
+				resets = <&reset RESET_PCIEB>;
+				reset-names = "pcie";
+
+				plxtech,pcie-hcsl-bit = <3>;
+				plxtech,pcie-ctrl-offset = <0x124>;
+				plxtech,pcie-outbound-offset = <0x174>;
+				status = "disabled";
+			};
+
 		};
 	};
 };