summaryrefslogtreecommitdiff
path: root/board/pdeval-stm32f072/PD_evaluation.md
diff options
context:
space:
mode:
authorVincent Palatin <vpalatin@chromium.org>2015-07-23 09:38:26 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-07-23 19:32:01 +0000
commita14029e6725dfb4fdcced46969c9652426c059a1 (patch)
treeae5cce196f7d07603f339e7eb4fc50c157d6f342 /board/pdeval-stm32f072/PD_evaluation.md
parent709676bfe1dacc42395d7ba658fcc23455e6d7a0 (diff)
downloadchrome-ec-a14029e6725dfb4fdcced46969c9652426c059a1.tar.gz
pdeval-stm32f072: update documentation
Add more details about adding a new source file. Add a reminder for pull-ups on the I2C bus. Decode PD state machine. Remove unused second I2C port configuration. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BRANCH=none BUG=none TEST=none Change-Id: If94a0f47921dac7d3fb9dc1e9879a7c69699d224 Reviewed-on: https://chromium-review.googlesource.com/287830 Reviewed-by: Alec Berg <alecaberg@chromium.org> Commit-Queue: Vincent Palatin <vpalatin@chromium.org> Trybot-Ready: Vincent Palatin <vpalatin@chromium.org> Tested-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'board/pdeval-stm32f072/PD_evaluation.md')
-rw-r--r--board/pdeval-stm32f072/PD_evaluation.md64
1 files changed, 61 insertions, 3 deletions
diff --git a/board/pdeval-stm32f072/PD_evaluation.md b/board/pdeval-stm32f072/PD_evaluation.md
index 4eac047ab8..b5d32e008f 100644
--- a/board/pdeval-stm32f072/PD_evaluation.md
+++ b/board/pdeval-stm32f072/PD_evaluation.md
@@ -26,9 +26,13 @@ Updating the code
### TCPC Communication code
-Please duplicate [driver/tcpm/tcpci.c](../../driver/tcpm/tcpci.c) into **driver/tcpm/<vendor>.c**.
+Please duplicate [driver/tcpm/tcpci.c](../../driver/tcpm/tcpci.c) into **driver/tcpm/##chip#name##.c**.
Then update the control logic through I2C there.
+In order for your new code to compile, you need to update [driver/build.mk](../../driver/build.mk) with the new file :
+`driver-$(CONFIG_USB_PD_TCPM_##CHIP#NAME##)+=tcpm/##chip#name##.o`
+then document the new `CONFIG_USB_PD_TCPM_` variable in the [include/config.h](../../include/config.h) file and define it in the board configuration in [board/pdeval-stm32f072/board.h](board.h).
+
### Board configuration
In [board/pdeval-stm32f072/board.h](board.h), you can update `CONFIG_USB_PD_PORT_COUNT` to the actual number of ports on your board.
@@ -37,6 +41,9 @@ You also need to create/delete the corresponding `PD_Cx` tasks in [board/pdeval-
By default, the firmware is using I2C1 with SCL/SDA on pins PB6 and PB7, running with a 100kHz clock.
To change the pins or speed, you need to edit `i2c_ports` in [board/pdeval-stm32f072/board.c](board.c), update `I2C_PORT_TCPC` in [board/pdeval-stm32f072/board.h](board.h) with the right controller number, and change the pin mux in [board/pdeval-stm32f072/gpio.inc](gpio.inc).
+The I2C bus needs pull-up resistors on SCL/SDA. If your setup doesn't have external pull-ups on those lines, you can activate the chip internal pull-ups (but they are a bit weak for I2C) by editing [board/pdeval-stm32f072/gpio.inc](gpio.inc) and updating the alternate mode configuration flags with `GPIO_PULL_UP` e.g. :
+`ALTERNATE(PIN_MASK(B, 0x00c0), 1, MODULE_I2C, GPIO_PULL_UP) /* I2C MASTER:PB6/7 */`
+
An interrupt line, PA1, is configured to be used for the TCPC to get the attention of the TCPM. The GPIO is configured to trigger an interrupt on the falling edge and will call `tcpc_alert()`, which must be implemented in **driver/tcpm/<vendor>.c**, and should determine the cause of the interrupt and take action. The GPIO can be changed in [board/pdeval-stm32f072/gpio.inc](gpio.inc).
Flashing and Running
@@ -69,11 +76,57 @@ EC command line commands
- `help` List all available EC console commands
- `vbus` Toggle VBUS on/off
- `pd <port> state` Print PD protocol state information
+- `i2cscan` Scan i2c bus for any responsive devices
+- `i2cxfer` Perform an i2c transaction
+
+On the console, you will the PD state machine transitioning through its states with traces like `C0 st5`.
+You can always the human readable name of the current state by doing `pd 0 state` returning something like :
+`Port C0 CC1, Ena - Role: SNK-UFP State: SNK_DISCOVERY, Flags: 0x0608`
+else the numbering of the state is defined in [include/usb_pd.h](../../include/us_pd.h) by the `PD_STATE_` constants.
+It should be by default :
+```
+[0] DISABLED
+[1] SUSPENDED
+[2] SNK_DISCONNECTED
+[3] SNK_DISCONNECTED_DEBOUNCE
+[4] SNK_HARD_RESET_RECOVER
+[5] SNK_DISCOVERY
+[6] SNK_REQUESTED
+[7] SNK_TRANSITION
+[8] SNK_READY
+[9] SNK_SWAP_INIT
+[10] SNK_SWAP_SNK_DISABLE
+[11] SNK_SWAP_SRC_DISABLE
+[12] SNK_SWAP_STANDBY
+[13] SNK_SWAP_COMPLETE
+[14] SRC_DISCONNECTED
+[15] SRC_DISCONNECTED_DEBOUNCE
+[16] SRC_ACCESSORY
+[17] SRC_HARD_RESET_RECOVER
+[18] SRC_STARTUP
+[19] SRC_DISCOVERY
+[20] SRC_NEGOCIATE
+[21] SRC_ACCEPTED
+[22] SRC_POWERED
+[23] SRC_TRANSITION
+[24] SRC_READY
+[25] SRC_GET_SINK_CAP
+[26] DR_SWAP
+[27] SRC_SWAP_INIT
+[28] SRC_SWAP_SNK_DISABLE
+[29] SRC_SWAP_SRC_DISABLE
+[30] SRC_SWAP_STANDBY
+[31] SOFT_RESET
+[32] HARD_RESET_SEND
+[33] HARD_RESET_EXECUTE
+[34] BIST_RX
+[35] BIST_TX
+```
Known Issues
------------
-1. This doc is not written yet ...
+1. This doc is not finished yet ...
2. You might need a ChromeOS chroot ...
@@ -85,7 +138,12 @@ Troubleshooting
1. Check that your USB mini-B cable is connected to the **USB ST-LINK** plug on the discovery board.
2. What color is the LD1 LED on the board ?
-2. You got black smoke
+1. On the I2C bus, SDA/SCL lines are staying always low
+
+ 1. You might be missing some pull-up resistors on the bus.
+ 1. Check the [Board configuration](#Board-configuration) section if you cannot add external pull-ups.
+
+1. You got black smoke
1. Time to buy a new one.