提交 2d7e9e9d 编写于 作者: L Lokesh Vutla 提交者: Tom Rini

board: ti: am571x-idk: Update pinmux using latest PMT

Update the board pinmux for AM571x-IDK board using latest PMT[1] and the
board files named am571x_idk_v1p3b_sr2p0 that were autogenerated on
23rd March, 2017 by "Ahmad Rashed <a-rashed@ti.com>" and
"Tom Johnson <thjohnson@ti.com>".

[1] https://dev.ti.com/pinmux/app.html#/default/Signed-off-by: NLokesh Vutla <lokeshvutla@ti.com>
上级 e79d2dc7
......@@ -643,8 +643,8 @@ void set_muxconf_regs(void)
void recalibrate_iodelay(void)
{
const struct pad_conf_entry *pconf;
const struct iodelay_cfg_entry *iod;
int pconf_sz, iod_sz;
const struct iodelay_cfg_entry *iod, *delta_iod;
int pconf_sz, iod_sz, delta_iod_sz = 0;
int ret;
if (board_is_am572x_idk()) {
......@@ -696,6 +696,9 @@ void recalibrate_iodelay(void)
if (am571x_idk_needs_lcd()) {
pconf = core_padconf_array_vout_am571x_idk;
pconf_sz = ARRAY_SIZE(core_padconf_array_vout_am571x_idk);
delta_iod = iodelay_cfg_array_am571x_idk_4port;
delta_iod_sz = ARRAY_SIZE(iodelay_cfg_array_am571x_idk_4port);
} else {
pconf = core_padconf_array_icss1eth_am571x_idk;
pconf_sz = ARRAY_SIZE(core_padconf_array_icss1eth_am571x_idk);
......@@ -705,6 +708,10 @@ void recalibrate_iodelay(void)
/* Setup IOdelay configuration */
ret = do_set_iodelay((*ctrl)->iodelay_config_base, iod, iod_sz);
if (delta_iod_sz)
ret = do_set_iodelay((*ctrl)->iodelay_config_base, delta_iod,
delta_iod_sz);
err:
/* Closeup.. remove isolation */
__recalibrate_iodelay_end(ret);
......
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册