2 * init_ohci1394_dma.c - Initializes physical DMA on all OHCI 1394 controllers
4 * Copyright (C) 2006-2007 Bernhard Kaindl <bk@suse.de>
6 * Derived from drivers/ieee1394/ohci1394.c and arch/x86/kernel/early-quirks.c
7 * this file has functions to:
8 * - scan the PCI very early on boot for all OHCI 1394-compliant controllers
9 * - reset and initialize them and make them join the IEEE1394 bus and
10 * - enable physical DMA on them to allow remote debugging
12 * All code and data is marked as __init and __initdata, respective as
13 * during boot, all OHCI1394 controllers may be claimed by the firewire
14 * stack and at this point, this code should not touch them anymore.
16 * To use physical DMA after the initialization of the firewire stack,
17 * be sure that the stack enables it and (re-)attach after the bus reset
18 * which may be caused by the firewire stack initialization.
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; either version 2 of the License, or
23 * (at your option) any later version.
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software Foundation,
32 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
35 #include <linux/delay.h>
37 #include <linux/kernel.h>
38 #include <linux/pci.h> /* for PCI defines */
39 #include <linux/string.h>
41 #include <asm/pci-direct.h> /* for direct PCI config space access */
42 #include <asm/fixmap.h>
44 #include <linux/init_ohci1394_dma.h>
47 int __initdata init_ohci1394_dma_early
;
50 void __iomem
*registers
;
53 static inline void reg_write(const struct ohci
*ohci
, int offset
, u32 data
)
55 writel(data
, ohci
->registers
+ offset
);
58 static inline u32
reg_read(const struct ohci
*ohci
, int offset
)
60 return readl(ohci
->registers
+ offset
);
63 #define OHCI_LOOP_COUNT 100 /* Number of loops for reg read waits */
65 /* Reads a PHY register of an OHCI-1394 controller */
66 static inline u8 __init
get_phy_reg(struct ohci
*ohci
, u8 addr
)
71 reg_write(ohci
, OHCI1394_PhyControl
, (addr
<< 8) | 0x00008000);
73 for (i
= 0; i
< OHCI_LOOP_COUNT
; i
++) {
74 if (reg_read(ohci
, OHCI1394_PhyControl
) & 0x80000000)
78 r
= reg_read(ohci
, OHCI1394_PhyControl
);
80 return (r
& 0x00ff0000) >> 16;
83 /* Writes to a PHY register of an OHCI-1394 controller */
84 static inline void __init
set_phy_reg(struct ohci
*ohci
, u8 addr
, u8 data
)
88 reg_write(ohci
, OHCI1394_PhyControl
, (addr
<< 8) | data
| 0x00004000);
90 for (i
= 0; i
< OHCI_LOOP_COUNT
; i
++) {
91 if (!(reg_read(ohci
, OHCI1394_PhyControl
) & 0x00004000))
97 /* Resets an OHCI-1394 controller (for sane state before initialization) */
98 static inline void __init
init_ohci1394_soft_reset(struct ohci
*ohci
)
102 reg_write(ohci
, OHCI1394_HCControlSet
, OHCI1394_HCControl_softReset
);
104 for (i
= 0; i
< OHCI_LOOP_COUNT
; i
++) {
105 if (!(reg_read(ohci
, OHCI1394_HCControlSet
)
106 & OHCI1394_HCControl_softReset
))
112 #define OHCI1394_MAX_AT_REQ_RETRIES 0xf
113 #define OHCI1394_MAX_AT_RESP_RETRIES 0x2
114 #define OHCI1394_MAX_PHYS_RESP_RETRIES 0x8
116 /* Basic OHCI-1394 register and port inititalization */
117 static inline void __init
init_ohci1394_initialize(struct ohci
*ohci
)
122 /* Put some defaults to these undefined bus options */
123 bus_options
= reg_read(ohci
, OHCI1394_BusOptions
);
124 bus_options
|= 0x60000000; /* Enable CMC and ISC */
125 bus_options
&= ~0x00ff0000; /* XXX: Set cyc_clk_acc to zero for now */
126 bus_options
&= ~0x18000000; /* Disable PMC and BMC */
127 reg_write(ohci
, OHCI1394_BusOptions
, bus_options
);
129 /* Set the bus number */
130 reg_write(ohci
, OHCI1394_NodeID
, 0x0000ffc0);
132 /* Enable posted writes */
133 reg_write(ohci
, OHCI1394_HCControlSet
,
134 OHCI1394_HCControl_postedWriteEnable
);
136 /* Clear link control register */
137 reg_write(ohci
, OHCI1394_LinkControlClear
, 0xffffffff);
140 reg_write(ohci
, OHCI1394_LinkControlSet
,
141 OHCI1394_LinkControl_rcvPhyPkt
);
143 /* Don't accept phy packets into AR request context */
144 reg_write(ohci
, OHCI1394_LinkControlClear
, 0x00000400);
146 /* Clear the Isochonouys interrupt masks */
147 reg_write(ohci
, OHCI1394_IsoRecvIntMaskClear
, 0xffffffff);
148 reg_write(ohci
, OHCI1394_IsoRecvIntEventClear
, 0xffffffff);
149 reg_write(ohci
, OHCI1394_IsoXmitIntMaskClear
, 0xffffffff);
150 reg_write(ohci
, OHCI1394_IsoXmitIntEventClear
, 0xffffffff);
152 /* Accept asynchronous transfer requests from all nodes for now */
153 reg_write(ohci
, OHCI1394_AsReqFilterHiSet
, 0x80000000);
155 /* Specify asynchronous transfer retries */
156 reg_write(ohci
, OHCI1394_ATRetries
,
157 OHCI1394_MAX_AT_REQ_RETRIES
|
158 (OHCI1394_MAX_AT_RESP_RETRIES
<<4) |
159 (OHCI1394_MAX_PHYS_RESP_RETRIES
<<8));
161 /* We don't want hardware swapping */
162 reg_write(ohci
, OHCI1394_HCControlClear
,
163 OHCI1394_HCControl_noByteSwapData
);
166 reg_write(ohci
, OHCI1394_HCControlSet
, OHCI1394_HCControl_linkEnable
);
168 /* If anything is connected to a port, make sure it is enabled */
169 num_ports
= get_phy_reg(ohci
, 2) & 0xf;
170 for (i
= 0; i
< num_ports
; i
++) {
173 set_phy_reg(ohci
, 7, i
);
174 status
= get_phy_reg(ohci
, 8);
177 set_phy_reg(ohci
, 8, status
& ~1);
182 * init_ohci1394_wait_for_busresets - wait until bus resets are completed
184 * OHCI1394 initialization itself and any device going on- or offline
185 * and any cable issue cause a IEEE1394 bus reset. The OHCI1394 spec
186 * specifies that physical DMA is disabled on each bus reset and it
187 * has to be enabled after each bus reset when needed. We resort
188 * to polling here because on early boot, we have no interrupts.
190 static inline void __init
init_ohci1394_wait_for_busresets(struct ohci
*ohci
)
194 for (i
= 0; i
< 9; i
++) {
196 events
= reg_read(ohci
, OHCI1394_IntEventSet
);
197 if (events
& OHCI1394_busReset
)
198 reg_write(ohci
, OHCI1394_IntEventClear
,
204 * init_ohci1394_enable_physical_dma - Enable physical DMA for remote debugging
205 * This enables remote DMA access over IEEE1394 from every host for the low
206 * 4GB of address space. DMA accesses above 4GB are not available currently.
208 static inline void __init
init_ohci1394_enable_physical_dma(struct ohci
*ohci
)
210 reg_write(ohci
, OHCI1394_PhyReqFilterHiSet
, 0xffffffff);
211 reg_write(ohci
, OHCI1394_PhyReqFilterLoSet
, 0xffffffff);
212 reg_write(ohci
, OHCI1394_PhyUpperBound
, 0xffff0000);
216 * init_ohci1394_reset_and_init_dma - init controller and enable DMA
217 * This initializes the given controller and enables physical DMA engine in it.
219 static inline void __init
init_ohci1394_reset_and_init_dma(struct ohci
*ohci
)
221 /* Start off with a soft reset, clears everything to a sane state. */
222 init_ohci1394_soft_reset(ohci
);
224 /* Accessing some registers without LPS enabled may cause lock up */
225 reg_write(ohci
, OHCI1394_HCControlSet
, OHCI1394_HCControl_LPS
);
227 /* Disable and clear interrupts */
228 reg_write(ohci
, OHCI1394_IntEventClear
, 0xffffffff);
229 reg_write(ohci
, OHCI1394_IntMaskClear
, 0xffffffff);
231 mdelay(50); /* Wait 50msec to make sure we have full link enabled */
233 init_ohci1394_initialize(ohci
);
235 * The initialization causes at least one IEEE1394 bus reset. Enabling
236 * physical DMA only works *after* *all* bus resets have calmed down:
238 init_ohci1394_wait_for_busresets(ohci
);
240 /* We had to wait and do this now if we want to debug early problems */
241 init_ohci1394_enable_physical_dma(ohci
);
245 * init_ohci1394_controller - Map the registers of the controller and init DMA
246 * This maps the registers of the specified controller and initializes it
248 static inline void __init
init_ohci1394_controller(int num
, int slot
, int func
)
250 unsigned long ohci_base
;
253 printk(KERN_INFO
"init_ohci1394_dma: initializing OHCI-1394"
254 " at %02x:%02x.%x\n", num
, slot
, func
);
256 ohci_base
= read_pci_config(num
, slot
, func
, PCI_BASE_ADDRESS_0
+(0<<2))
257 & PCI_BASE_ADDRESS_MEM_MASK
;
259 set_fixmap_nocache(FIX_OHCI1394_BASE
, ohci_base
);
261 ohci
.registers
= (void __iomem
*)fix_to_virt(FIX_OHCI1394_BASE
);
263 init_ohci1394_reset_and_init_dma(&ohci
);
267 * debug_init_ohci1394_dma - scan for OHCI1394 controllers and init DMA on them
268 * Scans the whole PCI space for OHCI1394 controllers and inits DMA on them
270 void __init
init_ohci1394_dma_on_all_controllers(void)
275 if (!early_pci_allowed())
278 /* Poor man's PCI discovery, the only thing we can do at early boot */
279 for (num
= 0; num
< 32; num
++) {
280 for (slot
= 0; slot
< 32; slot
++) {
281 for (func
= 0; func
< 8; func
++) {
282 class = read_pci_config(num
, slot
, func
,
284 if (class == 0xffffffff)
285 continue; /* No device at this func */
287 if (class>>8 != PCI_CLASS_SERIAL_FIREWIRE_OHCI
)
288 continue; /* Not an OHCI-1394 device */
290 init_ohci1394_controller(num
, slot
, func
);
291 break; /* Assume one controller per device */
295 printk(KERN_INFO
"init_ohci1394_dma: finished initializing OHCI DMA\n");
299 * setup_init_ohci1394_early - enables early OHCI1394 DMA initialization
301 static int __init
setup_ohci1394_dma(char *opt
)
303 if (!strcmp(opt
, "early"))
304 init_ohci1394_dma_early
= 1;
308 /* passing ohci1394_dma=early on boot causes early OHCI1394 DMA initialization */
309 early_param("ohci1394_dma", setup_ohci1394_dma
);