public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Broken: U-Boot SPL 2016.01
@ 2016-01-14 21:29 Peter Kümmel
  2016-01-14 21:49 ` Tom Rini
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Kümmel @ 2016-01-14 21:29 UTC (permalink / raw)
  To: u-boot

In 2016.01 SPL is broken on an omap board with DM3730:

U-Boot SPL 2016.01-00076-g72128b2 (Jan 14 2016 - 22:07:33)
wrong hwadapnr: 1075903588


The error message comes from drivers/i2c/omap24xx_i2c.c:


static struct i2c *omap24_get_base(struct i2c_adapter *adap)
{
	switch (adap->hwadapnr) {
	case 0:
		return (struct i2c *)I2C_BASE1;
		break;
	case 1:
		return (struct i2c *)I2C_BASE2;
		break;
#if (I2C_BUS_MAX > 2)
	case 2:
		return (struct i2c *)I2C_BASE3;
		break;
#if (I2C_BUS_MAX > 3)
	case 3:
		return (struct i2c *)I2C_BASE4;
		break;
#if (I2C_BUS_MAX > 4)
	case 4:
		return (struct i2c *)I2C_BASE5;
		break;
#endif
#endif
#endif
	default:
		printf("wrong hwadapnr: %d\n", adap->hwadapnr);
		break;
	}
	return NULL;
}



Has anything changed in the I2C configuration for SPL?

Peter

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-01-15 14:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-14 21:29 [U-Boot] Broken: U-Boot SPL 2016.01 Peter Kümmel
2016-01-14 21:49 ` Tom Rini
2016-01-14 23:32   ` Peter Kümmel
2016-01-15 14:53     ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox