google/oak: Initialize i2c bus timing register for TPM and external buck
BRANCH=none BUG=none TEST=build pass and boot to oak kernel Change-Id: Id2c3bbb70a1de54a56ee04ecda76178b1bdf1a4d Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Original-Commit-Id: 8641689e008c58e909606c225dddb81dc6457ae9 Original-Change-Id: I96ef8a36bc70594097e9df964934b7e3eca5d5f9 Original-Signed-off-by: jun.gao <jun.gao@mediatek.com> Original-Reviewed-on: https://chromium-review.googlesource.com/319031 Original-Commit-Ready: Yidi Lin <yidi.lin@mediatek.com> Original-Tested-by: Yidi Lin <yidi.lin@mediatek.com> Original-Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/13108 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
@@ -18,6 +18,7 @@
|
|||||||
#include <bootblock_common.h>
|
#include <bootblock_common.h>
|
||||||
#include <delay.h>
|
#include <delay.h>
|
||||||
#include <soc/gpio.h>
|
#include <soc/gpio.h>
|
||||||
|
#include <soc/i2c.h>
|
||||||
#include <soc/mt6391.h>
|
#include <soc/mt6391.h>
|
||||||
#include <soc/pericfg.h>
|
#include <soc/pericfg.h>
|
||||||
#include <soc/pinmux.h>
|
#include <soc/pinmux.h>
|
||||||
@@ -78,6 +79,9 @@ void bootblock_mainboard_init(void)
|
|||||||
/* set nor related GPIO */
|
/* set nor related GPIO */
|
||||||
nor_set_gpio_pinmux();
|
nor_set_gpio_pinmux();
|
||||||
|
|
||||||
|
/* Init i2c bus 2 Timing register for TPM */
|
||||||
|
mtk_i2c_bus_init(CONFIG_DRIVER_TPM_I2C_BUS);
|
||||||
|
|
||||||
mtk_spi_init(CONFIG_EC_GOOGLE_CHROMEEC_SPI_BUS, SPI_PAD1_MASK, 6*MHz);
|
mtk_spi_init(CONFIG_EC_GOOGLE_CHROMEEC_SPI_BUS, SPI_PAD1_MASK, 6*MHz);
|
||||||
|
|
||||||
setup_chromeos_gpios();
|
setup_chromeos_gpios();
|
||||||
|
@@ -23,6 +23,7 @@
|
|||||||
#include <elog.h>
|
#include <elog.h>
|
||||||
#include <gpio.h>
|
#include <gpio.h>
|
||||||
#include <soc/bl31_plat_params.h>
|
#include <soc/bl31_plat_params.h>
|
||||||
|
#include <soc/i2c.h>
|
||||||
#include <soc/mt6391.h>
|
#include <soc/mt6391.h>
|
||||||
#include <soc/mtcmos.h>
|
#include <soc/mtcmos.h>
|
||||||
#include <soc/pinmux.h>
|
#include <soc/pinmux.h>
|
||||||
@@ -53,6 +54,9 @@ static void register_da9212_to_bl31(void)
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
register_bl31_param(¶m_da9212.h);
|
register_bl31_param(¶m_da9212.h);
|
||||||
|
|
||||||
|
/* Init i2c bus Timing register for da9212 */
|
||||||
|
mtk_i2c_bus_init(param_da9212.i2c_bus);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -66,6 +70,9 @@ static void register_mt6311_to_bl31(void)
|
|||||||
.i2c_bus = 1,
|
.i2c_bus = 1,
|
||||||
};
|
};
|
||||||
register_bl31_param(¶m_mt6311.h);
|
register_bl31_param(¶m_mt6311.h);
|
||||||
|
|
||||||
|
/* Init i2c bus Timing register for mt6311 */
|
||||||
|
mtk_i2c_bus_init(param_mt6311.i2c_bus);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -119,6 +126,9 @@ static void configure_audio(void)
|
|||||||
mt6391_gpio_output(MT6391_KP_COL4, 1);
|
mt6391_gpio_output(MT6391_KP_COL4, 1);
|
||||||
mt6391_gpio_output(MT6391_KP_COL5, 1);
|
mt6391_gpio_output(MT6391_KP_COL5, 1);
|
||||||
|
|
||||||
|
/* Init i2c bus Timing register for audio codecs */
|
||||||
|
mtk_i2c_bus_init(0);
|
||||||
|
|
||||||
/* set I2S clock to 48KHz */
|
/* set I2S clock to 48KHz */
|
||||||
mt_pll_set_aud_div(48 * KHz);
|
mt_pll_set_aud_div(48 * KHz);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user