All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] sparc32: introduce asm-generic
@ 2014-04-26  7:54 Sam Ravnborg
  2014-04-26  8:35 ` Sam Ravnborg
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Sam Ravnborg @ 2014-04-26  7:54 UTC (permalink / raw)
  To: sparclinux

Inspired by Michal Simek <monstr@monstr.eu> this patch-set
introduces asm-generic/io.h for sparc32.

As the diff-stat tells this was a nice code-reduction.

The changes are done on top of the previous sent sparse warning cleanup.
But I do not expect any difficult conflicts if applied alone.

leon_pci + pcic are touched because they had local
and identical implementations of functiones that are
static inline in asm-generic/io.h

leon_pci_grpci1 + leon_pci_grpci2 are touched becuse they
used a sparc spacific implmentation of swab32.
They have just been changed to use the global variant.

I also looked at sparc64 - but there were to many
sparc64 assembler implementations of the io
functons - and the generic io.h did not support this mix.

The last patch kills a few defines in io.h for sbus.
I assume they were introduced before the functions
were all shifted over to __iomem style pointers.
The same could be done for sparc64 - but then
there were even more of the same so I left
this for another time.

The patch-set has been build tested only.
My attempts to test this using qemu have failed as
the qemu version I have errors out.
And my fedora box are mssing some libs to build
qemu from source :-(

	Sam

Sam Ravnborg (4):
      sparc: move page_to_phys to page.h
      sparc32: replace flip_dword() with swab32()
      sparc32: introduce asm-generic/io.h
      sparc32: clean up io_32.h

 arch/sparc/include/asm/io_32.h      | 287 ++++++------------------------------
 arch/sparc/include/asm/io_64.h      |   1 -
 arch/sparc/include/asm/page.h       |   3 +
 arch/sparc/kernel/leon_pci.c        |  79 ----------
 arch/sparc/kernel/leon_pci_grpci1.c |   4 +-
 arch/sparc/kernel/leon_pci_grpci2.c |   4 +-
 arch/sparc/kernel/pcic.c            |  80 +---------
 arch/sparc/lib/Makefile             |   2 +-
 8 files changed, 57 insertions(+), 403 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/4] sparc32: introduce asm-generic
  2014-04-26  7:54 [PATCH 0/4] sparc32: introduce asm-generic Sam Ravnborg
@ 2014-04-26  8:35 ` Sam Ravnborg
  2014-04-28  9:09 ` Michal Simek
  2014-05-02  5:31 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Sam Ravnborg @ 2014-04-26  8:35 UTC (permalink / raw)
  To: sparclinux

Hi Michal,

    missed you on cc: on the initial mail.

	Sam

On Sat, Apr 26, 2014 at 09:54:26AM +0200, Sam Ravnborg wrote:
> Inspired by Michal Simek <monstr@monstr.eu> this patch-set
> introduces asm-generic/io.h for sparc32.
> 
> As the diff-stat tells this was a nice code-reduction.
> 
> The changes are done on top of the previous sent sparse warning cleanup.
> But I do not expect any difficult conflicts if applied alone.
> 
> leon_pci + pcic are touched because they had local
> and identical implementations of functiones that are
> static inline in asm-generic/io.h
> 
> leon_pci_grpci1 + leon_pci_grpci2 are touched becuse they
> used a sparc spacific implmentation of swab32.
> They have just been changed to use the global variant.
> 
> I also looked at sparc64 - but there were to many
> sparc64 assembler implementations of the io
> functons - and the generic io.h did not support this mix.
> 
> The last patch kills a few defines in io.h for sbus.
> I assume they were introduced before the functions
> were all shifted over to __iomem style pointers.
> The same could be done for sparc64 - but then
> there were even more of the same so I left
> this for another time.
> 
> The patch-set has been build tested only.
> My attempts to test this using qemu have failed as
> the qemu version I have errors out.
> And my fedora box are mssing some libs to build
> qemu from source :-(
> 
> 	Sam
> 
> Sam Ravnborg (4):
>       sparc: move page_to_phys to page.h
>       sparc32: replace flip_dword() with swab32()
>       sparc32: introduce asm-generic/io.h
>       sparc32: clean up io_32.h
> 
>  arch/sparc/include/asm/io_32.h      | 287 ++++++------------------------------
>  arch/sparc/include/asm/io_64.h      |   1 -
>  arch/sparc/include/asm/page.h       |   3 +
>  arch/sparc/kernel/leon_pci.c        |  79 ----------
>  arch/sparc/kernel/leon_pci_grpci1.c |   4 +-
>  arch/sparc/kernel/leon_pci_grpci2.c |   4 +-
>  arch/sparc/kernel/pcic.c            |  80 +---------
>  arch/sparc/lib/Makefile             |   2 +-
>  8 files changed, 57 insertions(+), 403 deletions(-)
> --
> To unsubscribe from this list: send the line "unsubscribe sparclinux" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/4] sparc32: introduce asm-generic
  2014-04-26  7:54 [PATCH 0/4] sparc32: introduce asm-generic Sam Ravnborg
  2014-04-26  8:35 ` Sam Ravnborg
@ 2014-04-28  9:09 ` Michal Simek
  2014-05-02  5:31 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: Michal Simek @ 2014-04-28  9:09 UTC (permalink / raw)
  To: sparclinux

[-- Attachment #1: Type: text/plain, Size: 591 bytes --]

Hi Sam,

On 04/26/2014 10:35 AM, Sam Ravnborg wrote:
> Hi Michal,
> 
>     missed you on cc: on the initial mail.

not a problem. I briefly looked at your patches
and it is great that you could use asm-generic implementation
as I could for microblaze.

Thanks,
Michal

-- 
Michal Simek, Ing. (M.Eng), OpenPGP -> KeyID: FE3D1F91
w: www.monstr.eu p: +42-0-721842854
Maintainer of Linux kernel - Microblaze cpu - http://www.monstr.eu/fdt/
Maintainer of Linux kernel - Xilinx Zynq ARM architecture
Microblaze U-BOOT custodian and responsible for u-boot arm zynq platform



[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 263 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/4] sparc32: introduce asm-generic
  2014-04-26  7:54 [PATCH 0/4] sparc32: introduce asm-generic Sam Ravnborg
  2014-04-26  8:35 ` Sam Ravnborg
  2014-04-28  9:09 ` Michal Simek
@ 2014-05-02  5:31 ` David Miller
  2 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2014-05-02  5:31 UTC (permalink / raw)
  To: sparclinux

From: Sam Ravnborg <sam@ravnborg.org>
Date: Sat, 26 Apr 2014 09:54:26 +0200

> Inspired by Michal Simek <monstr@monstr.eu> this patch-set
> introduces asm-generic/io.h for sparc32.
> 
> As the diff-stat tells this was a nice code-reduction.

Looks great, series applied, thanks Sam.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-05-02  5:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-26  7:54 [PATCH 0/4] sparc32: introduce asm-generic Sam Ravnborg
2014-04-26  8:35 ` Sam Ravnborg
2014-04-28  9:09 ` Michal Simek
2014-05-02  5:31 ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.