[U-Boot] [PATCH] mx6sx: Add initial support for Samtec VIN|ING 2000 board
Christoph Fritz
chf.fritz at googlemail.com
Wed Nov 23 17:30:46 CET 2016
On Tue, 2016-11-22 at 16:22 +0100, Marek Vasut wrote:
> On 11/22/2016 03:48 PM, Christoph Fritz wrote:
[...]
> > diff --git a/board/samtec/vining2000/imximage.cfg b/board/samtec/vining2000/imximage.cfg
> > new file mode 100644
> > index 0000000..4133dda
> > --- /dev/null
> > +++ b/board/samtec/vining2000/imximage.cfg
> > @@ -0,0 +1,132 @@
> > +/*
> > + * Copyright (C) 2016 samtec automotive software & electronics gmbh
> > + *
> > + * SPDX-License-Identifier: GPL-2.0+
> > + */
> > +
> > +#define __ASSEMBLY__
> > +#include <config.h>
>
> Is this needed at all ?
yes
> > +{
> > + unsigned char offset, i, switch_num;
> > + u32 id;
> > + int ret;
> > +
> > + pmic_reg_read(p, PFUZE100_DEVICEID, &id);
> > + id = id & 0xf;
> > +
> > + if (id == 0) {
> > + switch_num = 6;
> > + offset = PFUZE100_SW1CMODE;
> > + } else if (id == 1) {
> > + switch_num = 4;
> > + offset = PFUZE100_SW2MODE;
> > + } else {
> > + printf("Not supported, id=%d\n", id);
> > + return -EINVAL;
> > + }
> > +
> > + ret = pmic_reg_write(p, PFUZE100_SW1ABMODE, mode);
>
> Why do you need to do this write ?
to init the PMIC mode to APS_PFM
[...]
> > +int board_phy_config(struct phy_device *phydev)
> > +{
> > + if (phydev->drv->config)
> > + phydev->drv->config(phydev);
>
> Is this really needed?
no
[...]
Thanks,
I'll reroll this patch.
More information about the U-Boot
mailing list