mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
rk3399: add GPIO register definitions for SDMMC0
The code needs to be able to set drive strength for the pins used for SDMMC0 interface. This patch adds the definitions for the two registers, as per page 378 of the RK3399 TRM Part 1. Instead of calculation of the reserved range size just use known offsets of the registers included in the structure. BRANCH=none BUG=chrome-os-partner:53257 TEST=with the upcoming driver change it is possible to boot chrome OS on Gru from various micro SD cards which were failing before. Change-Id: Ibe7584e77b446435ab1264dcf8fc8bfe0c50438e Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/344490 Reviewed-by: Patrick Georgi <pgeorgi@chromium.org>
This commit is contained in:
parent
5d4e3a8aa4
commit
ccab797a80
1 changed files with 4 additions and 1 deletions
|
@ -149,7 +149,10 @@ struct rk3399_grf_regs {
|
|||
u32 gpio2_sr[3][4];
|
||||
u32 reserved23[4];
|
||||
u32 gpio2_smt[3][4];
|
||||
u32 reserved24[0x44];
|
||||
u32 reserved24[(0xe130 - 0xe0ec)/4 - 1];
|
||||
u32 gpio4b_e01;
|
||||
u32 gpio4b_e2;
|
||||
u32 reserved24a[(0xe200 - 0xe134)/4 - 1];
|
||||
u32 soc_con0;
|
||||
u32 soc_con1;
|
||||
u32 soc_con2;
|
||||
|
|
Loading…
Add table
Reference in a new issue