Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1616897
| From | Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface |
| Date | 2017-04-05 14:50 +0200 |
| Message-ID | <tsSxP-2F7-5@gated-at.bofh.it> (permalink) |
| References | <tpzBo-66r-9@gated-at.bofh.it> <tpzBp-66r-47@gated-at.bofh.it> <tpOqL-f2-49@gated-at.bofh.it> <tq0BA-A0-33@gated-at.bofh.it> <tsQZ4-1SD-15@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Wed, Apr 05, 2017 at 11:58:41AM +0100, Russell King - ARM Linux wrote:
> On Tue, Mar 28, 2017 at 03:45:43PM +0100, Lorenzo Pieralisi wrote:
> > On Mon, Mar 27, 2017 at 08:41:10PM -0500, Bjorn Helgaas wrote:
> > > On Mon, Mar 27, 2017 at 10:49:30AM +0100, Lorenzo Pieralisi wrote:
> > > > diff --git a/arch/x86/include/asm/io.h b/arch/x86/include/asm/io.h
> > > > index 7afb0e2..50b292f 100644
> > > > --- a/arch/x86/include/asm/io.h
> > > > +++ b/arch/x86/include/asm/io.h
> > > > @@ -171,6 +171,7 @@ static inline unsigned int isa_virt_to_bus(volatile void *address)
> > > > extern void __iomem *ioremap_nocache(resource_size_t offset, unsigned long size);
> > > > extern void __iomem *ioremap_uc(resource_size_t offset, unsigned long size);
> > > > #define ioremap_uc ioremap_uc
> > > > +#define ioremap_nopost ioremap_nocache
> > >
> > > These are all the same as the default from asm-generic.h. Do we really
> > > need these definitions in alpha, avr32, frv, ia64, x86?
> >
> > Those arches do not include asm-generic.h (I suppose for a good reason)
> > but a definition is needed anyway if we want code using ioremap_nopost()
> > to be unconditional. This is one way of doing it, there are others not
> > sure they are any better, I am open to suggestions.
>
> We do have linux/io.h, which should be included in preference to asm/io.h.
> linux/io.h has existed for years, but I still see (from time to time)
> patches adding drivers that (imho incorrectly) use asm/io.h.
>
> Also, this:
>
> > > > diff --git a/include/asm-generic/io.h b/include/asm-generic/io.h
> > > > index 7ef015e..0e81938 100644
> > > > --- a/include/asm-generic/io.h
> > > > +++ b/include/asm-generic/io.h
> > > > @@ -915,6 +915,10 @@ extern void ioport_unmap(void __iomem *p);
> > > > #endif /* CONFIG_GENERIC_IOMAP */
> > > > #endif /* CONFIG_HAS_IOPORT_MAP */
> > > >
> > > > +#ifndef ioremap_nopost
> > > > +#define ioremap_nopost ioremap_nocache
> > > > +#endif
> > > > +
> > > > #ifndef xlate_dev_kmem_ptr
> > > > #define xlate_dev_kmem_ptr xlate_dev_kmem_ptr
> > > > static inline void *xlate_dev_kmem_ptr(void *addr)
>
> could well be located in linux/io.h, which would make it available
> everywhere.
>
> I'd suggest one change to this though:
>
> #ifndef ioremap_nopost
> static inline void __iomem *ioremap_nopost(resource_size_t offset,
> unsigned long size)
> {
> return ioremap_nocache(offset, size);
> }
> #endif
>
> This way, if someone forgets to define ioremap_nopost() in their
> asm/io.h but provides a definition or extern prototype for
> ioremap_nopost(), we end up with a compile error to highlight the
> error, rather than the error being hidden by the preprocessor.
Yes, I could add ioremap_nopost() to linux/io.h I did not do it because
linux/io.h, for whatever reason, does not seem to contain ioremap_*
prototypes; this does not mean we should not add it there but that
would look odd (with all others ioremap_* in asm/io.h), all I am
saying. This stuff requires some clean-up regardless, for the records.
As for the static inline, I did that and that did not make the
kbuild robot happy at all on some arches:
eg: openrisc
>> include/asm-generic/io.h:922:9: error: implicit declaration of
>> function 'ioremap_nocache' [-Werror=implicit-function-declaration]
return ioremap_nocache(offset, size);
I will have another stab at it since what you put forward makes sense,
I just have to find a way that works across arches.
Thanks !
Lorenzo
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Bjorn Helgaas <helgaas@kernel.org> - 2017-03-28 03:50 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> - 2017-03-28 16:50 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Bjorn Helgaas <helgaas@kernel.org> - 2017-03-30 18:50 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Russell King - ARM Linux <linux@armlinux.org.uk> - 2017-04-05 13:10 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> - 2017-04-05 14:50 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> - 2017-04-06 12:30 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Russell King - ARM Linux <linux@armlinux.org.uk> - 2017-04-06 12:50 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> - 2017-04-10 16:40 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface "Luis R. Rodriguez" <mcgrof@kernel.org> - 2017-04-06 13:00 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> - 2017-04-06 13:40 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface "Luis R. Rodriguez" <mcgrof@kernel.org> - 2017-04-06 14:00 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Russell King - ARM Linux <linux@armlinux.org.uk> - 2017-04-06 15:10 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> - 2017-04-06 18:30 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Russell King - ARM Linux <linux@armlinux.org.uk> - 2017-04-06 18:50 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> - 2017-04-06 19:20 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Russell King - ARM Linux <linux@armlinux.org.uk> - 2017-04-06 19:30 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface Russell King - ARM Linux <linux@armlinux.org.uk> - 2017-04-06 14:20 +0200
Re: [PATCH v2 02/22] asm-generic/io.h: add ioremap_nopost remap interface "Luis R. Rodriguez" <mcgrof@kernel.org> - 2017-04-06 14:30 +0200
csiph-web