blob: e365fbd3423749eeaf1b16b963d92288caf14d26 [file] [log] [blame]
Bob Copeland0ed45482009-03-08 00:10:20 -05001/*
2 * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
3 * Copyright (c) 2004-2005 Atheros Communications, Inc.
4 * Copyright (c) 2007 Jiri Slaby <jirislaby@gmail.com>
5 * Copyright (c) 2009 Bob Copeland <me@bobcopeland.com>
6 *
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer,
14 * without modification.
15 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
16 * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
17 * redistribution must be conditioned upon including a substantially
18 * similar Disclaimer requirement for further binary redistribution.
19 * 3. Neither the names of the above-listed copyright holders nor the names
20 * of any contributors may be used to endorse or promote products derived
21 * from this software without specific prior written permission.
22 *
23 * Alternatively, this software may be distributed under the terms of the
24 * GNU General Public License ("GPL") version 2 as published by the Free
25 * Software Foundation.
26 *
27 * NO WARRANTY
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
31 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
32 * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
33 * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
36 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
38 * THE POSSIBILITY OF SUCH DAMAGES.
39 *
40 */
41
42#include <linux/pci.h>
43#include "ath5k.h"
44#include "base.h"
45
Bob Copelandcdb02dc2009-03-08 00:10:21 -050046#define ATH_SDEVICE(subv,subd) \
47 .vendor = PCI_ANY_ID, .device = PCI_ANY_ID, \
48 .subvendor = (subv), .subdevice = (subd)
49
50#define ATH_LED(pin,polarity) .driver_data = (((pin) << 8) | (polarity))
51#define ATH_PIN(data) ((data) >> 8)
52#define ATH_POLARITY(data) ((data) & 0xff)
53
54/* Devices we match on for LED config info (typically laptops) */
55static const struct pci_device_id ath5k_led_devices[] = {
56 /* IBM-specific AR5212 */
57 { PCI_VDEVICE(ATHEROS, PCI_DEVICE_ID_ATHEROS_AR5212_IBM), ATH_LED(0, 0) },
58 /* AR5211 */
59 { PCI_VDEVICE(ATHEROS, PCI_DEVICE_ID_ATHEROS_AR5211), ATH_LED(0, 0) },
60 /* HP Compaq nc6xx, nc4000, nx6000 */
61 { ATH_SDEVICE(PCI_VENDOR_ID_COMPAQ, PCI_ANY_ID), ATH_LED(1, 1) },
62 /* Acer Aspire One A150 (maximlevitsky@gmail.com) */
63 { ATH_SDEVICE(PCI_VENDOR_ID_FOXCONN, PCI_ANY_ID), ATH_LED(3, 0) },
64 /* E-machines E510 (tuliom@gmail.com) */
65 { ATH_SDEVICE(PCI_VENDOR_ID_AMBIT, PCI_ANY_ID), ATH_LED(3, 0) },
66 { }
67};
68
Bob Copeland0ed45482009-03-08 00:10:20 -050069void ath5k_led_enable(struct ath5k_softc *sc)
70{
71 if (test_bit(ATH_STAT_LEDSOFT, sc->status)) {
72 ath5k_hw_set_gpio_output(sc->ah, sc->led_pin);
73 ath5k_led_off(sc);
74 }
75}
76
77void ath5k_led_on(struct ath5k_softc *sc)
78{
79 if (!test_bit(ATH_STAT_LEDSOFT, sc->status))
80 return;
81 ath5k_hw_set_gpio(sc->ah, sc->led_pin, sc->led_on);
82}
83
84void ath5k_led_off(struct ath5k_softc *sc)
85{
86 if (!test_bit(ATH_STAT_LEDSOFT, sc->status))
87 return;
88 ath5k_hw_set_gpio(sc->ah, sc->led_pin, !sc->led_on);
89}
90
91static void
92ath5k_led_brightness_set(struct led_classdev *led_dev,
93 enum led_brightness brightness)
94{
95 struct ath5k_led *led = container_of(led_dev, struct ath5k_led,
96 led_dev);
97
98 if (brightness == LED_OFF)
99 ath5k_led_off(led->sc);
100 else
101 ath5k_led_on(led->sc);
102}
103
104static int
105ath5k_register_led(struct ath5k_softc *sc, struct ath5k_led *led,
106 const char *name, char *trigger)
107{
108 int err;
109
110 led->sc = sc;
111 strncpy(led->name, name, sizeof(led->name));
112 led->led_dev.name = led->name;
113 led->led_dev.default_trigger = trigger;
114 led->led_dev.brightness_set = ath5k_led_brightness_set;
115
116 err = led_classdev_register(&sc->pdev->dev, &led->led_dev);
117 if (err) {
118 ATH5K_WARN(sc, "could not register LED %s\n", name);
119 led->sc = NULL;
120 }
121 return err;
122}
123
124static void
125ath5k_unregister_led(struct ath5k_led *led)
126{
127 if (!led->sc)
128 return;
129 led_classdev_unregister(&led->led_dev);
130 ath5k_led_off(led->sc);
131 led->sc = NULL;
132}
133
134void ath5k_unregister_leds(struct ath5k_softc *sc)
135{
136 ath5k_unregister_led(&sc->rx_led);
137 ath5k_unregister_led(&sc->tx_led);
138}
139
Bob Copeland0ed45482009-03-08 00:10:20 -0500140int ath5k_init_leds(struct ath5k_softc *sc)
141{
142 int ret = 0;
143 struct ieee80211_hw *hw = sc->hw;
144 struct pci_dev *pdev = sc->pdev;
145 char name[ATH5K_LED_MAX_NAME_LEN + 1];
Bob Copelandcdb02dc2009-03-08 00:10:21 -0500146 const struct pci_device_id *match;
Bob Copeland0ed45482009-03-08 00:10:20 -0500147
Bob Copelandcdb02dc2009-03-08 00:10:21 -0500148 match = pci_match_id(&ath5k_led_devices[0], pdev);
149 if (match) {
Bob Copeland0ed45482009-03-08 00:10:20 -0500150 __set_bit(ATH_STAT_LEDSOFT, sc->status);
Bob Copelandcdb02dc2009-03-08 00:10:21 -0500151 sc->led_pin = ATH_PIN(match->driver_data);
152 sc->led_on = ATH_POLARITY(match->driver_data);
Bob Copeland0ed45482009-03-08 00:10:20 -0500153 }
154
155 if (!test_bit(ATH_STAT_LEDSOFT, sc->status))
156 goto out;
157
158 ath5k_led_enable(sc);
159
160 snprintf(name, sizeof(name), "ath5k-%s::rx", wiphy_name(hw->wiphy));
161 ret = ath5k_register_led(sc, &sc->rx_led, name,
162 ieee80211_get_rx_led_name(hw));
163 if (ret)
164 goto out;
165
166 snprintf(name, sizeof(name), "ath5k-%s::tx", wiphy_name(hw->wiphy));
167 ret = ath5k_register_led(sc, &sc->tx_led, name,
168 ieee80211_get_tx_led_name(hw));
169out:
170 return ret;
171}
172