Message ID | 20160707152802.GR1041@n2100.armlinux.org.uk (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Thu, Jul 07, 2016 at 04:28:02PM +0100, Russell King - ARM Linux wrote: > So, if I were to do this, there wouldn't be any objection? > > An alternative would be to use the real hardware ID if it exists, add > a compatible to DT, and use of_device_is_compatible() in the driver > to discover if it's a zte device. Comparing to this, I think the "official" pseudo-ID approach is cleaner. I will send a patch to incorporate the suggested changes below. Thanks, Russell. Shawn > > 8<==== > Subject: [PATCH] amba: make ZTE pseudo-ID more "official" > > Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk> > --- > drivers/tty/serial/amba-pl011.c | 4 ++-- > include/linux/amba/bus.h | 5 +++++ > 2 files changed, 7 insertions(+), 2 deletions(-) > > diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c > index 77b05f5bf866..2dbe5776ac56 100644 > --- a/drivers/tty/serial/amba-pl011.c > +++ b/drivers/tty/serial/amba-pl011.c > @@ -2659,8 +2659,8 @@ static struct amba_id pl011_ids[] = { > .data = &vendor_st, > }, > { > - .id = 0xfefefe, > - .mask = 0xffffff, > + .id = AMBA_LINUX_ID(0x00, 0xf, 0xefe), > + .mask = 0x00ffffff, > .data = &vendor_zte, > }, > { 0, 0 }, > diff --git a/include/linux/amba/bus.h b/include/linux/amba/bus.h > index 3d8dcdd1aeae..dc29d504b4fc 100644 > --- a/include/linux/amba/bus.h > +++ b/include/linux/amba/bus.h > @@ -53,8 +53,13 @@ enum amba_vendor { > AMBA_VENDOR_ST = 0x80, > AMBA_VENDOR_QCOM = 0x51, > AMBA_VENDOR_LSI = 0xb6, > + AMBA_VENDOR_LINUX = 0xef, /* This value is not official */ > }; > > +#define AMBA_LINUX_ID(conf, rev, part) \ > + (((conf) & 0xff) << 24 | ((rev) & 0xf) << 20 | \ > + AMBA_VENDOR_LINUX << 12 | ((part) & 0xfff)) > + > extern struct bus_type amba_bustype; > > #define to_amba_device(d) container_of(d, struct amba_device, dev) > -- > 2.1.0 > > -- > RMK's Patch system: http://www.armlinux.org.uk/developer/patches/ > FTTC broadband for 0.8mile line: currently at 9.6Mbps down 400kbps up > according to speedtest.net. > > _______________________________________________ > linux-arm-kernel mailing list > linux-arm-kernel@lists.infradead.org > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c index 77b05f5bf866..2dbe5776ac56 100644 --- a/drivers/tty/serial/amba-pl011.c +++ b/drivers/tty/serial/amba-pl011.c @@ -2659,8 +2659,8 @@ static struct amba_id pl011_ids[] = { .data = &vendor_st, }, { - .id = 0xfefefe, - .mask = 0xffffff, + .id = AMBA_LINUX_ID(0x00, 0xf, 0xefe), + .mask = 0x00ffffff, .data = &vendor_zte, }, { 0, 0 }, diff --git a/include/linux/amba/bus.h b/include/linux/amba/bus.h index 3d8dcdd1aeae..dc29d504b4fc 100644 --- a/include/linux/amba/bus.h +++ b/include/linux/amba/bus.h @@ -53,8 +53,13 @@ enum amba_vendor { AMBA_VENDOR_ST = 0x80, AMBA_VENDOR_QCOM = 0x51, AMBA_VENDOR_LSI = 0xb6, + AMBA_VENDOR_LINUX = 0xef, /* This value is not official */ }; +#define AMBA_LINUX_ID(conf, rev, part) \ + (((conf) & 0xff) << 24 | ((rev) & 0xf) << 20 | \ + AMBA_VENDOR_LINUX << 12 | ((part) & 0xfff)) + extern struct bus_type amba_bustype; #define to_amba_device(d) container_of(d, struct amba_device, dev)