* [U-Boot] BayTrail I2C support @ 2016-03-11 17:33 Stefan Roese 2016-03-13 2:52 ` Simon Glass 0 siblings, 1 reply; 5+ messages in thread From: Stefan Roese @ 2016-03-11 17:33 UTC (permalink / raw) To: u-boot Hi Simon, Hi Bin, could you please let me know, what the status of I2C support for BayTrail in U-Boot is? Is this driver generic enough to handle BayTrail / Minnowboard MAX as well (I haven't looked in depth yet)? Or what needs to be done to get BayTrail supported here? Thanks, Stefan ^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] BayTrail I2C support 2016-03-11 17:33 [U-Boot] BayTrail I2C support Stefan Roese @ 2016-03-13 2:52 ` Simon Glass 2016-03-14 8:56 ` Bin Meng 0 siblings, 1 reply; 5+ messages in thread From: Simon Glass @ 2016-03-13 2:52 UTC (permalink / raw) To: u-boot Hi Stefan, On 11 March 2016 at 10:33, Stefan Roese <sr@denx.de> wrote: > Hi Simon, Hi Bin, > > could you please let me know, what the status of I2C support for > BayTrail in U-Boot is? Is this driver generic enough to handle > BayTrail / Minnowboard MAX as well (I haven't looked in depth yet)? > Or what needs to be done to get BayTrail supported here? There is a dummy driver but it does not work. It needs to be filled out with an implementation using the datasheet or perhaps looking at coreboot smbus code. Regards, Simon ^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] BayTrail I2C support 2016-03-13 2:52 ` Simon Glass @ 2016-03-14 8:56 ` Bin Meng 2016-03-14 12:30 ` Stefan Roese 0 siblings, 1 reply; 5+ messages in thread From: Bin Meng @ 2016-03-14 8:56 UTC (permalink / raw) To: u-boot Hi Stefan, On Sun, Mar 13, 2016 at 10:52 AM, Simon Glass <sjg@chromium.org> wrote: > Hi Stefan, > > On 11 March 2016 at 10:33, Stefan Roese <sr@denx.de> wrote: >> Hi Simon, Hi Bin, >> >> could you please let me know, what the status of I2C support for >> BayTrail in U-Boot is? Is this driver generic enough to handle >> BayTrail / Minnowboard MAX as well (I haven't looked in depth yet)? >> Or what needs to be done to get BayTrail supported here? > > There is a dummy driver but it does not work. It needs to be filled > out with an implementation using the datasheet or perhaps looking at > coreboot smbus code. > I guess Stefan is not looking for legacy SMBUS support, instead the SIO I2C device on device 24 on BayTrail. It is currently not supported. The IP used on BayTrail is from Synopsis Designware, and this I2C IP is also seen on Intel Quark. It is possible we can reuse U-Boot Synopsis I2C driver on Intel platform, with adaptations to PCI. Regards, Bin ^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] BayTrail I2C support 2016-03-14 8:56 ` Bin Meng @ 2016-03-14 12:30 ` Stefan Roese 2016-03-15 1:52 ` Bin Meng 0 siblings, 1 reply; 5+ messages in thread From: Stefan Roese @ 2016-03-14 12:30 UTC (permalink / raw) To: u-boot Hi Bin, On 14.03.2016 09:56, Bin Meng wrote: > On Sun, Mar 13, 2016 at 10:52 AM, Simon Glass <sjg@chromium.org> wrote: >> Hi Stefan, >> >> On 11 March 2016 at 10:33, Stefan Roese <sr@denx.de> wrote: >>> Hi Simon, Hi Bin, >>> >>> could you please let me know, what the status of I2C support for >>> BayTrail in U-Boot is? Is this driver generic enough to handle >>> BayTrail / Minnowboard MAX as well (I haven't looked in depth yet)? >>> Or what needs to be done to get BayTrail supported here? >> >> There is a dummy driver but it does not work. It needs to be filled >> out with an implementation using the datasheet or perhaps looking at >> coreboot smbus code. >> > > I guess Stefan is not looking for legacy SMBUS support, instead the > SIO I2C device on device 24 on BayTrail. I need to communicate with some of I2C devices connected to some of the I2C busses (e.g. bus #1) on this platform. > It is currently not > supported. The IP used on BayTrail is from Synopsis Designware, and > this I2C IP is also seen on Intel Quark. Is it documented somewhere, that these BayTrail I2C controllers are Synopsis Designware based / compatible? Could you please point me to this datasheet? > It is possible we can reuse > U-Boot Synopsis I2C driver on Intel platform, with adaptations to PCI. I can definitely look into this. Thanks for letting me know. Thanks, Stefan ^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] BayTrail I2C support 2016-03-14 12:30 ` Stefan Roese @ 2016-03-15 1:52 ` Bin Meng 0 siblings, 0 replies; 5+ messages in thread From: Bin Meng @ 2016-03-15 1:52 UTC (permalink / raw) To: u-boot Hi Stefan, On Mon, Mar 14, 2016 at 8:30 PM, Stefan Roese <sr@denx.de> wrote: > Hi Bin, > > On 14.03.2016 09:56, Bin Meng wrote: >> >> On Sun, Mar 13, 2016 at 10:52 AM, Simon Glass <sjg@chromium.org> wrote: >>> >>> Hi Stefan, >>> >>> On 11 March 2016 at 10:33, Stefan Roese <sr@denx.de> wrote: >>>> >>>> Hi Simon, Hi Bin, >>>> >>>> could you please let me know, what the status of I2C support for >>>> BayTrail in U-Boot is? Is this driver generic enough to handle >>>> BayTrail / Minnowboard MAX as well (I haven't looked in depth yet)? >>>> Or what needs to be done to get BayTrail supported here? >>> >>> >>> There is a dummy driver but it does not work. It needs to be filled >>> out with an implementation using the datasheet or perhaps looking at >>> coreboot smbus code. >>> >> >> I guess Stefan is not looking for legacy SMBUS support, instead the >> SIO I2C device on device 24 on BayTrail. > > > I need to communicate with some of I2C devices connected to some > of the I2C busses (e.g. bus #1) on this platform. > >> It is currently not >> supported. The IP used on BayTrail is from Synopsis Designware, and >> this I2C IP is also seen on Intel Quark. > > > Is it documented somewhere, that these BayTrail I2C controllers > are Synopsis Designware based / compatible? Could you please point > me to this datasheet? I don't think it is documented somewhere that the IP comes from Synopsis Designware. I noticed this when I was working on Intel Quark support, that lots of IPs on Intel Quark are from Synopsis (eg: we have the Synopsis Designware ethernet driver working on Intel Quark). > >> It is possible we can reuse >> U-Boot Synopsis I2C driver on Intel platform, with adaptations to PCI. > > > I can definitely look into this. Thanks for letting me know. Regards, Bin ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-03-15 1:52 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-03-11 17:33 [U-Boot] BayTrail I2C support Stefan Roese 2016-03-13 2:52 ` Simon Glass 2016-03-14 8:56 ` Bin Meng 2016-03-14 12:30 ` Stefan Roese 2016-03-15 1:52 ` Bin Meng
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox