diff options
Diffstat (limited to 'include/soc/sprd/serial_sprd.h')
| -rw-r--r-- | include/soc/sprd/serial_sprd.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/soc/sprd/serial_sprd.h b/include/soc/sprd/serial_sprd.h new file mode 100644 index 00000000..1bf11250 --- /dev/null +++ b/include/soc/sprd/serial_sprd.h @@ -0,0 +1,21 @@ +#ifndef __SERIAL_SPRD_H__ +#define __SERIAL_SPRD_H__ + +/* + * Spreadtrum Bluetooth host wake up type + */ +typedef enum bt_host_wakeup_type{ + BT_NO_WAKE_UP, + BT_RX_WAKE_UP, + BT_RTS_HIGH_WHEN_SLEEP, +}BT_HOST_WAKEUP_TYPE; + +/* + * Spreadtrum platform_data for serial + */ +struct serial_data{ + BT_HOST_WAKEUP_TYPE wakeup_type; + int clk; +}; + +#endif |
