Peter Meerwald | 2f73c392 | 2012-09-24 14:53:49 +0800 | [diff] [blame] | 1 | /* |
Ricardo Ribalda Delgado | 56a1740 | 2013-08-14 14:23:50 -0700 | [diff] [blame] | 2 | * PCA963X LED chip driver. |
Peter Meerwald | 2f73c392 | 2012-09-24 14:53:49 +0800 | [diff] [blame] | 3 | * |
| 4 | * Copyright 2012 bct electronic GmbH |
Ricardo Ribalda Delgado | 56a1740 | 2013-08-14 14:23:50 -0700 | [diff] [blame] | 5 | * Copyright 2013 Qtechnology A/S |
Peter Meerwald | 2f73c392 | 2012-09-24 14:53:49 +0800 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * version 2 as published by the Free Software Foundation. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, but |
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA |
| 19 | * 02110-1301 USA |
| 20 | */ |
| 21 | |
Ricardo Ribalda Delgado | 56a1740 | 2013-08-14 14:23:50 -0700 | [diff] [blame] | 22 | #ifndef __LINUX_PCA963X_H |
| 23 | #define __LINUX_PCA963X_H |
Peter Meerwald | 2f73c392 | 2012-09-24 14:53:49 +0800 | [diff] [blame] | 24 | #include <linux/leds.h> |
| 25 | |
Ricardo Ribalda Delgado | 56a1740 | 2013-08-14 14:23:50 -0700 | [diff] [blame] | 26 | enum pca963x_outdrv { |
| 27 | PCA963X_OPEN_DRAIN, |
| 28 | PCA963X_TOTEM_POLE, /* aka push-pull */ |
Peter Meerwald | 2f73c392 | 2012-09-24 14:53:49 +0800 | [diff] [blame] | 29 | }; |
| 30 | |
Ricardo Ribalda Delgado | 56a1740 | 2013-08-14 14:23:50 -0700 | [diff] [blame] | 31 | enum pca963x_blink_type { |
| 32 | PCA963X_SW_BLINK, |
| 33 | PCA963X_HW_BLINK, |
Mark A. Greer | 8465b01 | 2013-07-25 10:16:41 -0700 | [diff] [blame] | 34 | }; |
| 35 | |
Ricardo Ribalda Delgado | 56a1740 | 2013-08-14 14:23:50 -0700 | [diff] [blame] | 36 | struct pca963x_platform_data { |
Peter Meerwald | 2f73c392 | 2012-09-24 14:53:49 +0800 | [diff] [blame] | 37 | struct led_platform_data leds; |
Ricardo Ribalda Delgado | 56a1740 | 2013-08-14 14:23:50 -0700 | [diff] [blame] | 38 | enum pca963x_outdrv outdrv; |
| 39 | enum pca963x_blink_type blink_type; |
Peter Meerwald | 2f73c392 | 2012-09-24 14:53:49 +0800 | [diff] [blame] | 40 | }; |
| 41 | |
Ricardo Ribalda Delgado | 56a1740 | 2013-08-14 14:23:50 -0700 | [diff] [blame] | 42 | #endif /* __LINUX_PCA963X_H*/ |