2 * pps-gpio.c -- PPS client driver using GPIO
5 * Copyright (C) 2010 Ricardo Martins <rasm@fe.up.pt>
6 * Copyright (C) 2011 James Nuss <jamesnuss@nanometrics.ca>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #define PPS_GPIO_NAME "pps-gpio"
24 #define pr_fmt(fmt) PPS_GPIO_NAME ": " fmt
26 #include <linux/init.h>
27 #include <linux/kernel.h>
28 #include <linux/interrupt.h>
29 #include <linux/module.h>
30 #include <linux/platform_device.h>
31 #include <linux/slab.h>
32 #include <linux/pps_kernel.h>
33 #include <linux/pps-gpio.h>
34 #include <linux/gpio.h>
35 #include <linux/list.h>
37 /* Info for each registered platform device */
38 struct pps_gpio_device_data
{
39 int irq
; /* IRQ used as PPS source */
40 struct pps_device
*pps
; /* PPS source device */
41 struct pps_source_info info
; /* PPS source information */
42 const struct pps_gpio_platform_data
*pdata
;
46 * Report the PPS event
49 static irqreturn_t
pps_gpio_irq_handler(int irq
, void *data
)
51 const struct pps_gpio_device_data
*info
;
52 struct pps_event_time ts
;
55 /* Get the time stamp first */
60 rising_edge
= gpio_get_value(info
->pdata
->gpio_pin
);
61 if ((rising_edge
&& !info
->pdata
->assert_falling_edge
) ||
62 (!rising_edge
&& info
->pdata
->assert_falling_edge
))
63 pps_event(info
->pps
, &ts
, PPS_CAPTUREASSERT
, NULL
);
64 else if (info
->pdata
->capture_clear
&&
65 ((rising_edge
&& info
->pdata
->assert_falling_edge
) ||
66 (!rising_edge
&& !info
->pdata
->assert_falling_edge
)))
67 pps_event(info
->pps
, &ts
, PPS_CAPTURECLEAR
, NULL
);
72 static int pps_gpio_setup(struct platform_device
*pdev
)
75 const struct pps_gpio_platform_data
*pdata
= pdev
->dev
.platform_data
;
77 ret
= gpio_request(pdata
->gpio_pin
, pdata
->gpio_label
);
79 pr_warning("failed to request GPIO %u\n", pdata
->gpio_pin
);
83 ret
= gpio_direction_input(pdata
->gpio_pin
);
85 pr_warning("failed to set pin direction\n");
86 gpio_free(pdata
->gpio_pin
);
94 get_irqf_trigger_flags(const struct pps_gpio_platform_data
*pdata
)
96 unsigned long flags
= pdata
->assert_falling_edge
?
97 IRQF_TRIGGER_FALLING
: IRQF_TRIGGER_RISING
;
99 if (pdata
->capture_clear
) {
100 flags
|= ((flags
& IRQF_TRIGGER_RISING
) ?
101 IRQF_TRIGGER_FALLING
: IRQF_TRIGGER_RISING
);
107 static int pps_gpio_probe(struct platform_device
*pdev
)
109 struct pps_gpio_device_data
*data
;
113 int pps_default_params
;
114 const struct pps_gpio_platform_data
*pdata
= pdev
->dev
.platform_data
;
118 ret
= pps_gpio_setup(pdev
);
123 irq
= gpio_to_irq(pdata
->gpio_pin
);
125 pr_err("failed to map GPIO to IRQ: %d\n", irq
);
130 /* allocate space for device info */
131 data
= kzalloc(sizeof(struct pps_gpio_device_data
), GFP_KERNEL
);
137 /* initialize PPS specific parts of the bookkeeping data structure. */
138 data
->info
.mode
= PPS_CAPTUREASSERT
| PPS_OFFSETASSERT
|
139 PPS_ECHOASSERT
| PPS_CANWAIT
| PPS_TSFMT_TSPEC
;
140 if (pdata
->capture_clear
)
141 data
->info
.mode
|= PPS_CAPTURECLEAR
| PPS_OFFSETCLEAR
|
143 data
->info
.owner
= THIS_MODULE
;
144 snprintf(data
->info
.name
, PPS_MAX_NAME_LEN
- 1, "%s.%d",
145 pdev
->name
, pdev
->id
);
147 /* register PPS source */
148 pps_default_params
= PPS_CAPTUREASSERT
| PPS_OFFSETASSERT
;
149 if (pdata
->capture_clear
)
150 pps_default_params
|= PPS_CAPTURECLEAR
| PPS_OFFSETCLEAR
;
151 data
->pps
= pps_register_source(&data
->info
, pps_default_params
);
152 if (data
->pps
== NULL
) {
154 pr_err("failed to register IRQ %d as PPS source\n", irq
);
162 /* register IRQ interrupt handler */
163 ret
= request_irq(irq
, pps_gpio_irq_handler
,
164 get_irqf_trigger_flags(pdata
), data
->info
.name
, data
);
166 pps_unregister_source(data
->pps
);
168 pr_err("failed to acquire IRQ %d\n", irq
);
173 platform_set_drvdata(pdev
, data
);
174 dev_info(data
->pps
->dev
, "Registered IRQ %d as PPS source\n", irq
);
179 gpio_free(pdata
->gpio_pin
);
183 static int pps_gpio_remove(struct platform_device
*pdev
)
185 struct pps_gpio_device_data
*data
= platform_get_drvdata(pdev
);
186 const struct pps_gpio_platform_data
*pdata
= data
->pdata
;
188 platform_set_drvdata(pdev
, NULL
);
189 free_irq(data
->irq
, data
);
190 gpio_free(pdata
->gpio_pin
);
191 pps_unregister_source(data
->pps
);
192 pr_info("removed IRQ %d as PPS source\n", data
->irq
);
197 static struct platform_driver pps_gpio_driver
= {
198 .probe
= pps_gpio_probe
,
199 .remove
= __devexit_p(pps_gpio_remove
),
201 .name
= PPS_GPIO_NAME
,
206 static int __init
pps_gpio_init(void)
208 int ret
= platform_driver_register(&pps_gpio_driver
);
210 pr_err("failed to register platform driver\n");
214 static void __exit
pps_gpio_exit(void)
216 platform_driver_unregister(&pps_gpio_driver
);
217 pr_debug("unregistered platform driver\n");
220 module_init(pps_gpio_init
);
221 module_exit(pps_gpio_exit
);
223 MODULE_AUTHOR("Ricardo Martins <rasm@fe.up.pt>");
224 MODULE_AUTHOR("James Nuss <jamesnuss@nanometrics.ca>");
225 MODULE_DESCRIPTION("Use GPIO pin as PPS source");
226 MODULE_LICENSE("GPL");
227 MODULE_VERSION("1.0.0");