diff options
author | Ganesan Ramalingam <ganesanr@broadcom.com> | 2014-05-09 07:06:25 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-05-30 10:51:47 -0400 |
commit | fedfcb1137d2426e2e7a8ff40aa0ac4ec44793a9 (patch) | |
tree | 70e2ed14cc747548a1c3add8c3d8299f9caa27cd /arch/mips/netlogic | |
parent | a951440971d0f5fa910bb6d0df1a502fa88d5087 (diff) |
MIPS: Netlogic: XLP9XX on-chip SATA support
The XLP9XX SoC has an on-chip SATA controller with two ports. Add
ahci-init-xlp2.c to initialize the controller, setup the glue logic
registers, fixup PCI quirks and setup interrupt ack logic.
Signed-off-by: Ganesan Ramalingam <ganesanr@broadcom.com>
Signed-off-by: Jayachandran C <jchandra@broadcom.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/6913/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/netlogic')
-rw-r--r-- | arch/mips/netlogic/xlp/Makefile | 1 | ||||
-rw-r--r-- | arch/mips/netlogic/xlp/ahci-init-xlp2.c | 377 |
2 files changed, 378 insertions, 0 deletions
diff --git a/arch/mips/netlogic/xlp/Makefile b/arch/mips/netlogic/xlp/Makefile index 0cb53af9726c..be358a8050c5 100644 --- a/arch/mips/netlogic/xlp/Makefile +++ b/arch/mips/netlogic/xlp/Makefile | |||
@@ -3,3 +3,4 @@ obj-$(CONFIG_SMP) += wakeup.o | |||
3 | obj-$(CONFIG_USB) += usb-init.o | 3 | obj-$(CONFIG_USB) += usb-init.o |
4 | obj-$(CONFIG_USB) += usb-init-xlp2.o | 4 | obj-$(CONFIG_USB) += usb-init-xlp2.o |
5 | obj-$(CONFIG_SATA_AHCI) += ahci-init.o | 5 | obj-$(CONFIG_SATA_AHCI) += ahci-init.o |
6 | obj-$(CONFIG_SATA_AHCI) += ahci-init-xlp2.o | ||
diff --git a/arch/mips/netlogic/xlp/ahci-init-xlp2.c b/arch/mips/netlogic/xlp/ahci-init-xlp2.c new file mode 100644 index 000000000000..c83dbf3689e2 --- /dev/null +++ b/arch/mips/netlogic/xlp/ahci-init-xlp2.c | |||
@@ -0,0 +1,377 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2003-2014 Broadcom Corporation | ||
3 | * All Rights Reserved | ||
4 | * | ||
5 | * This software is available to you under a choice of one of two | ||
6 | * licenses. You may choose to be licensed under the terms of the GNU | ||
7 | * General Public License (GPL) Version 2, available from the file | ||
8 | * COPYING in the main directory of this source tree, or the Broadcom | ||
9 | * license below: | ||
10 | * | ||
11 | * Redistribution and use in source and binary forms, with or without | ||
12 | * modification, are permitted provided that the following conditions | ||
13 | * are met: | ||
14 | * | ||
15 | * 1. Redistributions of source code must retain the above copyright | ||
16 | * notice, this list of conditions and the following disclaimer. | ||
17 | * 2. Redistributions in binary form must reproduce the above copyright | ||
18 | * notice, this list of conditions and the following disclaimer in | ||
19 | * the documentation and/or other materials provided with the | ||
20 | * distribution. | ||
21 | * | ||
22 | * THIS SOFTWARE IS PROVIDED BY BROADCOM ``AS IS'' AND ANY EXPRESS OR | ||
23 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
24 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
25 | * ARE DISCLAIMED. IN NO EVENT SHALL BROADCOM OR CONTRIBUTORS BE LIABLE | ||
26 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
27 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
28 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR | ||
29 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
30 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE | ||
31 | * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN | ||
32 | * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
33 | */ | ||
34 | |||
35 | #include <linux/dma-mapping.h> | ||
36 | #include <linux/kernel.h> | ||
37 | #include <linux/delay.h> | ||
38 | #include <linux/init.h> | ||
39 | #include <linux/pci.h> | ||
40 | #include <linux/irq.h> | ||
41 | #include <linux/bitops.h> | ||
42 | #include <linux/pci_ids.h> | ||
43 | #include <linux/nodemask.h> | ||
44 | |||
45 | #include <asm/cpu.h> | ||
46 | #include <asm/mipsregs.h> | ||
47 | |||
48 | #include <asm/netlogic/common.h> | ||
49 | #include <asm/netlogic/haldefs.h> | ||
50 | #include <asm/netlogic/mips-extns.h> | ||
51 | #include <asm/netlogic/xlp-hal/xlp.h> | ||
52 | #include <asm/netlogic/xlp-hal/iomap.h> | ||
53 | |||
54 | #define SATA_CTL 0x0 | ||
55 | #define SATA_STATUS 0x1 /* Status Reg */ | ||
56 | #define SATA_INT 0x2 /* Interrupt Reg */ | ||
57 | #define SATA_INT_MASK 0x3 /* Interrupt Mask Reg */ | ||
58 | #define SATA_BIU_TIMEOUT 0x4 | ||
59 | #define AXIWRSPERRLOG 0x5 | ||
60 | #define AXIRDSPERRLOG 0x6 | ||
61 | #define BiuTimeoutLow 0x7 | ||
62 | #define BiuTimeoutHi 0x8 | ||
63 | #define BiuSlvErLow 0x9 | ||
64 | #define BiuSlvErHi 0xa | ||
65 | #define IO_CONFIG_SWAP_DIS 0xb | ||
66 | #define CR_REG_TIMER 0xc | ||
67 | #define CORE_ID 0xd | ||
68 | #define AXI_SLAVE_OPT1 0xe | ||
69 | #define PHY_MEM_ACCESS 0xf | ||
70 | #define PHY0_CNTRL 0x10 | ||
71 | #define PHY0_STAT 0x11 | ||
72 | #define PHY0_RX_ALIGN 0x12 | ||
73 | #define PHY0_RX_EQ_LO 0x13 | ||
74 | #define PHY0_RX_EQ_HI 0x14 | ||
75 | #define PHY0_BIST_LOOP 0x15 | ||
76 | #define PHY1_CNTRL 0x16 | ||
77 | #define PHY1_STAT 0x17 | ||
78 | #define PHY1_RX_ALIGN 0x18 | ||
79 | #define PHY1_RX_EQ_LO 0x19 | ||
80 | #define PHY1_RX_EQ_HI 0x1a | ||
81 | #define PHY1_BIST_LOOP 0x1b | ||
82 | #define RdExBase 0x1c | ||
83 | #define RdExLimit 0x1d | ||
84 | #define CacheAllocBase 0x1e | ||
85 | #define CacheAllocLimit 0x1f | ||
86 | #define BiuSlaveCmdGstNum 0x20 | ||
87 | |||
88 | /*SATA_CTL Bits */ | ||
89 | #define SATA_RST_N BIT(0) /* Active low reset sata_core phy */ | ||
90 | #define SataCtlReserve0 BIT(1) | ||
91 | #define M_CSYSREQ BIT(2) /* AXI master low power, not used */ | ||
92 | #define S_CSYSREQ BIT(3) /* AXI slave low power, not used */ | ||
93 | #define P0_CP_DET BIT(8) /* Reserved, bring in from pad */ | ||
94 | #define P0_MP_SW BIT(9) /* Mech Switch */ | ||
95 | #define P0_DISABLE BIT(10) /* disable p0 */ | ||
96 | #define P0_ACT_LED_EN BIT(11) /* Active LED enable */ | ||
97 | #define P0_IRST_HARD_SYNTH BIT(12) /* PHY hard synth reset */ | ||
98 | #define P0_IRST_HARD_TXRX BIT(13) /* PHY lane hard reset */ | ||
99 | #define P0_IRST_POR BIT(14) /* PHY power on reset*/ | ||
100 | #define P0_IPDTXL BIT(15) /* PHY Tx lane dis/power down */ | ||
101 | #define P0_IPDRXL BIT(16) /* PHY Rx lane dis/power down */ | ||
102 | #define P0_IPDIPDMSYNTH BIT(17) /* PHY synthesizer dis/porwer down */ | ||
103 | #define P0_CP_POD_EN BIT(18) /* CP_POD enable */ | ||
104 | #define P0_AT_BYPASS BIT(19) /* P0 address translation by pass */ | ||
105 | #define P1_CP_DET BIT(20) /* Reserved,Cold Detect */ | ||
106 | #define P1_MP_SW BIT(21) /* Mech Switch */ | ||
107 | #define P1_DISABLE BIT(22) /* disable p1 */ | ||
108 | #define P1_ACT_LED_EN BIT(23) /* Active LED enable */ | ||
109 | #define P1_IRST_HARD_SYNTH BIT(24) /* PHY hard synth reset */ | ||
110 | #define P1_IRST_HARD_TXRX BIT(25) /* PHY lane hard reset */ | ||
111 | #define P1_IRST_POR BIT(26) /* PHY power on reset*/ | ||
112 | #define P1_IPDTXL BIT(27) /* PHY Tx lane dis/porwer down */ | ||
113 | #define P1_IPDRXL BIT(28) /* PHY Rx lane dis/porwer down */ | ||
114 | #define P1_IPDIPDMSYNTH BIT(29) /* PHY synthesizer dis/porwer down */ | ||
115 | #define P1_CP_POD_EN BIT(30) | ||
116 | #define P1_AT_BYPASS BIT(31) /* P1 address translation by pass */ | ||
117 | |||
118 | /* Status register */ | ||
119 | #define M_CACTIVE BIT(0) /* m_cactive, not used */ | ||
120 | #define S_CACTIVE BIT(1) /* s_cactive, not used */ | ||
121 | #define P0_PHY_READY BIT(8) /* phy is ready */ | ||
122 | #define P0_CP_POD BIT(9) /* Cold PowerOn */ | ||
123 | #define P0_SLUMBER BIT(10) /* power mode slumber */ | ||
124 | #define P0_PATIAL BIT(11) /* power mode patial */ | ||
125 | #define P0_PHY_SIG_DET BIT(12) /* phy dignal detect */ | ||
126 | #define P0_PHY_CALI BIT(13) /* phy calibration done */ | ||
127 | #define P1_PHY_READY BIT(16) /* phy is ready */ | ||
128 | #define P1_CP_POD BIT(17) /* Cold PowerOn */ | ||
129 | #define P1_SLUMBER BIT(18) /* power mode slumber */ | ||
130 | #define P1_PATIAL BIT(19) /* power mode patial */ | ||
131 | #define P1_PHY_SIG_DET BIT(20) /* phy dignal detect */ | ||
132 | #define P1_PHY_CALI BIT(21) /* phy calibration done */ | ||
133 | |||
134 | /* SATA CR_REG_TIMER bits */ | ||
135 | #define CR_TIME_SCALE (0x1000 << 0) | ||
136 | |||
137 | /* SATA PHY specific registers start and end address */ | ||
138 | #define RXCDRCALFOSC0 0x0065 | ||
139 | #define CALDUTY 0x006e | ||
140 | #define RXDPIF 0x8065 | ||
141 | #define PPMDRIFTMAX_HI 0x80A4 | ||
142 | |||
143 | #define nlm_read_sata_reg(b, r) nlm_read_reg(b, r) | ||
144 | #define nlm_write_sata_reg(b, r, v) nlm_write_reg(b, r, v) | ||
145 | #define nlm_get_sata_pcibase(node) \ | ||
146 | nlm_pcicfg_base(XLP9XX_IO_SATA_OFFSET(node)) | ||
147 | #define nlm_get_sata_regbase(node) \ | ||
148 | (nlm_get_sata_pcibase(node) + 0x100) | ||
149 | |||
150 | /* SATA PHY config for register block 1 0x0065 .. 0x006e */ | ||
151 | static const u8 sata_phy_config1[] = { | ||
152 | 0xC9, 0xC9, 0x07, 0x07, 0x18, 0x18, 0x01, 0x01, 0x22, 0x00 | ||
153 | }; | ||
154 | |||
155 | /* SATA PHY config for register block 2 0x0x8065 .. 0x0x80A4 */ | ||
156 | static const u8 sata_phy_config2[] = { | ||
157 | 0xAA, 0x00, 0x4C, 0xC9, 0xC9, 0x07, 0x07, 0x18, | ||
158 | 0x18, 0x05, 0x0C, 0x10, 0x00, 0x10, 0x00, 0xFF, | ||
159 | 0xCF, 0xF7, 0xE1, 0xF5, 0xFD, 0xFD, 0xFF, 0xFF, | ||
160 | 0xFF, 0xFF, 0xE3, 0xE7, 0xDB, 0xF5, 0xFD, 0xFD, | ||
161 | 0xF5, 0xF5, 0xFF, 0xFF, 0xE3, 0xE7, 0xDB, 0xF5, | ||
162 | 0xFD, 0xFD, 0xF5, 0xF5, 0xFF, 0xFF, 0xFF, 0xF5, | ||
163 | 0x3F, 0x00, 0x32, 0x00, 0x03, 0x01, 0x05, 0x05, | ||
164 | 0x04, 0x00, 0x00, 0x08, 0x04, 0x00, 0x00, 0x04, | ||
165 | }; | ||
166 | |||
167 | const int sata_phy_debug = 0; /* set to verify PHY writes */ | ||
168 | |||
169 | static void sata_clear_glue_reg(u64 regbase, u32 off, u32 bit) | ||
170 | { | ||
171 | u32 reg_val; | ||
172 | |||
173 | reg_val = nlm_read_sata_reg(regbase, off); | ||
174 | nlm_write_sata_reg(regbase, off, (reg_val & ~bit)); | ||
175 | } | ||
176 | |||
177 | static void sata_set_glue_reg(u64 regbase, u32 off, u32 bit) | ||
178 | { | ||
179 | u32 reg_val; | ||
180 | |||
181 | reg_val = nlm_read_sata_reg(regbase, off); | ||
182 | nlm_write_sata_reg(regbase, off, (reg_val | bit)); | ||
183 | } | ||
184 | |||
185 | static void write_phy_reg(u64 regbase, u32 addr, u32 physel, u8 data) | ||
186 | { | ||
187 | nlm_write_sata_reg(regbase, PHY_MEM_ACCESS, | ||
188 | (1u << 31) | (physel << 24) | (data << 16) | addr); | ||
189 | udelay(850); | ||
190 | } | ||
191 | |||
192 | static u8 read_phy_reg(u64 regbase, u32 addr, u32 physel) | ||
193 | { | ||
194 | u32 val; | ||
195 | |||
196 | nlm_write_sata_reg(regbase, PHY_MEM_ACCESS, | ||
197 | (0 << 31) | (physel << 24) | (0 << 16) | addr); | ||
198 | udelay(850); | ||
199 | val = nlm_read_sata_reg(regbase, PHY_MEM_ACCESS); | ||
200 | return (val >> 16) & 0xff; | ||
201 | } | ||
202 | |||
203 | static void config_sata_phy(u64 regbase) | ||
204 | { | ||
205 | u32 port, i, reg; | ||
206 | |||
207 | for (port = 0; port < 2; port++) { | ||
208 | for (i = 0, reg = RXCDRCALFOSC0; reg <= CALDUTY; reg++, i++) | ||
209 | write_phy_reg(regbase, reg, port, sata_phy_config1[i]); | ||
210 | |||
211 | for (i = 0, reg = RXDPIF; reg <= PPMDRIFTMAX_HI; reg++, i++) | ||
212 | write_phy_reg(regbase, reg, port, sata_phy_config2[i]); | ||
213 | } | ||
214 | } | ||
215 | |||
216 | static void check_phy_register(u64 regbase, u32 addr, u32 physel, u8 xdata) | ||
217 | { | ||
218 | u8 data; | ||
219 | |||
220 | data = read_phy_reg(regbase, addr, physel); | ||
221 | pr_info("PHY read addr = 0x%x physel = %d data = 0x%x %s\n", | ||
222 | addr, physel, data, data == xdata ? "TRUE" : "FALSE"); | ||
223 | } | ||
224 | |||
225 | static void verify_sata_phy_config(u64 regbase) | ||
226 | { | ||
227 | u32 port, i, reg; | ||
228 | |||
229 | for (port = 0; port < 2; port++) { | ||
230 | for (i = 0, reg = RXCDRCALFOSC0; reg <= CALDUTY; reg++, i++) | ||
231 | check_phy_register(regbase, reg, port, | ||
232 | sata_phy_config1[i]); | ||
233 | |||
234 | for (i = 0, reg = RXDPIF; reg <= PPMDRIFTMAX_HI; reg++, i++) | ||
235 | check_phy_register(regbase, reg, port, | ||
236 | sata_phy_config2[i]); | ||
237 | } | ||
238 | } | ||
239 | |||
240 | static void nlm_sata_firmware_init(int node) | ||
241 | { | ||
242 | u32 reg_val; | ||
243 | u64 regbase; | ||
244 | int n; | ||
245 | |||
246 | pr_info("Initializing XLP9XX On-chip AHCI...\n"); | ||
247 | regbase = nlm_get_sata_regbase(node); | ||
248 | |||
249 | /* Reset port0 */ | ||
250 | sata_clear_glue_reg(regbase, SATA_CTL, P0_IRST_POR); | ||
251 | sata_clear_glue_reg(regbase, SATA_CTL, P0_IRST_HARD_TXRX); | ||
252 | sata_clear_glue_reg(regbase, SATA_CTL, P0_IRST_HARD_SYNTH); | ||
253 | sata_clear_glue_reg(regbase, SATA_CTL, P0_IPDTXL); | ||
254 | sata_clear_glue_reg(regbase, SATA_CTL, P0_IPDRXL); | ||
255 | sata_clear_glue_reg(regbase, SATA_CTL, P0_IPDIPDMSYNTH); | ||
256 | |||
257 | /* port1 */ | ||
258 | sata_clear_glue_reg(regbase, SATA_CTL, P1_IRST_POR); | ||
259 | sata_clear_glue_reg(regbase, SATA_CTL, P1_IRST_HARD_TXRX); | ||
260 | sata_clear_glue_reg(regbase, SATA_CTL, P1_IRST_HARD_SYNTH); | ||
261 | sata_clear_glue_reg(regbase, SATA_CTL, P1_IPDTXL); | ||
262 | sata_clear_glue_reg(regbase, SATA_CTL, P1_IPDRXL); | ||
263 | sata_clear_glue_reg(regbase, SATA_CTL, P1_IPDIPDMSYNTH); | ||
264 | udelay(300); | ||
265 | |||
266 | /* Set PHY */ | ||
267 | sata_set_glue_reg(regbase, SATA_CTL, P0_IPDTXL); | ||
268 | sata_set_glue_reg(regbase, SATA_CTL, P0_IPDRXL); | ||
269 | sata_set_glue_reg(regbase, SATA_CTL, P0_IPDIPDMSYNTH); | ||
270 | sata_set_glue_reg(regbase, SATA_CTL, P1_IPDTXL); | ||
271 | sata_set_glue_reg(regbase, SATA_CTL, P1_IPDRXL); | ||
272 | sata_set_glue_reg(regbase, SATA_CTL, P1_IPDIPDMSYNTH); | ||
273 | |||
274 | udelay(1000); | ||
275 | sata_set_glue_reg(regbase, SATA_CTL, P0_IRST_POR); | ||
276 | udelay(1000); | ||
277 | sata_set_glue_reg(regbase, SATA_CTL, P1_IRST_POR); | ||
278 | udelay(1000); | ||
279 | |||
280 | /* setup PHY */ | ||
281 | config_sata_phy(regbase); | ||
282 | if (sata_phy_debug) | ||
283 | verify_sata_phy_config(regbase); | ||
284 | |||
285 | udelay(1000); | ||
286 | sata_set_glue_reg(regbase, SATA_CTL, P0_IRST_HARD_TXRX); | ||
287 | sata_set_glue_reg(regbase, SATA_CTL, P0_IRST_HARD_SYNTH); | ||
288 | sata_set_glue_reg(regbase, SATA_CTL, P1_IRST_HARD_TXRX); | ||
289 | sata_set_glue_reg(regbase, SATA_CTL, P1_IRST_HARD_SYNTH); | ||
290 | udelay(300); | ||
291 | |||
292 | /* Override reset in serial PHY mode */ | ||
293 | sata_set_glue_reg(regbase, CR_REG_TIMER, CR_TIME_SCALE); | ||
294 | /* Set reset SATA */ | ||
295 | sata_set_glue_reg(regbase, SATA_CTL, SATA_RST_N); | ||
296 | sata_set_glue_reg(regbase, SATA_CTL, M_CSYSREQ); | ||
297 | sata_set_glue_reg(regbase, SATA_CTL, S_CSYSREQ); | ||
298 | |||
299 | pr_debug("Waiting for PHYs to come up.\n"); | ||
300 | n = 10000; | ||
301 | do { | ||
302 | reg_val = nlm_read_sata_reg(regbase, SATA_STATUS); | ||
303 | if ((reg_val & P1_PHY_READY) && (reg_val & P0_PHY_READY)) | ||
304 | break; | ||
305 | udelay(10); | ||
306 | } while (--n > 0); | ||
307 | |||
308 | if (reg_val & P0_PHY_READY) | ||
309 | pr_info("PHY0 is up.\n"); | ||
310 | else | ||
311 | pr_info("PHY0 is down.\n"); | ||
312 | if (reg_val & P1_PHY_READY) | ||
313 | pr_info("PHY1 is up.\n"); | ||
314 | else | ||
315 | pr_info("PHY1 is down.\n"); | ||
316 | |||
317 | pr_info("XLP AHCI Init Done.\n"); | ||
318 | } | ||
319 | |||
320 | static int __init nlm_ahci_init(void) | ||
321 | { | ||
322 | int node; | ||
323 | |||
324 | if (!cpu_is_xlp9xx()) | ||
325 | return 0; | ||
326 | for (node = 0; node < NLM_NR_NODES; node++) | ||
327 | if (nlm_node_present(node)) | ||
328 | nlm_sata_firmware_init(node); | ||
329 | return 0; | ||
330 | } | ||
331 | |||
332 | static void nlm_sata_intr_ack(struct irq_data *data) | ||
333 | { | ||
334 | u64 regbase; | ||
335 | u32 val; | ||
336 | int node; | ||
337 | |||
338 | node = data->irq / NLM_IRQS_PER_NODE; | ||
339 | regbase = nlm_get_sata_regbase(node); | ||
340 | val = nlm_read_sata_reg(regbase, SATA_INT); | ||
341 | sata_set_glue_reg(regbase, SATA_INT, val); | ||
342 | } | ||
343 | |||
344 | static void nlm_sata_fixup_bar(struct pci_dev *dev) | ||
345 | { | ||
346 | dev->resource[5] = dev->resource[0]; | ||
347 | memset(&dev->resource[0], 0, sizeof(dev->resource[0])); | ||
348 | } | ||
349 | |||
350 | static void nlm_sata_fixup_final(struct pci_dev *dev) | ||
351 | { | ||
352 | u32 val; | ||
353 | u64 regbase; | ||
354 | int node; | ||
355 | |||
356 | /* Find end bridge function to find node */ | ||
357 | node = xlp_socdev_to_node(dev); | ||
358 | regbase = nlm_get_sata_regbase(node); | ||
359 | |||
360 | /* clear pending interrupts and then enable them */ | ||
361 | val = nlm_read_sata_reg(regbase, SATA_INT); | ||
362 | sata_set_glue_reg(regbase, SATA_INT, val); | ||
363 | |||
364 | /* Enable only the core interrupt */ | ||
365 | sata_set_glue_reg(regbase, SATA_INT_MASK, 0x1); | ||
366 | |||
367 | dev->irq = nlm_irq_to_xirq(node, PIC_SATA_IRQ); | ||
368 | nlm_set_pic_extra_ack(node, PIC_SATA_IRQ, nlm_sata_intr_ack); | ||
369 | } | ||
370 | |||
371 | arch_initcall(nlm_ahci_init); | ||
372 | |||
373 | DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_XLP9XX_SATA, | ||
374 | nlm_sata_fixup_bar); | ||
375 | |||
376 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_XLP9XX_SATA, | ||
377 | nlm_sata_fixup_final); | ||