LCOV - code coverage report
Current view: top level - drivers/firewire - init_ohci1394_dma.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 0 109 0.0 %
Date: 2022-04-01 13:59:58 Functions: 0 10 0.0 %
Branches: 0 38 0.0 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0-or-later
       2                 :            : /*
       3                 :            :  * init_ohci1394_dma.c - Initializes physical DMA on all OHCI 1394 controllers
       4                 :            :  *
       5                 :            :  * Copyright (C) 2006-2007      Bernhard Kaindl <bk@suse.de>
       6                 :            :  *
       7                 :            :  * Derived from drivers/ieee1394/ohci1394.c and arch/x86/kernel/early-quirks.c
       8                 :            :  * this file has functions to:
       9                 :            :  * - scan the PCI very early on boot for all OHCI 1394-compliant controllers
      10                 :            :  * - reset and initialize them and make them join the IEEE1394 bus and
      11                 :            :  * - enable physical DMA on them to allow remote debugging
      12                 :            :  *
      13                 :            :  * All code and data is marked as __init and __initdata, respective as
      14                 :            :  * during boot, all OHCI1394 controllers may be claimed by the firewire
      15                 :            :  * stack and at this point, this code should not touch them anymore.
      16                 :            :  *
      17                 :            :  * To use physical DMA after the initialization of the firewire stack,
      18                 :            :  * be sure that the stack enables it and (re-)attach after the bus reset
      19                 :            :  * which may be caused by the firewire stack initialization.
      20                 :            :  */
      21                 :            : 
      22                 :            : #include <linux/delay.h>
      23                 :            : #include <linux/io.h>
      24                 :            : #include <linux/kernel.h>
      25                 :            : #include <linux/pci.h>            /* for PCI defines */
      26                 :            : #include <linux/string.h>
      27                 :            : 
      28                 :            : #include <asm/pci-direct.h>       /* for direct PCI config space access */
      29                 :            : #include <asm/fixmap.h>
      30                 :            : 
      31                 :            : #include <linux/init_ohci1394_dma.h>
      32                 :            : #include "ohci.h"
      33                 :            : 
      34                 :            : int __initdata init_ohci1394_dma_early;
      35                 :            : 
      36                 :            : struct ohci {
      37                 :            :         void __iomem *registers;
      38                 :            : };
      39                 :            : 
      40                 :          0 : static inline void reg_write(const struct ohci *ohci, int offset, u32 data)
      41                 :            : {
      42                 :          0 :         writel(data, ohci->registers + offset);
      43                 :          0 : }
      44                 :            : 
      45                 :          0 : static inline u32 reg_read(const struct ohci *ohci, int offset)
      46                 :            : {
      47                 :          0 :         return readl(ohci->registers + offset);
      48                 :            : }
      49                 :            : 
      50                 :            : #define OHCI_LOOP_COUNT         100     /* Number of loops for reg read waits */
      51                 :            : 
      52                 :            : /* Reads a PHY register of an OHCI-1394 controller */
      53                 :          0 : static inline u8 __init get_phy_reg(struct ohci *ohci, u8 addr)
      54                 :            : {
      55                 :          0 :         int i;
      56                 :          0 :         u32 r;
      57                 :            : 
      58                 :          0 :         reg_write(ohci, OHCI1394_PhyControl, (addr << 8) | 0x00008000);
      59                 :            : 
      60         [ #  # ]:          0 :         for (i = 0; i < OHCI_LOOP_COUNT; i++) {
      61         [ #  # ]:          0 :                 if (reg_read(ohci, OHCI1394_PhyControl) & 0x80000000)
      62                 :            :                         break;
      63                 :          0 :                 mdelay(1);
      64                 :            :         }
      65                 :          0 :         r = reg_read(ohci, OHCI1394_PhyControl);
      66                 :            : 
      67                 :          0 :         return (r & 0x00ff0000) >> 16;
      68                 :            : }
      69                 :            : 
      70                 :            : /* Writes to a PHY register of an OHCI-1394 controller */
      71                 :          0 : static inline void __init set_phy_reg(struct ohci *ohci, u8 addr, u8 data)
      72                 :            : {
      73                 :          0 :         int i;
      74                 :            : 
      75                 :          0 :         reg_write(ohci, OHCI1394_PhyControl, (addr << 8) | data | 0x00004000);
      76                 :            : 
      77         [ #  # ]:          0 :         for (i = 0; i < OHCI_LOOP_COUNT; i++) {
      78         [ #  # ]:          0 :                 if (!(reg_read(ohci, OHCI1394_PhyControl) & 0x00004000))
      79                 :            :                         break;
      80                 :          0 :                 mdelay(1);
      81                 :            :         }
      82                 :          0 : }
      83                 :            : 
      84                 :            : /* Resets an OHCI-1394 controller (for sane state before initialization) */
      85                 :          0 : static inline void __init init_ohci1394_soft_reset(struct ohci *ohci)
      86                 :            : {
      87                 :          0 :         int i;
      88                 :            : 
      89                 :          0 :         reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_softReset);
      90                 :            : 
      91         [ #  # ]:          0 :         for (i = 0; i < OHCI_LOOP_COUNT; i++) {
      92                 :          0 :                 if (!(reg_read(ohci, OHCI1394_HCControlSet)
      93         [ #  # ]:          0 :                                    & OHCI1394_HCControl_softReset))
      94                 :            :                         break;
      95                 :          0 :                 mdelay(1);
      96                 :            :         }
      97                 :          0 : }
      98                 :            : 
      99                 :            : #define OHCI1394_MAX_AT_REQ_RETRIES     0xf
     100                 :            : #define OHCI1394_MAX_AT_RESP_RETRIES    0x2
     101                 :            : #define OHCI1394_MAX_PHYS_RESP_RETRIES  0x8
     102                 :            : 
     103                 :            : /* Basic OHCI-1394 register and port inititalization */
     104                 :          0 : static inline void __init init_ohci1394_initialize(struct ohci *ohci)
     105                 :            : {
     106                 :          0 :         u32 bus_options;
     107                 :          0 :         int num_ports, i;
     108                 :            : 
     109                 :            :         /* Put some defaults to these undefined bus options */
     110                 :          0 :         bus_options = reg_read(ohci, OHCI1394_BusOptions);
     111                 :          0 :         bus_options |=  0x60000000; /* Enable CMC and ISC */
     112                 :          0 :         bus_options &= ~0x00ff0000; /* XXX: Set cyc_clk_acc to zero for now */
     113                 :          0 :         bus_options &= ~0x18000000; /* Disable PMC and BMC */
     114                 :          0 :         reg_write(ohci, OHCI1394_BusOptions, bus_options);
     115                 :            : 
     116                 :            :         /* Set the bus number */
     117                 :          0 :         reg_write(ohci, OHCI1394_NodeID, 0x0000ffc0);
     118                 :            : 
     119                 :            :         /* Enable posted writes */
     120                 :          0 :         reg_write(ohci, OHCI1394_HCControlSet,
     121                 :            :                         OHCI1394_HCControl_postedWriteEnable);
     122                 :            : 
     123                 :            :         /* Clear link control register */
     124                 :          0 :         reg_write(ohci, OHCI1394_LinkControlClear, 0xffffffff);
     125                 :            : 
     126                 :            :         /* enable phys */
     127                 :          0 :         reg_write(ohci, OHCI1394_LinkControlSet,
     128                 :            :                         OHCI1394_LinkControl_rcvPhyPkt);
     129                 :            : 
     130                 :            :         /* Don't accept phy packets into AR request context */
     131                 :          0 :         reg_write(ohci, OHCI1394_LinkControlClear, 0x00000400);
     132                 :            : 
     133                 :            :         /* Clear the Isochonouys interrupt masks */
     134                 :          0 :         reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, 0xffffffff);
     135                 :          0 :         reg_write(ohci, OHCI1394_IsoRecvIntEventClear, 0xffffffff);
     136                 :          0 :         reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 0xffffffff);
     137                 :          0 :         reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 0xffffffff);
     138                 :            : 
     139                 :            :         /* Accept asynchronous transfer requests from all nodes for now */
     140                 :          0 :         reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000);
     141                 :            : 
     142                 :            :         /* Specify asynchronous transfer retries */
     143                 :          0 :         reg_write(ohci, OHCI1394_ATRetries,
     144                 :            :                   OHCI1394_MAX_AT_REQ_RETRIES |
     145                 :            :                   (OHCI1394_MAX_AT_RESP_RETRIES<<4) |
     146                 :            :                   (OHCI1394_MAX_PHYS_RESP_RETRIES<<8));
     147                 :            : 
     148                 :            :         /* We don't want hardware swapping */
     149                 :          0 :         reg_write(ohci, OHCI1394_HCControlClear,
     150                 :            :                   OHCI1394_HCControl_noByteSwapData);
     151                 :            : 
     152                 :            :         /* Enable link */
     153                 :          0 :         reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_linkEnable);
     154                 :            : 
     155                 :            :         /* If anything is connected to a port, make sure it is enabled */
     156                 :          0 :         num_ports = get_phy_reg(ohci, 2) & 0xf;
     157         [ #  # ]:          0 :         for (i = 0; i < num_ports; i++) {
     158                 :          0 :                 unsigned int status;
     159                 :            : 
     160                 :          0 :                 set_phy_reg(ohci, 7, i);
     161                 :          0 :                 status = get_phy_reg(ohci, 8);
     162                 :            : 
     163         [ #  # ]:          0 :                 if (status & 0x20)
     164                 :          0 :                         set_phy_reg(ohci, 8, status & ~1);
     165                 :            :         }
     166                 :          0 : }
     167                 :            : 
     168                 :            : /**
     169                 :            :  * init_ohci1394_wait_for_busresets - wait until bus resets are completed
     170                 :            :  *
     171                 :            :  * OHCI1394 initialization itself and any device going on- or offline
     172                 :            :  * and any cable issue cause a IEEE1394 bus reset. The OHCI1394 spec
     173                 :            :  * specifies that physical DMA is disabled on each bus reset and it
     174                 :            :  * has to be enabled after each bus reset when needed. We resort
     175                 :            :  * to polling here because on early boot, we have no interrupts.
     176                 :            :  */
     177                 :          0 : static inline void __init init_ohci1394_wait_for_busresets(struct ohci *ohci)
     178                 :            : {
     179                 :          0 :         int i, events;
     180                 :            : 
     181         [ #  # ]:          0 :         for (i = 0; i < 9; i++) {
     182         [ #  # ]:          0 :                 mdelay(200);
     183                 :          0 :                 events = reg_read(ohci, OHCI1394_IntEventSet);
     184         [ #  # ]:          0 :                 if (events & OHCI1394_busReset)
     185                 :          0 :                         reg_write(ohci, OHCI1394_IntEventClear,
     186                 :            :                                         OHCI1394_busReset);
     187                 :            :         }
     188                 :          0 : }
     189                 :            : 
     190                 :            : /**
     191                 :            :  * init_ohci1394_enable_physical_dma - Enable physical DMA for remote debugging
     192                 :            :  * This enables remote DMA access over IEEE1394 from every host for the low
     193                 :            :  * 4GB of address space. DMA accesses above 4GB are not available currently.
     194                 :            :  */
     195                 :          0 : static inline void __init init_ohci1394_enable_physical_dma(struct ohci *ohci)
     196                 :            : {
     197                 :          0 :         reg_write(ohci, OHCI1394_PhyReqFilterHiSet, 0xffffffff);
     198                 :          0 :         reg_write(ohci, OHCI1394_PhyReqFilterLoSet, 0xffffffff);
     199                 :          0 :         reg_write(ohci, OHCI1394_PhyUpperBound, 0xffff0000);
     200                 :          0 : }
     201                 :            : 
     202                 :            : /**
     203                 :            :  * init_ohci1394_reset_and_init_dma - init controller and enable DMA
     204                 :            :  * This initializes the given controller and enables physical DMA engine in it.
     205                 :            :  */
     206                 :          0 : static inline void __init init_ohci1394_reset_and_init_dma(struct ohci *ohci)
     207                 :            : {
     208                 :            :         /* Start off with a soft reset, clears everything to a sane state. */
     209                 :          0 :         init_ohci1394_soft_reset(ohci);
     210                 :            : 
     211                 :            :         /* Accessing some registers without LPS enabled may cause lock up */
     212                 :          0 :         reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_LPS);
     213                 :            : 
     214                 :            :         /* Disable and clear interrupts */
     215                 :          0 :         reg_write(ohci, OHCI1394_IntEventClear, 0xffffffff);
     216                 :          0 :         reg_write(ohci, OHCI1394_IntMaskClear, 0xffffffff);
     217                 :            : 
     218         [ #  # ]:          0 :         mdelay(50); /* Wait 50msec to make sure we have full link enabled */
     219                 :            : 
     220                 :          0 :         init_ohci1394_initialize(ohci);
     221                 :            :         /*
     222                 :            :          * The initialization causes at least one IEEE1394 bus reset. Enabling
     223                 :            :          * physical DMA only works *after* *all* bus resets have calmed down:
     224                 :            :          */
     225                 :          0 :         init_ohci1394_wait_for_busresets(ohci);
     226                 :            : 
     227                 :            :         /* We had to wait and do this now if we want to debug early problems */
     228                 :          0 :         init_ohci1394_enable_physical_dma(ohci);
     229                 :          0 : }
     230                 :            : 
     231                 :            : /**
     232                 :            :  * init_ohci1394_controller - Map the registers of the controller and init DMA
     233                 :            :  * This maps the registers of the specified controller and initializes it
     234                 :            :  */
     235                 :          0 : static inline void __init init_ohci1394_controller(int num, int slot, int func)
     236                 :            : {
     237                 :          0 :         unsigned long ohci_base;
     238                 :          0 :         struct ohci ohci;
     239                 :            : 
     240                 :          0 :         printk(KERN_INFO "init_ohci1394_dma: initializing OHCI-1394"
     241                 :            :                          " at %02x:%02x.%x\n", num, slot, func);
     242                 :            : 
     243                 :          0 :         ohci_base = read_pci_config(num, slot, func, PCI_BASE_ADDRESS_0+(0<<2))
     244                 :            :                                                    & PCI_BASE_ADDRESS_MEM_MASK;
     245                 :            : 
     246                 :          0 :         set_fixmap_nocache(FIX_OHCI1394_BASE, ohci_base);
     247                 :            : 
     248                 :          0 :         ohci.registers = (void __iomem *)fix_to_virt(FIX_OHCI1394_BASE);
     249                 :            : 
     250                 :          0 :         init_ohci1394_reset_and_init_dma(&ohci);
     251                 :          0 : }
     252                 :            : 
     253                 :            : /**
     254                 :            :  * debug_init_ohci1394_dma - scan for OHCI1394 controllers and init DMA on them
     255                 :            :  * Scans the whole PCI space for OHCI1394 controllers and inits DMA on them
     256                 :            :  */
     257                 :          0 : void __init init_ohci1394_dma_on_all_controllers(void)
     258                 :            : {
     259                 :          0 :         int num, slot, func;
     260                 :          0 :         u32 class;
     261                 :            : 
     262         [ #  # ]:          0 :         if (!early_pci_allowed())
     263                 :            :                 return;
     264                 :            : 
     265                 :            :         /* Poor man's PCI discovery, the only thing we can do at early boot */
     266         [ #  # ]:          0 :         for (num = 0; num < 32; num++) {
     267         [ #  # ]:          0 :                 for (slot = 0; slot < 32; slot++) {
     268         [ #  # ]:          0 :                         for (func = 0; func < 8; func++) {
     269                 :          0 :                                 class = read_pci_config(num, slot, func,
     270                 :            :                                                         PCI_CLASS_REVISION);
     271         [ #  # ]:          0 :                                 if (class == 0xffffffff)
     272                 :          0 :                                         continue; /* No device at this func */
     273                 :            : 
     274         [ #  # ]:          0 :                                 if (class>>8 != PCI_CLASS_SERIAL_FIREWIRE_OHCI)
     275                 :          0 :                                         continue; /* Not an OHCI-1394 device */
     276                 :            : 
     277                 :          0 :                                 init_ohci1394_controller(num, slot, func);
     278                 :          0 :                                 break; /* Assume one controller per device */
     279                 :            :                         }
     280                 :            :                 }
     281                 :            :         }
     282                 :          0 :         printk(KERN_INFO "init_ohci1394_dma: finished initializing OHCI DMA\n");
     283                 :            : }
     284                 :            : 
     285                 :            : /**
     286                 :            :  * setup_init_ohci1394_early - enables early OHCI1394 DMA initialization
     287                 :            :  */
     288                 :          0 : static int __init setup_ohci1394_dma(char *opt)
     289                 :            : {
     290         [ #  # ]:          0 :         if (!strcmp(opt, "early"))
     291                 :          0 :                 init_ohci1394_dma_early = 1;
     292                 :          0 :         return 0;
     293                 :            : }
     294                 :            : 
     295                 :            : /* passing ohci1394_dma=early on boot causes early OHCI1394 DMA initialization */
     296                 :            : early_param("ohci1394_dma", setup_ohci1394_dma);

Generated by: LCOV version 1.14