linux/drivers/leds/leds-ss4200.c
<<
>>
Prefs
   1/*
   2 * SS4200-E Hardware API
   3 * Copyright (c) 2009, Intel Corporation.
   4 * Copyright IBM Corporation, 2009
   5 *
   6 * This program is free software; you can redistribute it and/or modify it
   7 * under the terms and conditions of the GNU General Public License,
   8 * version 2, as published by the Free Software Foundation.
   9 *
  10 * This program is distributed in the hope it will be useful, but WITHOUT
  11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  13 * more details.
  14 *
  15 * You should have received a copy of the GNU General Public License along with
  16 * this program; if not, write to the Free Software Foundation, Inc.,
  17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
  18 *
  19 * Author: Dave Hansen <dave@sr71.net>
  20 */
  21
  22#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  23
  24#include <linux/dmi.h>
  25#include <linux/init.h>
  26#include <linux/ioport.h>
  27#include <linux/kernel.h>
  28#include <linux/leds.h>
  29#include <linux/module.h>
  30#include <linux/pci.h>
  31#include <linux/types.h>
  32#include <linux/uaccess.h>
  33
  34MODULE_AUTHOR("Rodney Girod <rgirod@confocus.com>, Dave Hansen <dave@sr71.net>");
  35MODULE_DESCRIPTION("Intel NAS/Home Server ICH7 GPIO Driver");
  36MODULE_LICENSE("GPL");
  37
  38/*
  39 * ICH7 LPC/GPIO PCI Config register offsets
  40 */
  41#define PMBASE          0x040
  42#define GPIO_BASE       0x048
  43#define GPIO_CTRL       0x04c
  44#define GPIO_EN         0x010
  45
  46/*
  47 * The ICH7 GPIO register block is 64 bytes in size.
  48 */
  49#define ICH7_GPIO_SIZE  64
  50
  51/*
  52 * Define register offsets within the ICH7 register block.
  53 */
  54#define GPIO_USE_SEL    0x000
  55#define GP_IO_SEL       0x004
  56#define GP_LVL          0x00c
  57#define GPO_BLINK       0x018
  58#define GPI_INV         0x030
  59#define GPIO_USE_SEL2   0x034
  60#define GP_IO_SEL2      0x038
  61#define GP_LVL2         0x03c
  62
  63/*
  64 * PCI ID of the Intel ICH7 LPC Device within which the GPIO block lives.
  65 */
  66static const struct pci_device_id ich7_lpc_pci_id[] =
  67{
  68        { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_0) },
  69        { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_1) },
  70        { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7_30) },
  71        { } /* NULL entry */
  72};
  73
  74MODULE_DEVICE_TABLE(pci, ich7_lpc_pci_id);
  75
  76static int __init ss4200_led_dmi_callback(const struct dmi_system_id *id)
  77{
  78        pr_info("detected '%s'\n", id->ident);
  79        return 1;
  80}
  81
  82static unsigned int __initdata nodetect;
  83module_param_named(nodetect, nodetect, bool, 0);
  84MODULE_PARM_DESC(nodetect, "Skip DMI-based hardware detection");
  85
  86/*
  87 * struct nas_led_whitelist - List of known good models
  88 *
  89 * Contains the known good models this driver is compatible with.
  90 * When adding a new model try to be as strict as possible. This
  91 * makes it possible to keep the false positives (the model is
  92 * detected as working, but in reality it is not) as low as
  93 * possible.
  94 */
  95static struct dmi_system_id __initdata nas_led_whitelist[] = {
  96        {
  97                .callback = ss4200_led_dmi_callback,
  98                .ident = "Intel SS4200-E",
  99                .matches = {
 100                        DMI_MATCH(DMI_SYS_VENDOR, "Intel"),
 101                        DMI_MATCH(DMI_PRODUCT_NAME, "SS4200-E"),
 102                        DMI_MATCH(DMI_PRODUCT_VERSION, "1.00.00")
 103                }
 104        },
 105        {}
 106};
 107
 108/*
 109 * Base I/O address assigned to the Power Management register block
 110 */
 111static u32 g_pm_io_base;
 112
 113/*
 114 * Base I/O address assigned to the ICH7 GPIO register block
 115 */
 116static u32 nas_gpio_io_base;
 117
 118/*
 119 * When we successfully register a region, we are returned a resource.
 120 * We use these to identify which regions we need to release on our way
 121 * back out.
 122 */
 123static struct resource *gp_gpio_resource;
 124
 125struct nasgpio_led {
 126        char *name;
 127        u32 gpio_bit;
 128        struct led_classdev led_cdev;
 129};
 130
 131/*
 132 * gpio_bit(s) are the ICH7 GPIO bit assignments
 133 */
 134static struct nasgpio_led nasgpio_leds[] = {
 135        { .name = "hdd1:blue:sata",     .gpio_bit = 0 },
 136        { .name = "hdd1:amber:sata",    .gpio_bit = 1 },
 137        { .name = "hdd2:blue:sata",     .gpio_bit = 2 },
 138        { .name = "hdd2:amber:sata",    .gpio_bit = 3 },
 139        { .name = "hdd3:blue:sata",     .gpio_bit = 4 },
 140        { .name = "hdd3:amber:sata",    .gpio_bit = 5 },
 141        { .name = "hdd4:blue:sata",     .gpio_bit = 6 },
 142        { .name = "hdd4:amber:sata",    .gpio_bit = 7 },
 143        { .name = "power:blue:power",   .gpio_bit = 27},
 144        { .name = "power:amber:power",  .gpio_bit = 28},
 145};
 146
 147#define NAS_RECOVERY    0x00000400      /* GPIO10 */
 148
 149static struct nasgpio_led *
 150led_classdev_to_nasgpio_led(struct led_classdev *led_cdev)
 151{
 152        return container_of(led_cdev, struct nasgpio_led, led_cdev);
 153}
 154
 155static struct nasgpio_led *get_led_named(char *name)
 156{
 157        int i;
 158        for (i = 0; i < ARRAY_SIZE(nasgpio_leds); i++) {
 159                if (strcmp(nasgpio_leds[i].name, name))
 160                        continue;
 161                return &nasgpio_leds[i];
 162        }
 163        return NULL;
 164}
 165
 166/*
 167 * This protects access to the gpio ports.
 168 */
 169static DEFINE_SPINLOCK(nasgpio_gpio_lock);
 170
 171/*
 172 * There are two gpio ports, one for blinking and the other
 173 * for power.  @port tells us if we're doing blinking or
 174 * power control.
 175 *
 176 * Caller must hold nasgpio_gpio_lock
 177 */
 178static void __nasgpio_led_set_attr(struct led_classdev *led_cdev,
 179                                   u32 port, u32 value)
 180{
 181        struct nasgpio_led *led = led_classdev_to_nasgpio_led(led_cdev);
 182        u32 gpio_out;
 183
 184        gpio_out = inl(nas_gpio_io_base + port);
 185        if (value)
 186                gpio_out |= (1<<led->gpio_bit);
 187        else
 188                gpio_out &= ~(1<<led->gpio_bit);
 189
 190        outl(gpio_out, nas_gpio_io_base + port);
 191}
 192
 193static void nasgpio_led_set_attr(struct led_classdev *led_cdev,
 194                                 u32 port, u32 value)
 195{
 196        spin_lock(&nasgpio_gpio_lock);
 197        __nasgpio_led_set_attr(led_cdev, port, value);
 198        spin_unlock(&nasgpio_gpio_lock);
 199}
 200
 201u32 nasgpio_led_get_attr(struct led_classdev *led_cdev, u32 port)
 202{
 203        struct nasgpio_led *led = led_classdev_to_nasgpio_led(led_cdev);
 204        u32 gpio_in;
 205
 206        spin_lock(&nasgpio_gpio_lock);
 207        gpio_in = inl(nas_gpio_io_base + port);
 208        spin_unlock(&nasgpio_gpio_lock);
 209        if (gpio_in & (1<<led->gpio_bit))
 210                return 1;
 211        return 0;
 212}
 213
 214/*
 215 * There is actual brightness control in the hardware,
 216 * but it is via smbus commands and not implemented
 217 * in this driver.
 218 */
 219static void nasgpio_led_set_brightness(struct led_classdev *led_cdev,
 220                                       enum led_brightness brightness)
 221{
 222        u32 setting = 0;
 223        if (brightness >= LED_HALF)
 224                setting = 1;
 225        /*
 226         * Hold the lock across both operations.  This ensures
 227         * consistency so that both the "turn off blinking"
 228         * and "turn light off" operations complete as a set.
 229         */
 230        spin_lock(&nasgpio_gpio_lock);
 231        /*
 232         * LED class documentation asks that past blink state
 233         * be disabled when brightness is turned to zero.
 234         */
 235        if (brightness == 0)
 236                __nasgpio_led_set_attr(led_cdev, GPO_BLINK, 0);
 237        __nasgpio_led_set_attr(led_cdev, GP_LVL, setting);
 238        spin_unlock(&nasgpio_gpio_lock);
 239}
 240
 241static int nasgpio_led_set_blink(struct led_classdev *led_cdev,
 242                                 unsigned long *delay_on,
 243                                 unsigned long *delay_off)
 244{
 245        u32 setting = 1;
 246        if (!(*delay_on == 0 && *delay_off == 0) &&
 247            !(*delay_on == 500 && *delay_off == 500))
 248                return -EINVAL;
 249        /*
 250         * These are very approximate.
 251         */
 252        *delay_on = 500;
 253        *delay_off = 500;
 254
 255        nasgpio_led_set_attr(led_cdev, GPO_BLINK, setting);
 256
 257        return 0;
 258}
 259
 260
 261/*
 262 * Initialize the ICH7 GPIO registers for NAS usage.  The BIOS should have
 263 * already taken care of this, but we will do so in a non destructive manner
 264 * so that we have what we need whether the BIOS did it or not.
 265 */
 266static int __devinit ich7_gpio_init(struct device *dev)
 267{
 268        int i;
 269        u32 config_data = 0;
 270        u32 all_nas_led = 0;
 271
 272        for (i = 0; i < ARRAY_SIZE(nasgpio_leds); i++)
 273                all_nas_led |= (1<<nasgpio_leds[i].gpio_bit);
 274
 275        spin_lock(&nasgpio_gpio_lock);
 276        /*
 277         * We need to enable all of the GPIO lines used by the NAS box,
 278         * so we will read the current Use Selection and add our usage
 279         * to it.  This should be benign with regard to the original
 280         * BIOS configuration.
 281         */
 282        config_data = inl(nas_gpio_io_base + GPIO_USE_SEL);
 283        dev_dbg(dev, ": Data read from GPIO_USE_SEL = 0x%08x\n", config_data);
 284        config_data |= all_nas_led + NAS_RECOVERY;
 285        outl(config_data, nas_gpio_io_base + GPIO_USE_SEL);
 286        config_data = inl(nas_gpio_io_base + GPIO_USE_SEL);
 287        dev_dbg(dev, ": GPIO_USE_SEL = 0x%08x\n\n", config_data);
 288
 289        /*
 290         * The LED GPIO outputs need to be configured for output, so we
 291         * will ensure that all LED lines are cleared for output and the
 292         * RECOVERY line ready for input.  This too should be benign with
 293         * regard to BIOS configuration.
 294         */
 295        config_data = inl(nas_gpio_io_base + GP_IO_SEL);
 296        dev_dbg(dev, ": Data read from GP_IO_SEL = 0x%08x\n",
 297                                        config_data);
 298        config_data &= ~all_nas_led;
 299        config_data |= NAS_RECOVERY;
 300        outl(config_data, nas_gpio_io_base + GP_IO_SEL);
 301        config_data = inl(nas_gpio_io_base + GP_IO_SEL);
 302        dev_dbg(dev, ": GP_IO_SEL = 0x%08x\n", config_data);
 303
 304        /*
 305         * In our final system, the BIOS will initialize the state of all
 306         * of the LEDs.  For now, we turn them all off (or Low).
 307         */
 308        config_data = inl(nas_gpio_io_base + GP_LVL);
 309        dev_dbg(dev, ": Data read from GP_LVL = 0x%08x\n", config_data);
 310        /*
 311         * In our final system, the BIOS will initialize the blink state of all
 312         * of the LEDs.  For now, we turn blink off for all of them.
 313         */
 314        config_data = inl(nas_gpio_io_base + GPO_BLINK);
 315        dev_dbg(dev, ": Data read from GPO_BLINK = 0x%08x\n", config_data);
 316
 317        /*
 318         * At this moment, I am unsure if anything needs to happen with GPI_INV
 319         */
 320        config_data = inl(nas_gpio_io_base + GPI_INV);
 321        dev_dbg(dev, ": Data read from GPI_INV = 0x%08x\n", config_data);
 322
 323        spin_unlock(&nasgpio_gpio_lock);
 324        return 0;
 325}
 326
 327static void ich7_lpc_cleanup(struct device *dev)
 328{
 329        /*
 330         * If we were given exclusive use of the GPIO
 331         * I/O Address range, we must return it.
 332         */
 333        if (gp_gpio_resource) {
 334                dev_dbg(dev, ": Releasing GPIO I/O addresses\n");
 335                release_region(nas_gpio_io_base, ICH7_GPIO_SIZE);
 336                gp_gpio_resource = NULL;
 337        }
 338}
 339
 340/*
 341 * The OS has determined that the LPC of the Intel ICH7 Southbridge is present
 342 * so we can retrive the required operational information and prepare the GPIO.
 343 */
 344static struct pci_dev *nas_gpio_pci_dev;
 345static int __devinit ich7_lpc_probe(struct pci_dev *dev,
 346                                    const struct pci_device_id *id)
 347{
 348        int status;
 349        u32 gc = 0;
 350
 351        status = pci_enable_device(dev);
 352        if (status) {
 353                dev_err(&dev->dev, "pci_enable_device failed\n");
 354                return -EIO;
 355        }
 356
 357        nas_gpio_pci_dev = dev;
 358        status = pci_read_config_dword(dev, PMBASE, &g_pm_io_base);
 359        if (status)
 360                goto out;
 361        g_pm_io_base &= 0x00000ff80;
 362
 363        status = pci_read_config_dword(dev, GPIO_CTRL, &gc);
 364        if (!(GPIO_EN & gc)) {
 365                status = -EEXIST;
 366                dev_info(&dev->dev,
 367                           "ERROR: The LPC GPIO Block has not been enabled.\n");
 368                goto out;
 369        }
 370
 371        status = pci_read_config_dword(dev, GPIO_BASE, &nas_gpio_io_base);
 372        if (0 > status) {
 373                dev_info(&dev->dev, "Unable to read GPIOBASE.\n");
 374                goto out;
 375        }
 376        dev_dbg(&dev->dev, ": GPIOBASE = 0x%08x\n", nas_gpio_io_base);
 377        nas_gpio_io_base &= 0x00000ffc0;
 378
 379        /*
 380         * Insure that we have exclusive access to the GPIO I/O address range.
 381         */
 382        gp_gpio_resource = request_region(nas_gpio_io_base, ICH7_GPIO_SIZE,
 383                                          KBUILD_MODNAME);
 384        if (NULL == gp_gpio_resource) {
 385                dev_info(&dev->dev,
 386                         "ERROR Unable to register GPIO I/O addresses.\n");
 387                status = -1;
 388                goto out;
 389        }
 390
 391        /*
 392         * Initialize the GPIO for NAS/Home Server Use
 393         */
 394        ich7_gpio_init(&dev->dev);
 395
 396out:
 397        if (status) {
 398                ich7_lpc_cleanup(&dev->dev);
 399                pci_disable_device(dev);
 400        }
 401        return status;
 402}
 403
 404static void ich7_lpc_remove(struct pci_dev *dev)
 405{
 406        ich7_lpc_cleanup(&dev->dev);
 407        pci_disable_device(dev);
 408}
 409
 410/*
 411 * pci_driver structure passed to the PCI modules
 412 */
 413static struct pci_driver nas_gpio_pci_driver = {
 414        .name = KBUILD_MODNAME,
 415        .id_table = ich7_lpc_pci_id,
 416        .probe = ich7_lpc_probe,
 417        .remove = ich7_lpc_remove,
 418};
 419
 420static struct led_classdev *get_classdev_for_led_nr(int nr)
 421{
 422        struct nasgpio_led *nas_led = &nasgpio_leds[nr];
 423        struct led_classdev *led = &nas_led->led_cdev;
 424        return led;
 425}
 426
 427
 428static void set_power_light_amber_noblink(void)
 429{
 430        struct nasgpio_led *amber = get_led_named("power:amber:power");
 431        struct nasgpio_led *blue = get_led_named("power:blue:power");
 432
 433        if (!amber || !blue)
 434                return;
 435        /*
 436         * LED_OFF implies disabling future blinking
 437         */
 438        pr_debug("setting blue off and amber on\n");
 439
 440        nasgpio_led_set_brightness(&blue->led_cdev, LED_OFF);
 441        nasgpio_led_set_brightness(&amber->led_cdev, LED_FULL);
 442}
 443
 444static ssize_t nas_led_blink_show(struct device *dev,
 445                                  struct device_attribute *attr, char *buf)
 446{
 447        struct led_classdev *led = dev_get_drvdata(dev);
 448        int blinking = 0;
 449        if (nasgpio_led_get_attr(led, GPO_BLINK))
 450                blinking = 1;
 451        return sprintf(buf, "%u\n", blinking);
 452}
 453
 454static ssize_t nas_led_blink_store(struct device *dev,
 455                                   struct device_attribute *attr,
 456                                   const char *buf, size_t size)
 457{
 458        int ret;
 459        struct led_classdev *led = dev_get_drvdata(dev);
 460        unsigned long blink_state;
 461
 462        ret = strict_strtoul(buf, 10, &blink_state);
 463        if (ret)
 464                return ret;
 465
 466        nasgpio_led_set_attr(led, GPO_BLINK, blink_state);
 467
 468        return size;
 469}
 470
 471static DEVICE_ATTR(blink, 0644, nas_led_blink_show, nas_led_blink_store);
 472
 473static int register_nasgpio_led(int led_nr)
 474{
 475        int ret;
 476        struct nasgpio_led *nas_led = &nasgpio_leds[led_nr];
 477        struct led_classdev *led = get_classdev_for_led_nr(led_nr);
 478
 479        led->name = nas_led->name;
 480        led->brightness = LED_OFF;
 481        if (nasgpio_led_get_attr(led, GP_LVL))
 482                led->brightness = LED_FULL;
 483        led->brightness_set = nasgpio_led_set_brightness;
 484        led->blink_set = nasgpio_led_set_blink;
 485        ret = led_classdev_register(&nas_gpio_pci_dev->dev, led);
 486        if (ret)
 487                return ret;
 488        ret = device_create_file(led->dev, &dev_attr_blink);
 489        if (ret)
 490                led_classdev_unregister(led);
 491        return ret;
 492}
 493
 494static void unregister_nasgpio_led(int led_nr)
 495{
 496        struct led_classdev *led = get_classdev_for_led_nr(led_nr);
 497        led_classdev_unregister(led);
 498        device_remove_file(led->dev, &dev_attr_blink);
 499}
 500/*
 501 * module load/initialization
 502 */
 503static int __init nas_gpio_init(void)
 504{
 505        int i;
 506        int ret = 0;
 507        int nr_devices = 0;
 508
 509        nr_devices = dmi_check_system(nas_led_whitelist);
 510        if (nodetect) {
 511                pr_info("skipping hardware autodetection\n");
 512                pr_info("Please send 'dmidecode' output to dave@sr71.net\n");
 513                nr_devices++;
 514        }
 515
 516        if (nr_devices <= 0) {
 517                pr_info("no LED devices found\n");
 518                return -ENODEV;
 519        }
 520
 521        pr_info("registering PCI driver\n");
 522        ret = pci_register_driver(&nas_gpio_pci_driver);
 523        if (ret)
 524                return ret;
 525        for (i = 0; i < ARRAY_SIZE(nasgpio_leds); i++) {
 526                ret = register_nasgpio_led(i);
 527                if (ret)
 528                        goto out_err;
 529        }
 530        /*
 531         * When the system powers on, the BIOS leaves the power
 532         * light blue and blinking.  This will turn it solid
 533         * amber once the driver is loaded.
 534         */
 535        set_power_light_amber_noblink();
 536        return 0;
 537out_err:
 538        for (i--; i >= 0; i--)
 539                unregister_nasgpio_led(i);
 540        pci_unregister_driver(&nas_gpio_pci_driver);
 541        return ret;
 542}
 543
 544/*
 545 * module unload
 546 */
 547static void __exit nas_gpio_exit(void)
 548{
 549        int i;
 550        pr_info("Unregistering driver\n");
 551        for (i = 0; i < ARRAY_SIZE(nasgpio_leds); i++)
 552                unregister_nasgpio_led(i);
 553        pci_unregister_driver(&nas_gpio_pci_driver);
 554}
 555
 556module_init(nas_gpio_init);
 557module_exit(nas_gpio_exit);
 558