fby3.5: rf: Modify ASIC GPIO default#357
Closed
DelphineChiu wants to merge 1 commit into
Closed
Conversation
Summary: - Modify ASIC GPIO default direction and value to follow EE release GPIO table. 2 GPIOA2 ASIC_PERST1_N Spare, Hi-Z. 3 GPIOA3 ASIC_FAIL_N Spare, Hi-Z. 4 GPIOA4 ASIC_EVENT_N This pin is for asynchronous notification for events that require the host’s attention. 5 GPIOA5 ASIC_DUALPORTEN_N Spare, Hi-Z 7 GPIOA7 ASIC_TAP_SEL Spare, Hi-Z 8 GPIOB0 ASIC_CPU_BOOT_0 Spare, Hi-Z 9 GPIOB1 ASIC_CPU_BOOT_1 Spare, Hi-Z 10 GPIOB2 ASIC_M_SCAN_PCAP_SEL Spare, Hi-Z 11 GPIOB3 ASIC_GPIO_R_0 Spare, Hi-Z 12 GPIOB4 ASIC_GPIO_R_1 Spare, Hi-Z Test plan: - Build code: Pass - Get GPIO: Pass Log: 1. Get GPIO list. - Before modify uart:~$ platform gpio list_all [2 ] ASIC_PERST1_N : PP | input (I) | 0(0) [3 ] ASIC_FAIL_N : PP | input (I) | 0(0) [4 ] ASIC_EVENT_N : OD | output(O) | 0(0) [5 ] ASIC_DUALPORTEN_N : PP | input (I) | 0(0) [7 ] ASIC_TAP_SEL : OD | input (O) | 0(0) [8 ] ASIC_CPU_BOOT_0 : PP | input (I) | 0(0) [9 ] ASIC_CPU_BOOT_1 : PP | input (I) | 0(0) [10 ] ASIC_M_SCAN_PCAP_SEL : PP | input (I) | 0(0) [11 ] ASIC_GPIO_R_0 : PP | input (I) | 1(1) [12 ] ASIC_GPIO_R_1 : PP | input (I) | 0(0) - After modify uart:~$ platform gpio list_all [2 ] ASIC_PERST1_N : OD | output(I) | 0(0) [3 ] ASIC_FAIL_N : OD | output(I) | 0(0) [4 ] ASIC_EVENT_N : OD | output(I) | 0(0) [5 ] ASIC_DUALPORTEN_N : OD | output(I) | 0(0) [7 ] ASIC_TAP_SEL : OD | output(I) | 0(0) [8 ] ASIC_CPU_BOOT_0 : OD | output(I) | 0(0) [9 ] ASIC_CPU_BOOT_1 : OD | output(I) | 0(0) [10 ] ASIC_M_SCAN_PCAP_SEL : OD | output(I) | 0(0) [11 ] ASIC_GPIO_R_0 : OD | output(I) | 1(1) [12 ] ASIC_GPIO_R_1 : OD | output(I) | 0(0)
Contributor
|
@GoldenBug has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary:
2 GPIOA2 ASIC_PERST1_N Spare, Hi-Z.
3 GPIOA3 ASIC_FAIL_N Spare, Hi-Z.
4 GPIOA4 ASIC_EVENT_N This pin is for asynchronous notification for events that require the host’s attention.
5 GPIOA5 ASIC_DUALPORTEN_N Spare, Hi-Z
7 GPIOA7 ASIC_TAP_SEL Spare, Hi-Z
8 GPIOB0 ASIC_CPU_BOOT_0 Spare, Hi-Z
9 GPIOB1 ASIC_CPU_BOOT_1 Spare, Hi-Z
10 GPIOB2 ASIC_M_SCAN_PCAP_SEL Spare, Hi-Z
11 GPIOB3 ASIC_GPIO_R_0 Spare, Hi-Z
12 GPIOB4 ASIC_GPIO_R_1 Spare, Hi-Z
Test plan:
Log:
Before modify
uart:~$ platform gpio list_all
[2 ] ASIC_PERST1_N : PP | input (I) | 0(0)
[3 ] ASIC_FAIL_N : PP | input (I) | 0(0)
[4 ] ASIC_EVENT_N : OD | output(O) | 0(0)
[5 ] ASIC_DUALPORTEN_N : PP | input (I) | 0(0)
[7 ] ASIC_TAP_SEL : OD | input (O) | 0(0)
[8 ] ASIC_CPU_BOOT_0 : PP | input (I) | 0(0)
[9 ] ASIC_CPU_BOOT_1 : PP | input (I) | 0(0)
[10 ] ASIC_M_SCAN_PCAP_SEL : PP | input (I) | 0(0)
[11 ] ASIC_GPIO_R_0 : PP | input (I) | 1(1)
[12 ] ASIC_GPIO_R_1 : PP | input (I) | 0(0)
After modify
uart:~$ platform gpio list_all
[2 ] ASIC_PERST1_N : OD | output(I) | 0(0)
[3 ] ASIC_FAIL_N : OD | output(I) | 0(0)
[4 ] ASIC_EVENT_N : OD | output(I) | 0(0)
[5 ] ASIC_DUALPORTEN_N : OD | output(I) | 0(0)
[7 ] ASIC_TAP_SEL : OD | output(I) | 0(0)
[8 ] ASIC_CPU_BOOT_0 : OD | output(I) | 0(0)
[9 ] ASIC_CPU_BOOT_1 : OD | output(I) | 0(0)
[10 ] ASIC_M_SCAN_PCAP_SEL : OD | output(I) | 0(0)
[11 ] ASIC_GPIO_R_0 : OD | output(I) | 1(1)
[12 ] ASIC_GPIO_R_1 : OD | output(I) | 0(0)