|
@@ -186,6 +186,8 @@ struct smsclient_params_t {
|
|
|
#define MSG_SW_RELOAD_EXEC_REQ 704
|
|
|
#define MSG_SW_RELOAD_EXEC_RES 705
|
|
|
#define MSG_SMS_SPI_INT_LINE_SET_REQ 710
|
|
|
+#define MSG_SMS_GPIO_CONFIG_EX_REQ 712
|
|
|
+#define MSG_SMS_GPIO_CONFIG_EX_RES 713
|
|
|
#define MSG_SMS_ISDBT_TUNE_REQ 776
|
|
|
#define MSG_SMS_ISDBT_TUNE_RES 777
|
|
|
|
|
@@ -341,6 +343,32 @@ struct SmsMsgStatisticsInfo_ST {
|
|
|
};
|
|
|
|
|
|
|
|
|
+struct smscore_gpio_config {
|
|
|
+#define SMS_GPIO_DIRECTION_INPUT 0
|
|
|
+#define SMS_GPIO_DIRECTION_OUTPUT 1
|
|
|
+ u8 direction;
|
|
|
+
|
|
|
+#define SMS_GPIO_PULLUPDOWN_NONE 0
|
|
|
+#define SMS_GPIO_PULLUPDOWN_PULLDOWN 1
|
|
|
+#define SMS_GPIO_PULLUPDOWN_PULLUP 2
|
|
|
+#define SMS_GPIO_PULLUPDOWN_KEEPER 3
|
|
|
+ u8 pullupdown;
|
|
|
+
|
|
|
+#define SMS_GPIO_INPUTCHARACTERISTICS_NORMAL 0
|
|
|
+#define SMS_GPIO_INPUTCHARACTERISTICS_SCHMITT 1
|
|
|
+ u8 inputcharacteristics;
|
|
|
+
|
|
|
+#define SMS_GPIO_OUTPUTSLEWRATE_FAST 0
|
|
|
+#define SMS_GPIO_OUTPUTSLEWRATE_SLOW 1
|
|
|
+ u8 outputslewrate;
|
|
|
+
|
|
|
+#define SMS_GPIO_OUTPUTDRIVING_4mA 0
|
|
|
+#define SMS_GPIO_OUTPUTDRIVING_8mA 1
|
|
|
+#define SMS_GPIO_OUTPUTDRIVING_12mA 2
|
|
|
+#define SMS_GPIO_OUTPUTDRIVING_16mA 3
|
|
|
+ u8 outputdriving;
|
|
|
+};
|
|
|
+
|
|
|
struct smsdvb_client_t {
|
|
|
struct list_head entry;
|
|
|
|
|
@@ -396,6 +424,10 @@ struct smscore_buffer_t *smscore_getbuffer(struct smscore_device_t *coredev);
|
|
|
extern void smscore_putbuffer(struct smscore_device_t *coredev,
|
|
|
struct smscore_buffer_t *cb);
|
|
|
|
|
|
+int smscore_configure_gpio(struct smscore_device_t *coredev, u32 pin,
|
|
|
+ struct smscore_gpio_config *pinconfig);
|
|
|
+int smscore_set_gpio(struct smscore_device_t *coredev, u32 pin, int level);
|
|
|
+
|
|
|
void smscore_set_board_id(struct smscore_device_t *core, int id);
|
|
|
int smscore_get_board_id(struct smscore_device_t *core);
|
|
|
|