blob: c6d96049a0bb07a91e3515fdc5d3261489d60fbe [file] [log] [blame]
Paul Mundt401e9092007-02-13 15:46:39 +09001/*
2 * Generic heartbeat driver for regular LED banks
3 *
Paul Mundt10ab92d2010-01-15 12:08:31 +09004 * Copyright (C) 2007 - 2010 Paul Mundt
Paul Mundt401e9092007-02-13 15:46:39 +09005 *
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>
Paul Mundt401e9092007-02-13 15:46:39 +090022#include <linux/platform_device.h>
23#include <linux/sched.h>
Ingo Molnarbadaff82017-02-08 08:45:17 +010024#include <linux/sched/loadavg.h>
Paul Mundt401e9092007-02-13 15:46:39 +090025#include <linux/timer.h>
26#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Paul Mundt8786c952007-08-20 13:03:41 +090028#include <asm/heartbeat.h>
Paul Mundt401e9092007-02-13 15:46:39 +090029
30#define DRV_NAME "heartbeat"
Paul Mundt10ab92d2010-01-15 12:08:31 +090031#define DRV_VERSION "0.1.2"
Paul Mundt401e9092007-02-13 15:46:39 +090032
Paul Mundt8786c952007-08-20 13:03:41 +090033static unsigned char default_bit_pos[] = { 0, 1, 2, 3, 4, 5, 6, 7 };
34
35static inline void heartbeat_toggle_bit(struct heartbeat_data *hd,
36 unsigned bit, unsigned int inverted)
37{
38 unsigned int new;
39
40 new = (1 << hd->bit_pos[bit]);
41 if (inverted)
42 new = ~new;
43
Kuninori Morimotoe174d132009-08-18 07:00:20 +000044 new &= hd->mask;
45
Paul Mundt8786c952007-08-20 13:03:41 +090046 switch (hd->regsize) {
47 case 32:
Kuninori Morimotoe174d132009-08-18 07:00:20 +000048 new |= ioread32(hd->base) & ~hd->mask;
Paul Mundt8786c952007-08-20 13:03:41 +090049 iowrite32(new, hd->base);
50 break;
51 case 16:
Kuninori Morimotoe174d132009-08-18 07:00:20 +000052 new |= ioread16(hd->base) & ~hd->mask;
Paul Mundt8786c952007-08-20 13:03:41 +090053 iowrite16(new, hd->base);
54 break;
55 default:
Kuninori Morimotoe174d132009-08-18 07:00:20 +000056 new |= ioread8(hd->base) & ~hd->mask;
Paul Mundt8786c952007-08-20 13:03:41 +090057 iowrite8(new, hd->base);
58 break;
59 }
60}
Paul Mundt401e9092007-02-13 15:46:39 +090061
62static void heartbeat_timer(unsigned long data)
63{
64 struct heartbeat_data *hd = (struct heartbeat_data *)data;
65 static unsigned bit = 0, up = 1;
66
Paul Mundt8786c952007-08-20 13:03:41 +090067 heartbeat_toggle_bit(hd, bit, hd->flags & HEARTBEAT_INVERTED);
68
Takashi YOSHIIf6072892007-03-12 15:33:22 +090069 bit += up;
Paul Mundt8786c952007-08-20 13:03:41 +090070 if ((bit == 0) || (bit == (hd->nr_bits)-1))
Takashi YOSHIIf6072892007-03-12 15:33:22 +090071 up = -up;
Paul Mundt401e9092007-02-13 15:46:39 +090072
73 mod_timer(&hd->timer, jiffies + (110 - ((300 << FSHIFT) /
74 ((avenrun[0] / 5) + (3 << FSHIFT)))));
75}
76
77static int heartbeat_drv_probe(struct platform_device *pdev)
78{
79 struct resource *res;
80 struct heartbeat_data *hd;
Kuninori Morimotoe174d132009-08-18 07:00:20 +000081 int i;
Paul Mundt401e9092007-02-13 15:46:39 +090082
83 if (unlikely(pdev->num_resources != 1)) {
84 dev_err(&pdev->dev, "invalid number of resources\n");
85 return -EINVAL;
86 }
87
88 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
89 if (unlikely(res == NULL)) {
90 dev_err(&pdev->dev, "invalid resource\n");
91 return -EINVAL;
92 }
93
Paul Mundt401e9092007-02-13 15:46:39 +090094 if (pdev->dev.platform_data) {
Paul Mundt8786c952007-08-20 13:03:41 +090095 hd = pdev->dev.platform_data;
Paul Mundt401e9092007-02-13 15:46:39 +090096 } else {
Paul Mundt8786c952007-08-20 13:03:41 +090097 hd = kzalloc(sizeof(struct heartbeat_data), GFP_KERNEL);
98 if (unlikely(!hd))
99 return -ENOMEM;
Paul Mundt401e9092007-02-13 15:46:39 +0900100 }
101
Paul Mundt10ab92d2010-01-15 12:08:31 +0900102 hd->base = ioremap_nocache(res->start, resource_size(res));
Roel Kluin1de83e92008-02-18 14:09:10 +0100103 if (unlikely(!hd->base)) {
Paul Mundt8786c952007-08-20 13:03:41 +0900104 dev_err(&pdev->dev, "ioremap failed\n");
105
106 if (!pdev->dev.platform_data)
107 kfree(hd);
108
109 return -ENXIO;
110 }
111
112 if (!hd->nr_bits) {
113 hd->bit_pos = default_bit_pos;
114 hd->nr_bits = ARRAY_SIZE(default_bit_pos);
115 }
116
Kuninori Morimotoe174d132009-08-18 07:00:20 +0000117 hd->mask = 0;
118 for (i = 0; i < hd->nr_bits; i++)
119 hd->mask |= (1 << hd->bit_pos[i]);
120
Paul Mundt10ab92d2010-01-15 12:08:31 +0900121 if (!hd->regsize) {
122 switch (res->flags & IORESOURCE_MEM_TYPE_MASK) {
123 case IORESOURCE_MEM_32BIT:
124 hd->regsize = 32;
125 break;
126 case IORESOURCE_MEM_16BIT:
127 hd->regsize = 16;
128 break;
129 case IORESOURCE_MEM_8BIT:
130 default:
131 hd->regsize = 8;
132 break;
133 }
134 }
Paul Mundt401e9092007-02-13 15:46:39 +0900135
136 setup_timer(&hd->timer, heartbeat_timer, (unsigned long)hd);
137 platform_set_drvdata(pdev, hd);
138
139 return mod_timer(&hd->timer, jiffies + 1);
140}
141
Paul Mundt401e9092007-02-13 15:46:39 +0900142static struct platform_driver heartbeat_driver = {
143 .probe = heartbeat_drv_probe,
Paul Mundt401e9092007-02-13 15:46:39 +0900144 .driver = {
Paul Gortmakere75438e2016-04-22 14:07:04 -0400145 .name = DRV_NAME,
146 .suppress_bind_attrs = true,
Paul Mundt401e9092007-02-13 15:46:39 +0900147 },
148};
149
150static int __init heartbeat_init(void)
151{
152 printk(KERN_NOTICE DRV_NAME ": version %s loaded\n", DRV_VERSION);
153 return platform_driver_register(&heartbeat_driver);
154}
Paul Gortmakere75438e2016-04-22 14:07:04 -0400155device_initcall(heartbeat_init);