diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-11-16 16:01:58 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-29 14:53:40 -0500 |
commit | 76052bc8688c84628865740e2f82ab41d71a977b (patch) | |
tree | 4c9add782206671fea5999f6bcfb65bd1c8a93a1 /drivers/media/dvb/siano/smscoreapi.h | |
parent | c9455fbb159711ca7a2ee5a67f0e7ca43287bbd7 (diff) |
V4L/DVB (9734): sms1xxx: add functions to configure and set gpio
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/siano/smscoreapi.h')
-rw-r--r-- | drivers/media/dvb/siano/smscoreapi.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/drivers/media/dvb/siano/smscoreapi.h b/drivers/media/dvb/siano/smscoreapi.h index 8d973f726fb8..27b0c4139dc0 100644 --- a/drivers/media/dvb/siano/smscoreapi.h +++ b/drivers/media/dvb/siano/smscoreapi.h | |||
@@ -186,6 +186,8 @@ struct smsclient_params_t { | |||
186 | #define MSG_SW_RELOAD_EXEC_REQ 704 | 186 | #define MSG_SW_RELOAD_EXEC_REQ 704 |
187 | #define MSG_SW_RELOAD_EXEC_RES 705 | 187 | #define MSG_SW_RELOAD_EXEC_RES 705 |
188 | #define MSG_SMS_SPI_INT_LINE_SET_REQ 710 | 188 | #define MSG_SMS_SPI_INT_LINE_SET_REQ 710 |
189 | #define MSG_SMS_GPIO_CONFIG_EX_REQ 712 | ||
190 | #define MSG_SMS_GPIO_CONFIG_EX_RES 713 | ||
189 | #define MSG_SMS_ISDBT_TUNE_REQ 776 | 191 | #define MSG_SMS_ISDBT_TUNE_REQ 776 |
190 | #define MSG_SMS_ISDBT_TUNE_RES 777 | 192 | #define MSG_SMS_ISDBT_TUNE_RES 777 |
191 | 193 | ||
@@ -341,6 +343,32 @@ struct SmsMsgStatisticsInfo_ST { | |||
341 | }; | 343 | }; |
342 | 344 | ||
343 | 345 | ||
346 | struct smscore_gpio_config { | ||
347 | #define SMS_GPIO_DIRECTION_INPUT 0 | ||
348 | #define SMS_GPIO_DIRECTION_OUTPUT 1 | ||
349 | u8 direction; | ||
350 | |||
351 | #define SMS_GPIO_PULLUPDOWN_NONE 0 | ||
352 | #define SMS_GPIO_PULLUPDOWN_PULLDOWN 1 | ||
353 | #define SMS_GPIO_PULLUPDOWN_PULLUP 2 | ||
354 | #define SMS_GPIO_PULLUPDOWN_KEEPER 3 | ||
355 | u8 pullupdown; | ||
356 | |||
357 | #define SMS_GPIO_INPUTCHARACTERISTICS_NORMAL 0 | ||
358 | #define SMS_GPIO_INPUTCHARACTERISTICS_SCHMITT 1 | ||
359 | u8 inputcharacteristics; | ||
360 | |||
361 | #define SMS_GPIO_OUTPUTSLEWRATE_FAST 0 | ||
362 | #define SMS_GPIO_OUTPUTSLEWRATE_SLOW 1 | ||
363 | u8 outputslewrate; | ||
364 | |||
365 | #define SMS_GPIO_OUTPUTDRIVING_4mA 0 | ||
366 | #define SMS_GPIO_OUTPUTDRIVING_8mA 1 | ||
367 | #define SMS_GPIO_OUTPUTDRIVING_12mA 2 | ||
368 | #define SMS_GPIO_OUTPUTDRIVING_16mA 3 | ||
369 | u8 outputdriving; | ||
370 | }; | ||
371 | |||
344 | struct smsdvb_client_t { | 372 | struct smsdvb_client_t { |
345 | struct list_head entry; | 373 | struct list_head entry; |
346 | 374 | ||
@@ -396,6 +424,10 @@ struct smscore_buffer_t *smscore_getbuffer(struct smscore_device_t *coredev); | |||
396 | extern void smscore_putbuffer(struct smscore_device_t *coredev, | 424 | extern void smscore_putbuffer(struct smscore_device_t *coredev, |
397 | struct smscore_buffer_t *cb); | 425 | struct smscore_buffer_t *cb); |
398 | 426 | ||
427 | int smscore_configure_gpio(struct smscore_device_t *coredev, u32 pin, | ||
428 | struct smscore_gpio_config *pinconfig); | ||
429 | int smscore_set_gpio(struct smscore_device_t *coredev, u32 pin, int level); | ||
430 | |||
399 | void smscore_set_board_id(struct smscore_device_t *core, int id); | 431 | void smscore_set_board_id(struct smscore_device_t *core, int id); |
400 | int smscore_get_board_id(struct smscore_device_t *core); | 432 | int smscore_get_board_id(struct smscore_device_t *core); |
401 | 433 | ||