LCOV - code coverage report
Current view: top level - drivers/net/wireless/broadcom/b43legacy - leds.c (source / functions) Hit Total Coverage
Test: combined.info Lines: 0 123 0.0 %
Date: 2022-04-01 14:35:51 Functions: 0 8 0.0 %
Branches: 0 49 0.0 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0-or-later
       2                 :            : /*
       3                 :            : 
       4                 :            :   Broadcom B43 wireless driver
       5                 :            :   LED control
       6                 :            : 
       7                 :            :   Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>,
       8                 :            :   Copyright (c) 2005 Stefano Brivio <stefano.brivio@polimi.it>
       9                 :            :   Copyright (c) 2005-2007 Michael Buesch <m@bues.ch>
      10                 :            :   Copyright (c) 2005 Danny van Dyk <kugelfang@gentoo.org>
      11                 :            :   Copyright (c) 2005 Andreas Jaggi <andreas.jaggi@waterwave.ch>
      12                 :            : 
      13                 :            : 
      14                 :            : */
      15                 :            : 
      16                 :            : #include "b43legacy.h"
      17                 :            : #include "leds.h"
      18                 :            : #include "rfkill.h"
      19                 :            : 
      20                 :            : 
      21                 :          0 : static void b43legacy_led_turn_on(struct b43legacy_wldev *dev, u8 led_index,
      22                 :            :                             bool activelow)
      23                 :            : {
      24                 :          0 :         struct b43legacy_wl *wl = dev->wl;
      25                 :          0 :         unsigned long flags;
      26                 :          0 :         u16 ctl;
      27                 :            : 
      28                 :          0 :         spin_lock_irqsave(&wl->leds_lock, flags);
      29                 :          0 :         ctl = b43legacy_read16(dev, B43legacy_MMIO_GPIO_CONTROL);
      30         [ #  # ]:          0 :         if (activelow)
      31                 :          0 :                 ctl &= ~(1 << led_index);
      32                 :            :         else
      33                 :          0 :                 ctl |= (1 << led_index);
      34                 :          0 :         b43legacy_write16(dev, B43legacy_MMIO_GPIO_CONTROL, ctl);
      35                 :          0 :         spin_unlock_irqrestore(&wl->leds_lock, flags);
      36                 :          0 : }
      37                 :            : 
      38                 :          0 : static void b43legacy_led_turn_off(struct b43legacy_wldev *dev, u8 led_index,
      39                 :            :                              bool activelow)
      40                 :            : {
      41                 :          0 :         struct b43legacy_wl *wl = dev->wl;
      42                 :          0 :         unsigned long flags;
      43                 :          0 :         u16 ctl;
      44                 :            : 
      45                 :          0 :         spin_lock_irqsave(&wl->leds_lock, flags);
      46                 :          0 :         ctl = b43legacy_read16(dev, B43legacy_MMIO_GPIO_CONTROL);
      47         [ #  # ]:          0 :         if (activelow)
      48                 :          0 :                 ctl |= (1 << led_index);
      49                 :            :         else
      50                 :          0 :                 ctl &= ~(1 << led_index);
      51                 :          0 :         b43legacy_write16(dev, B43legacy_MMIO_GPIO_CONTROL, ctl);
      52                 :          0 :         spin_unlock_irqrestore(&wl->leds_lock, flags);
      53                 :          0 : }
      54                 :            : 
      55                 :            : /* Callback from the LED subsystem. */
      56                 :          0 : static void b43legacy_led_brightness_set(struct led_classdev *led_dev,
      57                 :            :                                    enum led_brightness brightness)
      58                 :            : {
      59                 :          0 :         struct b43legacy_led *led = container_of(led_dev, struct b43legacy_led,
      60                 :            :                                     led_dev);
      61                 :          0 :         struct b43legacy_wldev *dev = led->dev;
      62                 :          0 :         bool radio_enabled;
      63                 :            : 
      64                 :            :         /* Checking the radio-enabled status here is slightly racy,
      65                 :            :          * but we want to avoid the locking overhead and we don't care
      66                 :            :          * whether the LED has the wrong state for a second. */
      67   [ #  #  #  # ]:          0 :         radio_enabled = (dev->phy.radio_on && dev->radio_hw_enable);
      68                 :            : 
      69         [ #  # ]:          0 :         if (brightness == LED_OFF || !radio_enabled)
      70                 :          0 :                 b43legacy_led_turn_off(dev, led->index, led->activelow);
      71                 :            :         else
      72                 :          0 :                 b43legacy_led_turn_on(dev, led->index, led->activelow);
      73                 :          0 : }
      74                 :            : 
      75                 :          0 : static int b43legacy_register_led(struct b43legacy_wldev *dev,
      76                 :            :                                   struct b43legacy_led *led,
      77                 :            :                                   const char *name,
      78                 :            :                                   const char *default_trigger,
      79                 :            :                                   u8 led_index, bool activelow)
      80                 :            : {
      81                 :          0 :         int err;
      82                 :            : 
      83                 :          0 :         b43legacy_led_turn_off(dev, led_index, activelow);
      84         [ #  # ]:          0 :         if (led->dev)
      85                 :            :                 return -EEXIST;
      86         [ #  # ]:          0 :         if (!default_trigger)
      87                 :            :                 return -EINVAL;
      88                 :          0 :         led->dev = dev;
      89                 :          0 :         led->index = led_index;
      90                 :          0 :         led->activelow = activelow;
      91                 :          0 :         strlcpy(led->name, name, sizeof(led->name));
      92                 :            : 
      93                 :          0 :         led->led_dev.name = led->name;
      94                 :          0 :         led->led_dev.default_trigger = default_trigger;
      95                 :          0 :         led->led_dev.brightness_set = b43legacy_led_brightness_set;
      96                 :            : 
      97                 :          0 :         err = led_classdev_register(dev->dev->dev, &led->led_dev);
      98         [ #  # ]:          0 :         if (err) {
      99                 :          0 :                 b43legacywarn(dev->wl, "LEDs: Failed to register %s\n", name);
     100                 :          0 :                 led->dev = NULL;
     101                 :          0 :                 return err;
     102                 :            :         }
     103                 :            :         return 0;
     104                 :            : }
     105                 :            : 
     106                 :          0 : static void b43legacy_unregister_led(struct b43legacy_led *led)
     107                 :            : {
     108         [ #  # ]:          0 :         if (!led->dev)
     109                 :            :                 return;
     110                 :          0 :         led_classdev_unregister(&led->led_dev);
     111                 :          0 :         b43legacy_led_turn_off(led->dev, led->index, led->activelow);
     112                 :          0 :         led->dev = NULL;
     113                 :            : }
     114                 :            : 
     115                 :          0 : static void b43legacy_map_led(struct b43legacy_wldev *dev,
     116                 :            :                         u8 led_index,
     117                 :            :                         enum b43legacy_led_behaviour behaviour,
     118                 :            :                         bool activelow)
     119                 :            : {
     120                 :          0 :         struct ieee80211_hw *hw = dev->wl->hw;
     121                 :          0 :         char name[B43legacy_LED_MAX_NAME_LEN + 1];
     122                 :            : 
     123                 :            :         /* Map the b43 specific LED behaviour value to the
     124                 :            :          * generic LED triggers. */
     125   [ #  #  #  #  :          0 :         switch (behaviour) {
                #  #  # ]
     126                 :            :         case B43legacy_LED_INACTIVE:
     127                 :            :                 break;
     128                 :          0 :         case B43legacy_LED_OFF:
     129                 :          0 :                 b43legacy_led_turn_off(dev, led_index, activelow);
     130                 :          0 :                 break;
     131                 :          0 :         case B43legacy_LED_ON:
     132                 :          0 :                 b43legacy_led_turn_on(dev, led_index, activelow);
     133                 :          0 :                 break;
     134                 :          0 :         case B43legacy_LED_ACTIVITY:
     135                 :            :         case B43legacy_LED_TRANSFER:
     136                 :            :         case B43legacy_LED_APTRANSFER:
     137                 :          0 :                 snprintf(name, sizeof(name),
     138         [ #  # ]:          0 :                          "b43legacy-%s::tx", wiphy_name(hw->wiphy));
     139                 :          0 :                 b43legacy_register_led(dev, &dev->led_tx, name,
     140                 :            :                                  ieee80211_get_tx_led_name(hw),
     141                 :            :                                  led_index, activelow);
     142                 :          0 :                 snprintf(name, sizeof(name),
     143         [ #  # ]:          0 :                          "b43legacy-%s::rx", wiphy_name(hw->wiphy));
     144                 :          0 :                 b43legacy_register_led(dev, &dev->led_rx, name,
     145                 :            :                                  ieee80211_get_rx_led_name(hw),
     146                 :            :                                  led_index, activelow);
     147                 :          0 :                 break;
     148                 :          0 :         case B43legacy_LED_RADIO_ALL:
     149                 :            :         case B43legacy_LED_RADIO_A:
     150                 :            :         case B43legacy_LED_RADIO_B:
     151                 :            :         case B43legacy_LED_MODE_BG:
     152                 :          0 :                 snprintf(name, sizeof(name),
     153         [ #  # ]:          0 :                          "b43legacy-%s::radio", wiphy_name(hw->wiphy));
     154                 :          0 :                 b43legacy_register_led(dev, &dev->led_radio, name,
     155                 :            :                                  ieee80211_get_radio_led_name(hw),
     156                 :            :                                  led_index, activelow);
     157                 :            :                 /* Sync the RF-kill LED state with radio and switch states. */
     158   [ #  #  #  # ]:          0 :                 if (dev->phy.radio_on && b43legacy_is_hw_radio_enabled(dev))
     159                 :          0 :                         b43legacy_led_turn_on(dev, led_index, activelow);
     160                 :            :                 break;
     161                 :          0 :         case B43legacy_LED_WEIRD:
     162                 :            :         case B43legacy_LED_ASSOC:
     163                 :          0 :                 snprintf(name, sizeof(name),
     164         [ #  # ]:          0 :                          "b43legacy-%s::assoc", wiphy_name(hw->wiphy));
     165                 :          0 :                 b43legacy_register_led(dev, &dev->led_assoc, name,
     166                 :            :                                  ieee80211_get_assoc_led_name(hw),
     167                 :            :                                  led_index, activelow);
     168                 :          0 :                 break;
     169                 :          0 :         default:
     170                 :          0 :                 b43legacywarn(dev->wl, "LEDs: Unknown behaviour 0x%02X\n",
     171                 :            :                         behaviour);
     172                 :          0 :                 break;
     173                 :            :         }
     174                 :          0 : }
     175                 :            : 
     176                 :          0 : void b43legacy_leds_init(struct b43legacy_wldev *dev)
     177                 :            : {
     178                 :          0 :         struct ssb_bus *bus = dev->dev->bus;
     179                 :          0 :         u8 sprom[4];
     180                 :          0 :         int i;
     181                 :          0 :         enum b43legacy_led_behaviour behaviour;
     182                 :          0 :         bool activelow;
     183                 :            : 
     184                 :          0 :         sprom[0] = bus->sprom.gpio0;
     185                 :          0 :         sprom[1] = bus->sprom.gpio1;
     186                 :          0 :         sprom[2] = bus->sprom.gpio2;
     187                 :          0 :         sprom[3] = bus->sprom.gpio3;
     188                 :            : 
     189         [ #  # ]:          0 :         for (i = 0; i < 4; i++) {
     190         [ #  # ]:          0 :                 if (sprom[i] == 0xFF) {
     191                 :            :                         /* There is no LED information in the SPROM
     192                 :            :                          * for this LED. Hardcode it here. */
     193                 :          0 :                         activelow = false;
     194   [ #  #  #  # ]:          0 :                         switch (i) {
     195                 :          0 :                         case 0:
     196                 :          0 :                                 behaviour = B43legacy_LED_ACTIVITY;
     197                 :          0 :                                 activelow = true;
     198         [ #  # ]:          0 :                                 if (bus->boardinfo.vendor == PCI_VENDOR_ID_COMPAQ)
     199                 :          0 :                                         behaviour = B43legacy_LED_RADIO_ALL;
     200                 :            :                                 break;
     201                 :          0 :                         case 1:
     202                 :          0 :                                 behaviour = B43legacy_LED_RADIO_B;
     203         [ #  # ]:          0 :                                 if (bus->boardinfo.vendor == PCI_VENDOR_ID_ASUSTEK)
     204                 :          0 :                                         behaviour = B43legacy_LED_ASSOC;
     205                 :            :                                 break;
     206                 :            :                         case 2:
     207                 :            :                                 behaviour = B43legacy_LED_RADIO_A;
     208                 :            :                                 break;
     209                 :          0 :                         case 3:
     210                 :          0 :                                 behaviour = B43legacy_LED_OFF;
     211                 :          0 :                                 break;
     212                 :            :                         default:
     213                 :            :                                 B43legacy_WARN_ON(1);
     214                 :            :                                 return;
     215                 :            :                         }
     216                 :            :                 } else {
     217                 :          0 :                         behaviour = sprom[i] & B43legacy_LED_BEHAVIOUR;
     218                 :          0 :                         activelow = !!(sprom[i] & B43legacy_LED_ACTIVELOW);
     219                 :            :                 }
     220                 :          0 :                 b43legacy_map_led(dev, i, behaviour, activelow);
     221                 :            :         }
     222                 :            : }
     223                 :            : 
     224                 :          0 : void b43legacy_leds_exit(struct b43legacy_wldev *dev)
     225                 :            : {
     226                 :          0 :         b43legacy_unregister_led(&dev->led_tx);
     227                 :          0 :         b43legacy_unregister_led(&dev->led_rx);
     228                 :          0 :         b43legacy_unregister_led(&dev->led_assoc);
     229                 :          0 :         b43legacy_unregister_led(&dev->led_radio);
     230                 :          0 : }

Generated by: LCOV version 1.14