1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51#include <linux/device.h>
52#include <linux/irq.h>
53#include <linux/interrupt.h>
54#include <linux/io.h>
55#include <linux/list.h>
56#include <linux/mutex.h>
57#include <linux/of.h>
58#include <linux/of_platform.h>
59#include <linux/of_gpio.h>
60#include <linux/kernel.h>
61#include <linux/slab.h>
62#include <linux/fs.h>
63#include <linux/watchdog.h>
64#include <linux/miscdevice.h>
65#include <linux/uaccess.h>
66#include <linux/module.h>
67#include <asm/div64.h>
68#include <asm/mpc52xx.h>
69
70MODULE_DESCRIPTION("Freescale MPC52xx gpt driver");
71MODULE_AUTHOR("Sascha Hauer, Grant Likely, Albrecht Dreß");
72MODULE_LICENSE("GPL");
73
74
75
76
77
78
79
80
81
82
83
84
85struct mpc52xx_gpt_priv {
86 struct list_head list;
87 struct device *dev;
88 struct mpc52xx_gpt __iomem *regs;
89 raw_spinlock_t lock;
90 struct irq_domain *irqhost;
91 u32 ipb_freq;
92 u8 wdt_mode;
93
94#if defined(CONFIG_GPIOLIB)
95 struct gpio_chip gc;
96#endif
97};
98
99LIST_HEAD(mpc52xx_gpt_list);
100DEFINE_MUTEX(mpc52xx_gpt_list_mutex);
101
102#define MPC52xx_GPT_MODE_MS_MASK (0x07)
103#define MPC52xx_GPT_MODE_MS_IC (0x01)
104#define MPC52xx_GPT_MODE_MS_OC (0x02)
105#define MPC52xx_GPT_MODE_MS_PWM (0x03)
106#define MPC52xx_GPT_MODE_MS_GPIO (0x04)
107
108#define MPC52xx_GPT_MODE_GPIO_MASK (0x30)
109#define MPC52xx_GPT_MODE_GPIO_OUT_LOW (0x20)
110#define MPC52xx_GPT_MODE_GPIO_OUT_HIGH (0x30)
111
112#define MPC52xx_GPT_MODE_COUNTER_ENABLE (0x1000)
113#define MPC52xx_GPT_MODE_CONTINUOUS (0x0400)
114#define MPC52xx_GPT_MODE_OPEN_DRAIN (0x0200)
115#define MPC52xx_GPT_MODE_IRQ_EN (0x0100)
116#define MPC52xx_GPT_MODE_WDT_EN (0x8000)
117
118#define MPC52xx_GPT_MODE_ICT_MASK (0x030000)
119#define MPC52xx_GPT_MODE_ICT_RISING (0x010000)
120#define MPC52xx_GPT_MODE_ICT_FALLING (0x020000)
121#define MPC52xx_GPT_MODE_ICT_TOGGLE (0x030000)
122
123#define MPC52xx_GPT_MODE_WDT_PING (0xa5)
124
125#define MPC52xx_GPT_STATUS_IRQMASK (0x000f)
126
127#define MPC52xx_GPT_CAN_WDT (1 << 0)
128#define MPC52xx_GPT_IS_WDT (1 << 1)
129
130
131
132
133
134
135static void mpc52xx_gpt_irq_unmask(struct irq_data *d)
136{
137 struct mpc52xx_gpt_priv *gpt = irq_data_get_irq_chip_data(d);
138 unsigned long flags;
139
140 raw_spin_lock_irqsave(&gpt->lock, flags);
141 setbits32(&gpt->regs->mode, MPC52xx_GPT_MODE_IRQ_EN);
142 raw_spin_unlock_irqrestore(&gpt->lock, flags);
143}
144
145static void mpc52xx_gpt_irq_mask(struct irq_data *d)
146{
147 struct mpc52xx_gpt_priv *gpt = irq_data_get_irq_chip_data(d);
148 unsigned long flags;
149
150 raw_spin_lock_irqsave(&gpt->lock, flags);
151 clrbits32(&gpt->regs->mode, MPC52xx_GPT_MODE_IRQ_EN);
152 raw_spin_unlock_irqrestore(&gpt->lock, flags);
153}
154
155static void mpc52xx_gpt_irq_ack(struct irq_data *d)
156{
157 struct mpc52xx_gpt_priv *gpt = irq_data_get_irq_chip_data(d);
158
159 out_be32(&gpt->regs->status, MPC52xx_GPT_STATUS_IRQMASK);
160}
161
162static int mpc52xx_gpt_irq_set_type(struct irq_data *d, unsigned int flow_type)
163{
164 struct mpc52xx_gpt_priv *gpt = irq_data_get_irq_chip_data(d);
165 unsigned long flags;
166 u32 reg;
167
168 dev_dbg(gpt->dev, "%s: virq=%i type=%x\n", __func__, d->irq, flow_type);
169
170 raw_spin_lock_irqsave(&gpt->lock, flags);
171 reg = in_be32(&gpt->regs->mode) & ~MPC52xx_GPT_MODE_ICT_MASK;
172 if (flow_type & IRQF_TRIGGER_RISING)
173 reg |= MPC52xx_GPT_MODE_ICT_RISING;
174 if (flow_type & IRQF_TRIGGER_FALLING)
175 reg |= MPC52xx_GPT_MODE_ICT_FALLING;
176 out_be32(&gpt->regs->mode, reg);
177 raw_spin_unlock_irqrestore(&gpt->lock, flags);
178
179 return 0;
180}
181
182static struct irq_chip mpc52xx_gpt_irq_chip = {
183 .name = "MPC52xx GPT",
184 .irq_unmask = mpc52xx_gpt_irq_unmask,
185 .irq_mask = mpc52xx_gpt_irq_mask,
186 .irq_ack = mpc52xx_gpt_irq_ack,
187 .irq_set_type = mpc52xx_gpt_irq_set_type,
188};
189
190static void mpc52xx_gpt_irq_cascade(struct irq_desc *desc)
191{
192 struct mpc52xx_gpt_priv *gpt = irq_desc_get_handler_data(desc);
193 int sub_virq;
194 u32 status;
195
196 status = in_be32(&gpt->regs->status) & MPC52xx_GPT_STATUS_IRQMASK;
197 if (status) {
198 sub_virq = irq_linear_revmap(gpt->irqhost, 0);
199 generic_handle_irq(sub_virq);
200 }
201}
202
203static int mpc52xx_gpt_irq_map(struct irq_domain *h, unsigned int virq,
204 irq_hw_number_t hw)
205{
206 struct mpc52xx_gpt_priv *gpt = h->host_data;
207
208 dev_dbg(gpt->dev, "%s: h=%p, virq=%i\n", __func__, h, virq);
209 irq_set_chip_data(virq, gpt);
210 irq_set_chip_and_handler(virq, &mpc52xx_gpt_irq_chip, handle_edge_irq);
211
212 return 0;
213}
214
215static int mpc52xx_gpt_irq_xlate(struct irq_domain *h, struct device_node *ct,
216 const u32 *intspec, unsigned int intsize,
217 irq_hw_number_t *out_hwirq,
218 unsigned int *out_flags)
219{
220 struct mpc52xx_gpt_priv *gpt = h->host_data;
221
222 dev_dbg(gpt->dev, "%s: flags=%i\n", __func__, intspec[0]);
223
224 if ((intsize < 1) || (intspec[0] > 3)) {
225 dev_err(gpt->dev, "bad irq specifier in %pOF\n", ct);
226 return -EINVAL;
227 }
228
229 *out_hwirq = 0;
230 *out_flags = intspec[0];
231
232 return 0;
233}
234
235static const struct irq_domain_ops mpc52xx_gpt_irq_ops = {
236 .map = mpc52xx_gpt_irq_map,
237 .xlate = mpc52xx_gpt_irq_xlate,
238};
239
240static void
241mpc52xx_gpt_irq_setup(struct mpc52xx_gpt_priv *gpt, struct device_node *node)
242{
243 int cascade_virq;
244 unsigned long flags;
245 u32 mode;
246
247 cascade_virq = irq_of_parse_and_map(node, 0);
248 if (!cascade_virq)
249 return;
250
251 gpt->irqhost = irq_domain_add_linear(node, 1, &mpc52xx_gpt_irq_ops, gpt);
252 if (!gpt->irqhost) {
253 dev_err(gpt->dev, "irq_domain_add_linear() failed\n");
254 return;
255 }
256
257 irq_set_handler_data(cascade_virq, gpt);
258 irq_set_chained_handler(cascade_virq, mpc52xx_gpt_irq_cascade);
259
260
261
262
263 raw_spin_lock_irqsave(&gpt->lock, flags);
264 mode = in_be32(&gpt->regs->mode);
265 if ((mode & MPC52xx_GPT_MODE_MS_MASK) == 0)
266 out_be32(&gpt->regs->mode, mode | MPC52xx_GPT_MODE_MS_IC);
267 raw_spin_unlock_irqrestore(&gpt->lock, flags);
268
269 dev_dbg(gpt->dev, "%s() complete. virq=%i\n", __func__, cascade_virq);
270}
271
272
273
274
275
276#if defined(CONFIG_GPIOLIB)
277static int mpc52xx_gpt_gpio_get(struct gpio_chip *gc, unsigned int gpio)
278{
279 struct mpc52xx_gpt_priv *gpt = gpiochip_get_data(gc);
280
281 return (in_be32(&gpt->regs->status) >> 8) & 1;
282}
283
284static void
285mpc52xx_gpt_gpio_set(struct gpio_chip *gc, unsigned int gpio, int v)
286{
287 struct mpc52xx_gpt_priv *gpt = gpiochip_get_data(gc);
288 unsigned long flags;
289 u32 r;
290
291 dev_dbg(gpt->dev, "%s: gpio:%d v:%d\n", __func__, gpio, v);
292 r = v ? MPC52xx_GPT_MODE_GPIO_OUT_HIGH : MPC52xx_GPT_MODE_GPIO_OUT_LOW;
293
294 raw_spin_lock_irqsave(&gpt->lock, flags);
295 clrsetbits_be32(&gpt->regs->mode, MPC52xx_GPT_MODE_GPIO_MASK, r);
296 raw_spin_unlock_irqrestore(&gpt->lock, flags);
297}
298
299static int mpc52xx_gpt_gpio_dir_in(struct gpio_chip *gc, unsigned int gpio)
300{
301 struct mpc52xx_gpt_priv *gpt = gpiochip_get_data(gc);
302 unsigned long flags;
303
304 dev_dbg(gpt->dev, "%s: gpio:%d\n", __func__, gpio);
305
306 raw_spin_lock_irqsave(&gpt->lock, flags);
307 clrbits32(&gpt->regs->mode, MPC52xx_GPT_MODE_GPIO_MASK);
308 raw_spin_unlock_irqrestore(&gpt->lock, flags);
309
310 return 0;
311}
312
313static int
314mpc52xx_gpt_gpio_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
315{
316 mpc52xx_gpt_gpio_set(gc, gpio, val);
317 return 0;
318}
319
320static void
321mpc52xx_gpt_gpio_setup(struct mpc52xx_gpt_priv *gpt, struct device_node *node)
322{
323 int rc;
324
325
326
327 if (!of_find_property(node, "gpio-controller", NULL))
328 return;
329
330 gpt->gc.label = kasprintf(GFP_KERNEL, "%pOF", node);
331 if (!gpt->gc.label) {
332 dev_err(gpt->dev, "out of memory\n");
333 return;
334 }
335
336 gpt->gc.ngpio = 1;
337 gpt->gc.direction_input = mpc52xx_gpt_gpio_dir_in;
338 gpt->gc.direction_output = mpc52xx_gpt_gpio_dir_out;
339 gpt->gc.get = mpc52xx_gpt_gpio_get;
340 gpt->gc.set = mpc52xx_gpt_gpio_set;
341 gpt->gc.base = -1;
342 gpt->gc.of_node = node;
343
344
345 clrsetbits_be32(&gpt->regs->mode, MPC52xx_GPT_MODE_MS_MASK,
346 MPC52xx_GPT_MODE_MS_GPIO);
347
348 rc = gpiochip_add_data(&gpt->gc, gpt);
349 if (rc)
350 dev_err(gpt->dev, "gpiochip_add_data() failed; rc=%i\n", rc);
351
352 dev_dbg(gpt->dev, "%s() complete.\n", __func__);
353}
354#else
355static void
356mpc52xx_gpt_gpio_setup(struct mpc52xx_gpt_priv *p, struct device_node *np) { }
357#endif
358
359
360
361
362
363
364
365
366
367struct mpc52xx_gpt_priv *mpc52xx_gpt_from_irq(int irq)
368{
369 struct mpc52xx_gpt_priv *gpt;
370 struct list_head *pos;
371
372
373 mutex_lock(&mpc52xx_gpt_list_mutex);
374 list_for_each(pos, &mpc52xx_gpt_list) {
375 gpt = container_of(pos, struct mpc52xx_gpt_priv, list);
376 if (gpt->irqhost && irq == irq_linear_revmap(gpt->irqhost, 0)) {
377 mutex_unlock(&mpc52xx_gpt_list_mutex);
378 return gpt;
379 }
380 }
381 mutex_unlock(&mpc52xx_gpt_list_mutex);
382
383 return NULL;
384}
385EXPORT_SYMBOL(mpc52xx_gpt_from_irq);
386
387static int mpc52xx_gpt_do_start(struct mpc52xx_gpt_priv *gpt, u64 period,
388 int continuous, int as_wdt)
389{
390 u32 clear, set;
391 u64 clocks;
392 u32 prescale;
393 unsigned long flags;
394
395 clear = MPC52xx_GPT_MODE_MS_MASK | MPC52xx_GPT_MODE_CONTINUOUS;
396 set = MPC52xx_GPT_MODE_MS_GPIO | MPC52xx_GPT_MODE_COUNTER_ENABLE;
397 if (as_wdt) {
398 clear |= MPC52xx_GPT_MODE_IRQ_EN;
399 set |= MPC52xx_GPT_MODE_WDT_EN;
400 } else if (continuous)
401 set |= MPC52xx_GPT_MODE_CONTINUOUS;
402
403
404
405
406
407 clocks = period * (u64)gpt->ipb_freq;
408 do_div(clocks, 1000000000);
409
410
411 if (clocks > 0xffffffff)
412 return -EINVAL;
413
414
415
416
417
418
419
420
421
422
423
424
425
426 prescale = (clocks >> 16) + 1;
427 do_div(clocks, prescale);
428 if (clocks > 0xffff) {
429 pr_err("calculation error; prescale:%x clocks:%llx\n",
430 prescale, clocks);
431 return -EINVAL;
432 }
433
434
435 raw_spin_lock_irqsave(&gpt->lock, flags);
436 if (as_wdt)
437 gpt->wdt_mode |= MPC52xx_GPT_IS_WDT;
438 else if ((gpt->wdt_mode & MPC52xx_GPT_IS_WDT) != 0) {
439 raw_spin_unlock_irqrestore(&gpt->lock, flags);
440 return -EBUSY;
441 }
442 out_be32(&gpt->regs->count, prescale << 16 | clocks);
443 clrsetbits_be32(&gpt->regs->mode, clear, set);
444 raw_spin_unlock_irqrestore(&gpt->lock, flags);
445
446 return 0;
447}
448
449
450
451
452
453
454
455
456
457int mpc52xx_gpt_start_timer(struct mpc52xx_gpt_priv *gpt, u64 period,
458 int continuous)
459{
460 return mpc52xx_gpt_do_start(gpt, period, continuous, 0);
461}
462EXPORT_SYMBOL(mpc52xx_gpt_start_timer);
463
464
465
466
467
468
469
470int mpc52xx_gpt_stop_timer(struct mpc52xx_gpt_priv *gpt)
471{
472 unsigned long flags;
473
474
475 raw_spin_lock_irqsave(&gpt->lock, flags);
476 if ((gpt->wdt_mode & MPC52xx_GPT_IS_WDT) != 0) {
477 raw_spin_unlock_irqrestore(&gpt->lock, flags);
478 return -EBUSY;
479 }
480
481 clrbits32(&gpt->regs->mode, MPC52xx_GPT_MODE_COUNTER_ENABLE);
482 raw_spin_unlock_irqrestore(&gpt->lock, flags);
483 return 0;
484}
485EXPORT_SYMBOL(mpc52xx_gpt_stop_timer);
486
487
488
489
490
491
492
493u64 mpc52xx_gpt_timer_period(struct mpc52xx_gpt_priv *gpt)
494{
495 u64 period;
496 u64 prescale;
497 unsigned long flags;
498
499 raw_spin_lock_irqsave(&gpt->lock, flags);
500 period = in_be32(&gpt->regs->count);
501 raw_spin_unlock_irqrestore(&gpt->lock, flags);
502
503 prescale = period >> 16;
504 period &= 0xffff;
505 if (prescale == 0)
506 prescale = 0x10000;
507 period = period * prescale * 1000000000ULL;
508 do_div(period, (u64)gpt->ipb_freq);
509 return period;
510}
511EXPORT_SYMBOL(mpc52xx_gpt_timer_period);
512
513#if defined(CONFIG_MPC5200_WDT)
514
515
516
517
518#define WDT_IDENTITY "mpc52xx watchdog on GPT0"
519
520
521static unsigned long wdt_is_active;
522
523
524static struct mpc52xx_gpt_priv *mpc52xx_gpt_wdt;
525
526
527static inline void mpc52xx_gpt_wdt_ping(struct mpc52xx_gpt_priv *gpt_wdt)
528{
529 unsigned long flags;
530
531 raw_spin_lock_irqsave(&gpt_wdt->lock, flags);
532 out_8((u8 *) &gpt_wdt->regs->mode, MPC52xx_GPT_MODE_WDT_PING);
533 raw_spin_unlock_irqrestore(&gpt_wdt->lock, flags);
534}
535
536
537static ssize_t mpc52xx_wdt_write(struct file *file, const char __user *data,
538 size_t len, loff_t *ppos)
539{
540 struct mpc52xx_gpt_priv *gpt_wdt = file->private_data;
541 mpc52xx_gpt_wdt_ping(gpt_wdt);
542 return 0;
543}
544
545static const struct watchdog_info mpc5200_wdt_info = {
546 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
547 .identity = WDT_IDENTITY,
548};
549
550static long mpc52xx_wdt_ioctl(struct file *file, unsigned int cmd,
551 unsigned long arg)
552{
553 struct mpc52xx_gpt_priv *gpt_wdt = file->private_data;
554 int __user *data = (int __user *)arg;
555 int timeout;
556 u64 real_timeout;
557 int ret = 0;
558
559 switch (cmd) {
560 case WDIOC_GETSUPPORT:
561 ret = copy_to_user(data, &mpc5200_wdt_info,
562 sizeof(mpc5200_wdt_info));
563 if (ret)
564 ret = -EFAULT;
565 break;
566
567 case WDIOC_GETSTATUS:
568 case WDIOC_GETBOOTSTATUS:
569 ret = put_user(0, data);
570 break;
571
572 case WDIOC_KEEPALIVE:
573 mpc52xx_gpt_wdt_ping(gpt_wdt);
574 break;
575
576 case WDIOC_SETTIMEOUT:
577 ret = get_user(timeout, data);
578 if (ret)
579 break;
580 real_timeout = (u64) timeout * 1000000000ULL;
581 ret = mpc52xx_gpt_do_start(gpt_wdt, real_timeout, 0, 1);
582 if (ret)
583 break;
584
585 fallthrough;
586
587 case WDIOC_GETTIMEOUT:
588
589
590
591
592
593
594 real_timeout =
595 mpc52xx_gpt_timer_period(gpt_wdt) + 500000000ULL;
596 do_div(real_timeout, 1000000000ULL);
597 timeout = (int) real_timeout;
598 ret = put_user(timeout, data);
599 break;
600
601 default:
602 ret = -ENOTTY;
603 }
604 return ret;
605}
606
607static int mpc52xx_wdt_open(struct inode *inode, struct file *file)
608{
609 int ret;
610
611
612 if (!mpc52xx_gpt_wdt)
613 return -ENODEV;
614
615
616 if (test_and_set_bit(0, &wdt_is_active))
617 return -EBUSY;
618
619
620 ret = mpc52xx_gpt_do_start(mpc52xx_gpt_wdt, 30ULL * 1000000000ULL,
621 0, 1);
622 if (ret) {
623 clear_bit(0, &wdt_is_active);
624 return ret;
625 }
626
627 file->private_data = mpc52xx_gpt_wdt;
628 return stream_open(inode, file);
629}
630
631static int mpc52xx_wdt_release(struct inode *inode, struct file *file)
632{
633
634#if !defined(CONFIG_WATCHDOG_NOWAYOUT)
635 struct mpc52xx_gpt_priv *gpt_wdt = file->private_data;
636 unsigned long flags;
637
638 raw_spin_lock_irqsave(&gpt_wdt->lock, flags);
639 clrbits32(&gpt_wdt->regs->mode,
640 MPC52xx_GPT_MODE_COUNTER_ENABLE | MPC52xx_GPT_MODE_WDT_EN);
641 gpt_wdt->wdt_mode &= ~MPC52xx_GPT_IS_WDT;
642 raw_spin_unlock_irqrestore(&gpt_wdt->lock, flags);
643#endif
644 clear_bit(0, &wdt_is_active);
645 return 0;
646}
647
648
649static const struct file_operations mpc52xx_wdt_fops = {
650 .owner = THIS_MODULE,
651 .llseek = no_llseek,
652 .write = mpc52xx_wdt_write,
653 .unlocked_ioctl = mpc52xx_wdt_ioctl,
654 .compat_ioctl = compat_ptr_ioctl,
655 .open = mpc52xx_wdt_open,
656 .release = mpc52xx_wdt_release,
657};
658
659static struct miscdevice mpc52xx_wdt_miscdev = {
660 .minor = WATCHDOG_MINOR,
661 .name = "watchdog",
662 .fops = &mpc52xx_wdt_fops,
663};
664
665static int mpc52xx_gpt_wdt_init(void)
666{
667 int err;
668
669
670 err = misc_register(&mpc52xx_wdt_miscdev);
671 if (err)
672 pr_err("%s: cannot register watchdog device\n", WDT_IDENTITY);
673 else
674 pr_info("%s: watchdog device registered\n", WDT_IDENTITY);
675 return err;
676}
677
678static int mpc52xx_gpt_wdt_setup(struct mpc52xx_gpt_priv *gpt,
679 const u32 *period)
680{
681 u64 real_timeout;
682
683
684 mpc52xx_gpt_wdt = gpt;
685
686
687 if (!period || *period == 0)
688 return 0;
689
690 real_timeout = (u64) *period * 1000000000ULL;
691 if (mpc52xx_gpt_do_start(gpt, real_timeout, 0, 1))
692 dev_warn(gpt->dev, "starting as wdt failed\n");
693 else
694 dev_info(gpt->dev, "watchdog set to %us timeout\n", *period);
695 return 0;
696}
697
698#else
699
700static int mpc52xx_gpt_wdt_init(void)
701{
702 return 0;
703}
704
705static inline int mpc52xx_gpt_wdt_setup(struct mpc52xx_gpt_priv *gpt,
706 const u32 *period)
707{
708 return 0;
709}
710
711#endif
712
713
714
715
716static int mpc52xx_gpt_probe(struct platform_device *ofdev)
717{
718 struct mpc52xx_gpt_priv *gpt;
719
720 gpt = devm_kzalloc(&ofdev->dev, sizeof *gpt, GFP_KERNEL);
721 if (!gpt)
722 return -ENOMEM;
723
724 raw_spin_lock_init(&gpt->lock);
725 gpt->dev = &ofdev->dev;
726 gpt->ipb_freq = mpc5xxx_get_bus_frequency(ofdev->dev.of_node);
727 gpt->regs = of_iomap(ofdev->dev.of_node, 0);
728 if (!gpt->regs)
729 return -ENOMEM;
730
731 dev_set_drvdata(&ofdev->dev, gpt);
732
733 mpc52xx_gpt_gpio_setup(gpt, ofdev->dev.of_node);
734 mpc52xx_gpt_irq_setup(gpt, ofdev->dev.of_node);
735
736 mutex_lock(&mpc52xx_gpt_list_mutex);
737 list_add(&gpt->list, &mpc52xx_gpt_list);
738 mutex_unlock(&mpc52xx_gpt_list_mutex);
739
740
741 if (of_get_property(ofdev->dev.of_node, "fsl,has-wdt", NULL) ||
742 of_get_property(ofdev->dev.of_node, "has-wdt", NULL)) {
743 const u32 *on_boot_wdt;
744
745 gpt->wdt_mode = MPC52xx_GPT_CAN_WDT;
746 on_boot_wdt = of_get_property(ofdev->dev.of_node,
747 "fsl,wdt-on-boot", NULL);
748 if (on_boot_wdt) {
749 dev_info(gpt->dev, "used as watchdog\n");
750 gpt->wdt_mode |= MPC52xx_GPT_IS_WDT;
751 } else
752 dev_info(gpt->dev, "can function as watchdog\n");
753 mpc52xx_gpt_wdt_setup(gpt, on_boot_wdt);
754 }
755
756 return 0;
757}
758
759static int mpc52xx_gpt_remove(struct platform_device *ofdev)
760{
761 return -EBUSY;
762}
763
764static const struct of_device_id mpc52xx_gpt_match[] = {
765 { .compatible = "fsl,mpc5200-gpt", },
766
767
768 { .compatible = "fsl,mpc5200-gpt-gpio", },
769 { .compatible = "mpc5200-gpt", },
770 {}
771};
772
773static struct platform_driver mpc52xx_gpt_driver = {
774 .driver = {
775 .name = "mpc52xx-gpt",
776 .of_match_table = mpc52xx_gpt_match,
777 },
778 .probe = mpc52xx_gpt_probe,
779 .remove = mpc52xx_gpt_remove,
780};
781
782static int __init mpc52xx_gpt_init(void)
783{
784 return platform_driver_register(&mpc52xx_gpt_driver);
785}
786
787
788subsys_initcall(mpc52xx_gpt_init);
789device_initcall(mpc52xx_gpt_wdt_init);
790