Paul Mundt | 401e909 | 2007-02-13 15:46:39 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Generic heartbeat driver for regular LED banks |
| 3 | * |
| 4 | * Copyright (C) 2007 Paul Mundt |
| 5 | * |
| 6 | * Most SH reference boards include a number of individual LEDs that can |
| 7 | * be independently controlled (either via a pre-defined hardware |
| 8 | * function or via the LED class, if desired -- the hardware tends to |
| 9 | * encapsulate some of the same "triggers" that the LED class supports, |
| 10 | * so there's not too much value in it). |
| 11 | * |
| 12 | * Additionally, most of these boards also have a LED bank that we've |
| 13 | * traditionally used for strobing the load average. This use case is |
| 14 | * handled by this driver, rather than giving each LED bit position its |
| 15 | * own struct device. |
| 16 | * |
| 17 | * This file is subject to the terms and conditions of the GNU General Public |
| 18 | * License. See the file "COPYING" in the main directory of this archive |
| 19 | * for more details. |
| 20 | */ |
| 21 | #include <linux/init.h> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/platform_device.h> |
| 24 | #include <linux/sched.h> |
| 25 | #include <linux/timer.h> |
| 26 | #include <linux/io.h> |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 27 | #include <asm/heartbeat.h> |
Paul Mundt | 401e909 | 2007-02-13 15:46:39 +0900 | [diff] [blame] | 28 | |
| 29 | #define DRV_NAME "heartbeat" |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 30 | #define DRV_VERSION "0.1.1" |
Paul Mundt | 401e909 | 2007-02-13 15:46:39 +0900 | [diff] [blame] | 31 | |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 32 | static unsigned char default_bit_pos[] = { 0, 1, 2, 3, 4, 5, 6, 7 }; |
| 33 | |
| 34 | static inline void heartbeat_toggle_bit(struct heartbeat_data *hd, |
| 35 | unsigned bit, unsigned int inverted) |
| 36 | { |
| 37 | unsigned int new; |
| 38 | |
| 39 | new = (1 << hd->bit_pos[bit]); |
| 40 | if (inverted) |
| 41 | new = ~new; |
| 42 | |
Kuninori Morimoto | e174d13 | 2009-08-18 07:00:20 +0000 | [diff] [blame^] | 43 | new &= hd->mask; |
| 44 | |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 45 | switch (hd->regsize) { |
| 46 | case 32: |
Kuninori Morimoto | e174d13 | 2009-08-18 07:00:20 +0000 | [diff] [blame^] | 47 | new |= ioread32(hd->base) & ~hd->mask; |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 48 | iowrite32(new, hd->base); |
| 49 | break; |
| 50 | case 16: |
Kuninori Morimoto | e174d13 | 2009-08-18 07:00:20 +0000 | [diff] [blame^] | 51 | new |= ioread16(hd->base) & ~hd->mask; |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 52 | iowrite16(new, hd->base); |
| 53 | break; |
| 54 | default: |
Kuninori Morimoto | e174d13 | 2009-08-18 07:00:20 +0000 | [diff] [blame^] | 55 | new |= ioread8(hd->base) & ~hd->mask; |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 56 | iowrite8(new, hd->base); |
| 57 | break; |
| 58 | } |
| 59 | } |
Paul Mundt | 401e909 | 2007-02-13 15:46:39 +0900 | [diff] [blame] | 60 | |
| 61 | static void heartbeat_timer(unsigned long data) |
| 62 | { |
| 63 | struct heartbeat_data *hd = (struct heartbeat_data *)data; |
| 64 | static unsigned bit = 0, up = 1; |
| 65 | |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 66 | heartbeat_toggle_bit(hd, bit, hd->flags & HEARTBEAT_INVERTED); |
| 67 | |
Takashi YOSHII | f607289 | 2007-03-12 15:33:22 +0900 | [diff] [blame] | 68 | bit += up; |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 69 | if ((bit == 0) || (bit == (hd->nr_bits)-1)) |
Takashi YOSHII | f607289 | 2007-03-12 15:33:22 +0900 | [diff] [blame] | 70 | up = -up; |
Paul Mundt | 401e909 | 2007-02-13 15:46:39 +0900 | [diff] [blame] | 71 | |
| 72 | mod_timer(&hd->timer, jiffies + (110 - ((300 << FSHIFT) / |
| 73 | ((avenrun[0] / 5) + (3 << FSHIFT))))); |
| 74 | } |
| 75 | |
| 76 | static int heartbeat_drv_probe(struct platform_device *pdev) |
| 77 | { |
| 78 | struct resource *res; |
| 79 | struct heartbeat_data *hd; |
Kuninori Morimoto | e174d13 | 2009-08-18 07:00:20 +0000 | [diff] [blame^] | 80 | int i; |
Paul Mundt | 401e909 | 2007-02-13 15:46:39 +0900 | [diff] [blame] | 81 | |
| 82 | if (unlikely(pdev->num_resources != 1)) { |
| 83 | dev_err(&pdev->dev, "invalid number of resources\n"); |
| 84 | return -EINVAL; |
| 85 | } |
| 86 | |
| 87 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 88 | if (unlikely(res == NULL)) { |
| 89 | dev_err(&pdev->dev, "invalid resource\n"); |
| 90 | return -EINVAL; |
| 91 | } |
| 92 | |
Paul Mundt | 401e909 | 2007-02-13 15:46:39 +0900 | [diff] [blame] | 93 | if (pdev->dev.platform_data) { |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 94 | hd = pdev->dev.platform_data; |
Paul Mundt | 401e909 | 2007-02-13 15:46:39 +0900 | [diff] [blame] | 95 | } else { |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 96 | hd = kzalloc(sizeof(struct heartbeat_data), GFP_KERNEL); |
| 97 | if (unlikely(!hd)) |
| 98 | return -ENOMEM; |
Paul Mundt | 401e909 | 2007-02-13 15:46:39 +0900 | [diff] [blame] | 99 | } |
| 100 | |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 101 | hd->base = ioremap_nocache(res->start, res->end - res->start + 1); |
Roel Kluin | 1de83e9 | 2008-02-18 14:09:10 +0100 | [diff] [blame] | 102 | if (unlikely(!hd->base)) { |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 103 | dev_err(&pdev->dev, "ioremap failed\n"); |
| 104 | |
| 105 | if (!pdev->dev.platform_data) |
| 106 | kfree(hd); |
| 107 | |
| 108 | return -ENXIO; |
| 109 | } |
| 110 | |
| 111 | if (!hd->nr_bits) { |
| 112 | hd->bit_pos = default_bit_pos; |
| 113 | hd->nr_bits = ARRAY_SIZE(default_bit_pos); |
| 114 | } |
| 115 | |
Kuninori Morimoto | e174d13 | 2009-08-18 07:00:20 +0000 | [diff] [blame^] | 116 | hd->mask = 0; |
| 117 | for (i = 0; i < hd->nr_bits; i++) |
| 118 | hd->mask |= (1 << hd->bit_pos[i]); |
| 119 | |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 120 | if (!hd->regsize) |
| 121 | hd->regsize = 8; /* default access size */ |
Paul Mundt | 401e909 | 2007-02-13 15:46:39 +0900 | [diff] [blame] | 122 | |
| 123 | setup_timer(&hd->timer, heartbeat_timer, (unsigned long)hd); |
| 124 | platform_set_drvdata(pdev, hd); |
| 125 | |
| 126 | return mod_timer(&hd->timer, jiffies + 1); |
| 127 | } |
| 128 | |
| 129 | static int heartbeat_drv_remove(struct platform_device *pdev) |
| 130 | { |
| 131 | struct heartbeat_data *hd = platform_get_drvdata(pdev); |
| 132 | |
| 133 | del_timer_sync(&hd->timer); |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 134 | iounmap(hd->base); |
Paul Mundt | 401e909 | 2007-02-13 15:46:39 +0900 | [diff] [blame] | 135 | |
| 136 | platform_set_drvdata(pdev, NULL); |
| 137 | |
Paul Mundt | 8786c95 | 2007-08-20 13:03:41 +0900 | [diff] [blame] | 138 | if (!pdev->dev.platform_data) |
| 139 | kfree(hd); |
Paul Mundt | 401e909 | 2007-02-13 15:46:39 +0900 | [diff] [blame] | 140 | |
| 141 | return 0; |
| 142 | } |
| 143 | |
| 144 | static struct platform_driver heartbeat_driver = { |
| 145 | .probe = heartbeat_drv_probe, |
| 146 | .remove = heartbeat_drv_remove, |
| 147 | .driver = { |
| 148 | .name = DRV_NAME, |
| 149 | }, |
| 150 | }; |
| 151 | |
| 152 | static int __init heartbeat_init(void) |
| 153 | { |
| 154 | printk(KERN_NOTICE DRV_NAME ": version %s loaded\n", DRV_VERSION); |
| 155 | return platform_driver_register(&heartbeat_driver); |
| 156 | } |
| 157 | |
| 158 | static void __exit heartbeat_exit(void) |
| 159 | { |
| 160 | platform_driver_unregister(&heartbeat_driver); |
| 161 | } |
| 162 | module_init(heartbeat_init); |
| 163 | module_exit(heartbeat_exit); |
| 164 | |
| 165 | MODULE_VERSION(DRV_VERSION); |
| 166 | MODULE_AUTHOR("Paul Mundt"); |
Al Viro | 839cd31 | 2008-05-21 06:32:11 +0100 | [diff] [blame] | 167 | MODULE_LICENSE("GPL v2"); |