mb/google/{herobrine,peach_pit,trogdor}: Use {read,write}32p()

Change-Id: I2e1978f20b085f609cbeb0907374383f2d11fbf0
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/70474
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes Haouas 2022-12-08 08:53:19 +01:00 committed by Felix Held
parent 60803c12fc
commit ca20fc3c6d
3 changed files with 6 additions and 6 deletions

View File

@ -38,9 +38,9 @@ static void setup_usb(void)
static void configure_sdhci(void)
{
/* Program eMMC drive strength to 16/10/10 mA */
write32((void *)SDC1_TLMM_CFG_ADDR, 0x9FE4);
write32p(SDC1_TLMM_CFG_ADDR, 0x9FE4);
/* Program SD card drive strength to 16/10/10 mA */
write32((void *)SDC2_TLMM_CFG_ADDR, 0x1FE4);
write32p(SDC2_TLMM_CFG_ADDR, 0x1FE4);
}
static void qi2s_configure_gpios(void)

View File

@ -401,8 +401,8 @@ static void mainboard_init(struct device *dev)
* been found to come up as 3. This means FIMD SYSMMU is on by
* default on Exynos5420. For now we are disabling FIMD SYSMMU.
*/
write32((void *)0x14640000, 0x0);
write32((void *)0x14680000, 0x0);
write32p(0x14640000, 0x0);
write32p(0x14680000, 0x0);
lcd_vdd();

View File

@ -280,9 +280,9 @@ static void display_startup(void)
static void configure_sdhci(void)
{
/* Program eMMC drive strength to 16/16/16 mA */
write32((void *)SDC1_TLMM_CFG_ADDR, 0x9FFF);
write32p(SDC1_TLMM_CFG_ADDR, 0x9FFF);
/* Program SD card drive strength to 16/10/10 mA */
write32((void *)SDC2_TLMM_CFG_ADDR, 0x1FE4);
write32p(SDC2_TLMM_CFG_ADDR, 0x1FE4);
}
static void mainboard_init(struct device *dev)