forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MIPS: ath79: add common GPIO buttons device
Almost all boards have one or more push buttons connected to GPIO lines. This patch adds common code to register a platform_device for them. The patch also adds support for the buttons on the PB44 board. Signed-off-by: Gabor Juhos <[email protected]> Signed-off-by: Imre Kaloz <[email protected]> Cc: [email protected] Cc: Luis R. Rodriguez <[email protected]> Cc: Cliff Holden <[email protected]> Cc: Kathy Giori <[email protected]> Patchwork: https://patchwork.linux-mips.org/patch/1954/ Signed-off-by: Ralf Baechle <[email protected]>
- Loading branch information
1 parent
858f763
commit 3f348c5
Showing
5 changed files
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* Atheros AR71XX/AR724X/AR913X GPIO button support | ||
* | ||
* Copyright (C) 2008-2010 Gabor Juhos <[email protected]> | ||
* Copyright (C) 2008 Imre Kaloz <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 as published | ||
* by the Free Software Foundation. | ||
*/ | ||
|
||
#include "linux/init.h" | ||
#include "linux/slab.h" | ||
#include <linux/platform_device.h> | ||
|
||
#include "dev-gpio-buttons.h" | ||
|
||
void __init ath79_register_gpio_keys_polled(int id, | ||
unsigned poll_interval, | ||
unsigned nbuttons, | ||
struct gpio_keys_button *buttons) | ||
{ | ||
struct platform_device *pdev; | ||
struct gpio_keys_platform_data pdata; | ||
struct gpio_keys_button *p; | ||
int err; | ||
|
||
p = kmalloc(nbuttons * sizeof(*p), GFP_KERNEL); | ||
if (!p) | ||
return; | ||
|
||
memcpy(p, buttons, nbuttons * sizeof(*p)); | ||
|
||
pdev = platform_device_alloc("gpio-keys-polled", id); | ||
if (!pdev) | ||
goto err_free_buttons; | ||
|
||
memset(&pdata, 0, sizeof(pdata)); | ||
pdata.poll_interval = poll_interval; | ||
pdata.nbuttons = nbuttons; | ||
pdata.buttons = p; | ||
|
||
err = platform_device_add_data(pdev, &pdata, sizeof(pdata)); | ||
if (err) | ||
goto err_put_pdev; | ||
|
||
err = platform_device_add(pdev); | ||
if (err) | ||
goto err_put_pdev; | ||
|
||
return; | ||
|
||
err_put_pdev: | ||
platform_device_put(pdev); | ||
|
||
err_free_buttons: | ||
kfree(p); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Atheros AR71XX/AR724X/AR913X GPIO button support | ||
* | ||
* Copyright (C) 2008-2010 Gabor Juhos <[email protected]> | ||
* Copyright (C) 2008 Imre Kaloz <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 as published | ||
* by the Free Software Foundation. | ||
*/ | ||
|
||
#ifndef _ATH79_DEV_GPIO_BUTTONS_H | ||
#define _ATH79_DEV_GPIO_BUTTONS_H | ||
|
||
#include <linux/input.h> | ||
#include <linux/gpio_keys.h> | ||
|
||
void ath79_register_gpio_keys_polled(int id, | ||
unsigned poll_interval, | ||
unsigned nbuttons, | ||
struct gpio_keys_button *buttons); | ||
|
||
#endif /* _ATH79_DEV_GPIO_BUTTONS_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters