summaryrefslogtreecommitdiff
path: root/board/samus_pd/usb_pd_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'board/samus_pd/usb_pd_config.h')
-rw-r--r--board/samus_pd/usb_pd_config.h109
1 files changed, 109 insertions, 0 deletions
diff --git a/board/samus_pd/usb_pd_config.h b/board/samus_pd/usb_pd_config.h
new file mode 100644
index 0000000000..502ad3dfd9
--- /dev/null
+++ b/board/samus_pd/usb_pd_config.h
@@ -0,0 +1,109 @@
+/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/* USB Power delivery board configuration */
+
+#ifndef __USB_PD_CONFIG_H
+#define __USB_PD_CONFIG_H
+
+/* Timer selection for baseband PD communication */
+#define TIM_CLOCK_PD_TX 14
+#define TIM_CLOCK_PD_RX 1
+
+/* use the hardware accelerator for CRC */
+#define CONFIG_HW_CRC
+
+/* TX is using SPI1 on PB3-5 */
+#define SPI_REGS STM32_SPI1_REGS
+#define DMAC_SPI_TX STM32_DMAC_CH3
+
+static inline void spi_enable_clock(void)
+{
+ STM32_RCC_APB1ENR |= STM32_RCC_PB1_SPI2;
+}
+
+/* RX is using COMP1 triggering TIM1 CH1 */
+#define DMAC_TIM_RX STM32_DMAC_CH2
+#define TIM_CCR_IDX 1
+#define TIM_CCR_CS 1
+#define EXTI_COMP_MASK (1 << 21)
+#define IRQ_COMP STM32_IRQ_COMP
+/* triggers packet detection on comparator falling edge */
+#define EXTI_XTSR STM32_EXTI_FTSR
+
+/* the pins used for communication need to be hi-speed */
+static inline void pd_set_pins_speed(void)
+{
+ /* 40 MHz pin speed on SPI PB3/4/5 */
+ STM32_GPIO_OSPEEDR(GPIO_B) |= 0x00000FC0;
+ /* 40 MHz pin speed on TIM14_CH1 (PB1) */
+ STM32_GPIO_OSPEEDR(GPIO_B) |= 0x000000C0;
+}
+
+/* Drive the CC line from the TX block */
+static inline void pd_tx_enable(int polarity)
+{
+ gpio_set_level(GPIO_USB_C0_CC1_TX_EN, 1);
+ gpio_set_level(GPIO_USB_C0_CC2_TX_EN, 1);
+}
+
+/* Put the TX driver in Hi-Z state */
+static inline void pd_tx_disable(int polarity)
+{
+ gpio_set_level(GPIO_USB_C0_CC1_TX_EN, 0);
+ gpio_set_level(GPIO_USB_C0_CC2_TX_EN, 0);
+}
+
+/* we know the plug polarity, do the right configuration */
+static inline void pd_select_polarity(int polarity)
+{
+ /* use the right comparator non inverted input for COMP1 */
+ STM32_COMP_CSR = (STM32_COMP_CSR & ~STM32_COMP_CMP1INSEL_MASK)
+ | STM32_COMP_CMP1EN
+ | (polarity ? STM32_COMP_CMP1INSEL_INM4
+ : STM32_COMP_CMP1INSEL_INM6);
+}
+
+/* Initialize pins used for TX and put them in Hi-Z */
+static inline void pd_tx_init(void)
+{
+ gpio_config_module(MODULE_USB_PD, 1);
+}
+
+static inline void pd_set_host_mode(int enable)
+{
+ if (enable) {
+ /* High-Z is used for host mode. */
+ gpio_set_flags(GPIO_USB_C0_CC1_ODL, GPIO_INPUT);
+ gpio_set_flags(GPIO_USB_C0_CC2_ODL, GPIO_INPUT);
+ } else {
+ /* Pull low for device mode. */
+ gpio_set_flags(GPIO_USB_C0_CC1_ODL, GPIO_OUT_LOW);
+ gpio_set_flags(GPIO_USB_C0_CC2_ODL, GPIO_OUT_LOW);
+ }
+
+}
+
+static inline int pd_adc_read(int cc)
+{
+ if (cc == 0)
+ return adc_read_channel(ADC_C0_CC1_PD);
+ else
+ return adc_read_channel(ADC_C0_CC2_PD);
+}
+
+/* Standard-current DFP : no-connect voltage is 1.55V */
+#define PD_SRC_VNC 1550 /* mV */
+
+/* UFP-side : threshold for DFP connection detection */
+#define PD_SNK_VA 200 /* mV */
+
+/* start as a sink in case we have no other power supply/battery */
+#define PD_DEFAULT_STATE PD_STATE_SNK_DISCONNECTED
+
+/* delay necessary for the voltage transition on the power supply */
+#define PD_POWER_SUPPLY_TRANSITION_DELAY 50000 /* us */
+
+#endif /* __USB_PD_CONFIG_H */