1*a74e2a22SMauro Carvalho Chehab=========================================================================== 2*a74e2a22SMauro Carvalho ChehabUsing physical DMA provided by OHCI-1394 FireWire controllers for debugging 3*a74e2a22SMauro Carvalho Chehab=========================================================================== 4*a74e2a22SMauro Carvalho Chehab 5*a74e2a22SMauro Carvalho ChehabIntroduction 6*a74e2a22SMauro Carvalho Chehab------------ 7*a74e2a22SMauro Carvalho Chehab 8*a74e2a22SMauro Carvalho ChehabBasically all FireWire controllers which are in use today are compliant 9*a74e2a22SMauro Carvalho Chehabto the OHCI-1394 specification which defines the controller to be a PCI 10*a74e2a22SMauro Carvalho Chehabbus master which uses DMA to offload data transfers from the CPU and has 11*a74e2a22SMauro Carvalho Chehaba "Physical Response Unit" which executes specific requests by employing 12*a74e2a22SMauro Carvalho ChehabPCI-Bus master DMA after applying filters defined by the OHCI-1394 driver. 13*a74e2a22SMauro Carvalho Chehab 14*a74e2a22SMauro Carvalho ChehabOnce properly configured, remote machines can send these requests to 15*a74e2a22SMauro Carvalho Chehabask the OHCI-1394 controller to perform read and write requests on 16*a74e2a22SMauro Carvalho Chehabphysical system memory and, for read requests, send the result of 17*a74e2a22SMauro Carvalho Chehabthe physical memory read back to the requester. 18*a74e2a22SMauro Carvalho Chehab 19*a74e2a22SMauro Carvalho ChehabWith that, it is possible to debug issues by reading interesting memory 20*a74e2a22SMauro Carvalho Chehablocations such as buffers like the printk buffer or the process table. 21*a74e2a22SMauro Carvalho Chehab 22*a74e2a22SMauro Carvalho ChehabRetrieving a full system memory dump is also possible over the FireWire, 23*a74e2a22SMauro Carvalho Chehabusing data transfer rates in the order of 10MB/s or more. 24*a74e2a22SMauro Carvalho Chehab 25*a74e2a22SMauro Carvalho ChehabWith most FireWire controllers, memory access is limited to the low 4 GB 26*a74e2a22SMauro Carvalho Chehabof physical address space. This can be a problem on IA64 machines where 27*a74e2a22SMauro Carvalho Chehabmemory is located mostly above that limit, but it is rarely a problem on 28*a74e2a22SMauro Carvalho Chehabmore common hardware such as x86, x86-64 and PowerPC. 29*a74e2a22SMauro Carvalho Chehab 30*a74e2a22SMauro Carvalho ChehabAt least LSI FW643e and FW643e2 controllers are known to support access to 31*a74e2a22SMauro Carvalho Chehabphysical addresses above 4 GB, but this feature is currently not enabled by 32*a74e2a22SMauro Carvalho ChehabLinux. 33*a74e2a22SMauro Carvalho Chehab 34*a74e2a22SMauro Carvalho ChehabTogether with a early initialization of the OHCI-1394 controller for debugging, 35*a74e2a22SMauro Carvalho Chehabthis facility proved most useful for examining long debugs logs in the printk 36*a74e2a22SMauro Carvalho Chehabbuffer on to debug early boot problems in areas like ACPI where the system 37*a74e2a22SMauro Carvalho Chehabfails to boot and other means for debugging (serial port) are either not 38*a74e2a22SMauro Carvalho Chehabavailable (notebooks) or too slow for extensive debug information (like ACPI). 39*a74e2a22SMauro Carvalho Chehab 40*a74e2a22SMauro Carvalho ChehabDrivers 41*a74e2a22SMauro Carvalho Chehab------- 42*a74e2a22SMauro Carvalho Chehab 43*a74e2a22SMauro Carvalho ChehabThe firewire-ohci driver in drivers/firewire uses filtered physical 44*a74e2a22SMauro Carvalho ChehabDMA by default, which is more secure but not suitable for remote debugging. 45*a74e2a22SMauro Carvalho ChehabPass the remote_dma=1 parameter to the driver to get unfiltered physical DMA. 46*a74e2a22SMauro Carvalho Chehab 47*a74e2a22SMauro Carvalho ChehabBecause the firewire-ohci driver depends on the PCI enumeration to be 48*a74e2a22SMauro Carvalho Chehabcompleted, an initialization routine which runs pretty early has been 49*a74e2a22SMauro Carvalho Chehabimplemented for x86. This routine runs long before console_init() can be 50*a74e2a22SMauro Carvalho Chehabcalled, i.e. before the printk buffer appears on the console. 51*a74e2a22SMauro Carvalho Chehab 52*a74e2a22SMauro Carvalho ChehabTo activate it, enable CONFIG_PROVIDE_OHCI1394_DMA_INIT (Kernel hacking menu: 53*a74e2a22SMauro Carvalho ChehabRemote debugging over FireWire early on boot) and pass the parameter 54*a74e2a22SMauro Carvalho Chehab"ohci1394_dma=early" to the recompiled kernel on boot. 55*a74e2a22SMauro Carvalho Chehab 56*a74e2a22SMauro Carvalho ChehabTools 57*a74e2a22SMauro Carvalho Chehab----- 58*a74e2a22SMauro Carvalho Chehab 59*a74e2a22SMauro Carvalho Chehabfirescope - Originally developed by Benjamin Herrenschmidt, Andi Kleen ported 60*a74e2a22SMauro Carvalho Chehabit from PowerPC to x86 and x86_64 and added functionality, firescope can now 61*a74e2a22SMauro Carvalho Chehabbe used to view the printk buffer of a remote machine, even with live update. 62*a74e2a22SMauro Carvalho Chehab 63*a74e2a22SMauro Carvalho ChehabBernhard Kaindl enhanced firescope to support accessing 64-bit machines 64*a74e2a22SMauro Carvalho Chehabfrom 32-bit firescope and vice versa: 65*a74e2a22SMauro Carvalho Chehab- http://v3.sk/~lkundrak/firescope/ 66*a74e2a22SMauro Carvalho Chehab 67*a74e2a22SMauro Carvalho Chehaband he implemented fast system dump (alpha version - read README.txt): 68*a74e2a22SMauro Carvalho Chehab- http://halobates.de/firewire/firedump-0.1.tar.bz2 69*a74e2a22SMauro Carvalho Chehab 70*a74e2a22SMauro Carvalho ChehabThere is also a gdb proxy for firewire which allows to use gdb to access 71*a74e2a22SMauro Carvalho Chehabdata which can be referenced from symbols found by gdb in vmlinux: 72*a74e2a22SMauro Carvalho Chehab- http://halobates.de/firewire/fireproxy-0.33.tar.bz2 73*a74e2a22SMauro Carvalho Chehab 74*a74e2a22SMauro Carvalho ChehabThe latest version of this gdb proxy (fireproxy-0.34) can communicate (not 75*a74e2a22SMauro Carvalho Chehabyet stable) with kgdb over an memory-based communication module (kgdbom). 76*a74e2a22SMauro Carvalho Chehab 77*a74e2a22SMauro Carvalho ChehabGetting Started 78*a74e2a22SMauro Carvalho Chehab--------------- 79*a74e2a22SMauro Carvalho Chehab 80*a74e2a22SMauro Carvalho ChehabThe OHCI-1394 specification regulates that the OHCI-1394 controller must 81*a74e2a22SMauro Carvalho Chehabdisable all physical DMA on each bus reset. 82*a74e2a22SMauro Carvalho Chehab 83*a74e2a22SMauro Carvalho ChehabThis means that if you want to debug an issue in a system state where 84*a74e2a22SMauro Carvalho Chehabinterrupts are disabled and where no polling of the OHCI-1394 controller 85*a74e2a22SMauro Carvalho Chehabfor bus resets takes place, you have to establish any FireWire cable 86*a74e2a22SMauro Carvalho Chehabconnections and fully initialize all FireWire hardware __before__ the 87*a74e2a22SMauro Carvalho Chehabsystem enters such state. 88*a74e2a22SMauro Carvalho Chehab 89*a74e2a22SMauro Carvalho ChehabStep-by-step instructions for using firescope with early OHCI initialization: 90*a74e2a22SMauro Carvalho Chehab 91*a74e2a22SMauro Carvalho Chehab1) Verify that your hardware is supported: 92*a74e2a22SMauro Carvalho Chehab 93*a74e2a22SMauro Carvalho Chehab Load the firewire-ohci module and check your kernel logs. 94*a74e2a22SMauro Carvalho Chehab You should see a line similar to:: 95*a74e2a22SMauro Carvalho Chehab 96*a74e2a22SMauro Carvalho Chehab firewire_ohci 0000:15:00.1: added OHCI v1.0 device as card 2, 4 IR + 4 IT 97*a74e2a22SMauro Carvalho Chehab ... contexts, quirks 0x11 98*a74e2a22SMauro Carvalho Chehab 99*a74e2a22SMauro Carvalho Chehab when loading the driver. If you have no supported controller, many PCI, 100*a74e2a22SMauro Carvalho Chehab CardBus and even some Express cards which are fully compliant to OHCI-1394 101*a74e2a22SMauro Carvalho Chehab specification are available. If it requires no driver for Windows operating 102*a74e2a22SMauro Carvalho Chehab systems, it most likely is. Only specialized shops have cards which are not 103*a74e2a22SMauro Carvalho Chehab compliant, they are based on TI PCILynx chips and require drivers for Windows 104*a74e2a22SMauro Carvalho Chehab operating systems. 105*a74e2a22SMauro Carvalho Chehab 106*a74e2a22SMauro Carvalho Chehab The mentioned kernel log message contains the string "physUB" if the 107*a74e2a22SMauro Carvalho Chehab controller implements a writable Physical Upper Bound register. This is 108*a74e2a22SMauro Carvalho Chehab required for physical DMA above 4 GB (but not utilized by Linux yet). 109*a74e2a22SMauro Carvalho Chehab 110*a74e2a22SMauro Carvalho Chehab2) Establish a working FireWire cable connection: 111*a74e2a22SMauro Carvalho Chehab 112*a74e2a22SMauro Carvalho Chehab Any FireWire cable, as long at it provides electrically and mechanically 113*a74e2a22SMauro Carvalho Chehab stable connection and has matching connectors (there are small 4-pin and 114*a74e2a22SMauro Carvalho Chehab large 6-pin FireWire ports) will do. 115*a74e2a22SMauro Carvalho Chehab 116*a74e2a22SMauro Carvalho Chehab If an driver is running on both machines you should see a line like:: 117*a74e2a22SMauro Carvalho Chehab 118*a74e2a22SMauro Carvalho Chehab firewire_core 0000:15:00.1: created device fw1: GUID 00061b0020105917, S400 119*a74e2a22SMauro Carvalho Chehab 120*a74e2a22SMauro Carvalho Chehab on both machines in the kernel log when the cable is plugged in 121*a74e2a22SMauro Carvalho Chehab and connects the two machines. 122*a74e2a22SMauro Carvalho Chehab 123*a74e2a22SMauro Carvalho Chehab3) Test physical DMA using firescope: 124*a74e2a22SMauro Carvalho Chehab 125*a74e2a22SMauro Carvalho Chehab On the debug host, make sure that /dev/fw* is accessible, 126*a74e2a22SMauro Carvalho Chehab then start firescope:: 127*a74e2a22SMauro Carvalho Chehab 128*a74e2a22SMauro Carvalho Chehab $ firescope 129*a74e2a22SMauro Carvalho Chehab Port 0 (/dev/fw1) opened, 2 nodes detected 130*a74e2a22SMauro Carvalho Chehab 131*a74e2a22SMauro Carvalho Chehab FireScope 132*a74e2a22SMauro Carvalho Chehab --------- 133*a74e2a22SMauro Carvalho Chehab Target : <unspecified> 134*a74e2a22SMauro Carvalho Chehab Gen : 1 135*a74e2a22SMauro Carvalho Chehab [Ctrl-T] choose target 136*a74e2a22SMauro Carvalho Chehab [Ctrl-H] this menu 137*a74e2a22SMauro Carvalho Chehab [Ctrl-Q] quit 138*a74e2a22SMauro Carvalho Chehab 139*a74e2a22SMauro Carvalho Chehab ------> Press Ctrl-T now, the output should be similar to: 140*a74e2a22SMauro Carvalho Chehab 141*a74e2a22SMauro Carvalho Chehab 2 nodes available, local node is: 0 142*a74e2a22SMauro Carvalho Chehab 0: ffc0, uuid: 00000000 00000000 [LOCAL] 143*a74e2a22SMauro Carvalho Chehab 1: ffc1, uuid: 00279000 ba4bb801 144*a74e2a22SMauro Carvalho Chehab 145*a74e2a22SMauro Carvalho Chehab Besides the [LOCAL] node, it must show another node without error message. 146*a74e2a22SMauro Carvalho Chehab 147*a74e2a22SMauro Carvalho Chehab4) Prepare for debugging with early OHCI-1394 initialization: 148*a74e2a22SMauro Carvalho Chehab 149*a74e2a22SMauro Carvalho Chehab 4.1) Kernel compilation and installation on debug target 150*a74e2a22SMauro Carvalho Chehab 151*a74e2a22SMauro Carvalho Chehab Compile the kernel to be debugged with CONFIG_PROVIDE_OHCI1394_DMA_INIT 152*a74e2a22SMauro Carvalho Chehab (Kernel hacking: Provide code for enabling DMA over FireWire early on boot) 153*a74e2a22SMauro Carvalho Chehab enabled and install it on the machine to be debugged (debug target). 154*a74e2a22SMauro Carvalho Chehab 155*a74e2a22SMauro Carvalho Chehab 4.2) Transfer the System.map of the debugged kernel to the debug host 156*a74e2a22SMauro Carvalho Chehab 157*a74e2a22SMauro Carvalho Chehab Copy the System.map of the kernel be debugged to the debug host (the host 158*a74e2a22SMauro Carvalho Chehab which is connected to the debugged machine over the FireWire cable). 159*a74e2a22SMauro Carvalho Chehab 160*a74e2a22SMauro Carvalho Chehab5) Retrieving the printk buffer contents: 161*a74e2a22SMauro Carvalho Chehab 162*a74e2a22SMauro Carvalho Chehab With the FireWire cable connected, the OHCI-1394 driver on the debugging 163*a74e2a22SMauro Carvalho Chehab host loaded, reboot the debugged machine, booting the kernel which has 164*a74e2a22SMauro Carvalho Chehab CONFIG_PROVIDE_OHCI1394_DMA_INIT enabled, with the option ohci1394_dma=early. 165*a74e2a22SMauro Carvalho Chehab 166*a74e2a22SMauro Carvalho Chehab Then, on the debugging host, run firescope, for example by using -A:: 167*a74e2a22SMauro Carvalho Chehab 168*a74e2a22SMauro Carvalho Chehab firescope -A System.map-of-debug-target-kernel 169*a74e2a22SMauro Carvalho Chehab 170*a74e2a22SMauro Carvalho Chehab Note: -A automatically attaches to the first non-local node. It only works 171*a74e2a22SMauro Carvalho Chehab reliably if only connected two machines are connected using FireWire. 172*a74e2a22SMauro Carvalho Chehab 173*a74e2a22SMauro Carvalho Chehab After having attached to the debug target, press Ctrl-D to view the 174*a74e2a22SMauro Carvalho Chehab complete printk buffer or Ctrl-U to enter auto update mode and get an 175*a74e2a22SMauro Carvalho Chehab updated live view of recent kernel messages logged on the debug target. 176*a74e2a22SMauro Carvalho Chehab 177*a74e2a22SMauro Carvalho Chehab Call "firescope -h" to get more information on firescope's options. 178*a74e2a22SMauro Carvalho Chehab 179*a74e2a22SMauro Carvalho ChehabNotes 180*a74e2a22SMauro Carvalho Chehab----- 181*a74e2a22SMauro Carvalho Chehab 182*a74e2a22SMauro Carvalho ChehabDocumentation and specifications: http://halobates.de/firewire/ 183*a74e2a22SMauro Carvalho Chehab 184*a74e2a22SMauro Carvalho ChehabFireWire is a trademark of Apple Inc. - for more information please refer to: 185*a74e2a22SMauro Carvalho Chehabhttps://en.wikipedia.org/wiki/FireWire 186