mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
imx_lpi2c: Update lpi2c driver to support imx8
Add compatible string for i.MX8 and move imx_lpi2c.h from mx7ulp directory to u-boot include directory as a common header file. Signed-off-by: Ye Li <ye.li@nxp.com> Signed-off-by: Peng Fan <peng.fan@nxp.com> Reviewed-by: Heiko Schocher <hs@denx.de>
This commit is contained in:
parent
1612ff0dfb
commit
9b2ebcc060
2 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
#include <asm/arch/clock.h>
|
#include <asm/arch/clock.h>
|
||||||
#include <asm/arch/imx-regs.h>
|
#include <asm/arch/imx-regs.h>
|
||||||
#include <asm/arch/imx_lpi2c.h>
|
#include <imx_lpi2c.h>
|
||||||
#include <asm/arch/sys_proto.h>
|
#include <asm/arch/sys_proto.h>
|
||||||
#include <dm.h>
|
#include <dm.h>
|
||||||
#include <fdtdec.h>
|
#include <fdtdec.h>
|
||||||
|
@ -447,6 +447,7 @@ static const struct dm_i2c_ops imx_lpi2c_ops = {
|
||||||
|
|
||||||
static const struct udevice_id imx_lpi2c_ids[] = {
|
static const struct udevice_id imx_lpi2c_ids[] = {
|
||||||
{ .compatible = "fsl,imx7ulp-lpi2c", },
|
{ .compatible = "fsl,imx7ulp-lpi2c", },
|
||||||
|
{ .compatible = "fsl,imx8qm-lpi2c", },
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue