From: Alessandro Rubini <rubini@gnudd.com>
To: linux-kernel@vger.kernel.org
Cc: Giancarlo Asnaghi <giancarlo.asnaghi@st.com>,
Russell King <linux@arm.linux.org.uk>,
Linus Walleij <linus.walleij@stericsson.com>,
Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>,
Wolfram Sang <w.sang@pengutronix.de>,
Jean Delvare <khali@linux-fr.org>,
linux-i2c@vger.kernel.org, STEricsson_nomadik_linux@list.st.com,
linux-arm-kernel@lists.infradead.org,
Alan Cox <alan@linux.intel.com>
Subject: [PATCH RFC 0/3] i2c-nomadik changes
Date: Wed, 30 May 2012 19:45:30 +0200 [thread overview]
Message-ID: <cover.1338398567.git.rubini@gnudd.com> (raw)
The patch set turns a platform device into an amba device. Its users,
i.e. mach-ux500, are converted too. The set has no external
dependencies, although is has no visible effect until other patches
are accepted.
Reasoning:
In the STA2X11 I/O hub we are exporting a number of AMBA peripherals
to the PCI world. Using a generic pci-amba driver there is no further
code for each device, provided they are already registered under the
AMBA bus. I already submitted the generic bridge
(https://lkml.org/lkml/2012/5/28/194).
Status of this patch set:
The users of the driver (i.e. mach-ux600) compile properly, but I
couldn't test on any board. The driver, as is, works on x86 under the
PCI bridge, with the not-yet-upstream clock framework and platform
data for sta2x11 devices. However, this set is not introducing any
dead code as it only adds more flexibility. The big part of it is a
massive s/platform_device/amba_device/ and s/pdev/adev/ .
The cell-id I used in the table are the one for ux500 (only as far as
I know from the stn-8815 manuals) and the one for STA2X11.
Alessandro Rubini (3):
i2c-nomadik: move header from <plat/i2c.h> to <linux/i2c-nomadik.h>
i2c-nomadik: turn the platform driver to an amba driver
i2c-nomadik: depend on ARM_AMBA, not PLAT_NOMADIK
arch/arm/mach-ux500/board-mop500.c | 2 +-
arch/arm/mach-ux500/devices-common.h | 23 +----
arch/arm/plat-nomadik/include/plat/i2c.h | 39 --------
drivers/i2c/busses/Kconfig | 5 +-
drivers/i2c/busses/i2c-nomadik.c | 140 +++++++++++++++---------------
include/linux/i2c-nomadik.h | 39 ++++++++
6 files changed, 116 insertions(+), 132 deletions(-)
delete mode 100644 arch/arm/plat-nomadik/include/plat/i2c.h
create mode 100644 include/linux/i2c-nomadik.h
--
1.7.7.2
WARNING: multiple messages have this Message-ID (diff)
From: rubini@gnudd.com (Alessandro Rubini)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH RFC 0/3] i2c-nomadik changes
Date: Wed, 30 May 2012 19:45:30 +0200 [thread overview]
Message-ID: <cover.1338398567.git.rubini@gnudd.com> (raw)
The patch set turns a platform device into an amba device. Its users,
i.e. mach-ux500, are converted too. The set has no external
dependencies, although is has no visible effect until other patches
are accepted.
Reasoning:
In the STA2X11 I/O hub we are exporting a number of AMBA peripherals
to the PCI world. Using a generic pci-amba driver there is no further
code for each device, provided they are already registered under the
AMBA bus. I already submitted the generic bridge
(https://lkml.org/lkml/2012/5/28/194).
Status of this patch set:
The users of the driver (i.e. mach-ux600) compile properly, but I
couldn't test on any board. The driver, as is, works on x86 under the
PCI bridge, with the not-yet-upstream clock framework and platform
data for sta2x11 devices. However, this set is not introducing any
dead code as it only adds more flexibility. The big part of it is a
massive s/platform_device/amba_device/ and s/pdev/adev/ .
The cell-id I used in the table are the one for ux500 (only as far as
I know from the stn-8815 manuals) and the one for STA2X11.
Alessandro Rubini (3):
i2c-nomadik: move header from <plat/i2c.h> to <linux/i2c-nomadik.h>
i2c-nomadik: turn the platform driver to an amba driver
i2c-nomadik: depend on ARM_AMBA, not PLAT_NOMADIK
arch/arm/mach-ux500/board-mop500.c | 2 +-
arch/arm/mach-ux500/devices-common.h | 23 +----
arch/arm/plat-nomadik/include/plat/i2c.h | 39 --------
drivers/i2c/busses/Kconfig | 5 +-
drivers/i2c/busses/i2c-nomadik.c | 140 +++++++++++++++---------------
include/linux/i2c-nomadik.h | 39 ++++++++
6 files changed, 116 insertions(+), 132 deletions(-)
delete mode 100644 arch/arm/plat-nomadik/include/plat/i2c.h
create mode 100644 include/linux/i2c-nomadik.h
--
1.7.7.2
WARNING: multiple messages have this Message-ID (diff)
From: Alessandro Rubini <rubini@gnudd.com>
To: linux-kernel@vger.kernel.org
Cc: Giancarlo Asnaghi <giancarlo.asnaghi@st.com>,
Alan Cox <alan@linux.intel.com>,
Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>,
STEricsson_nomadik_linux@list.st.com,
Linus Walleij <linus.walleij@stericsson.com>,
Russell King <linux@arm.linux.org.uk>,
Jean Delvare <khali@linux-fr.org>,
Wolfram Sang <w.sang@pengutronix.de>,
linux-arm-kernel@lists.infradead.org, linux-i2c@vger.kernel.org
Subject: [PATCH RFC 0/3] i2c-nomadik changes
Date: Wed, 30 May 2012 19:45:30 +0200 [thread overview]
Message-ID: <cover.1338398567.git.rubini@gnudd.com> (raw)
The patch set turns a platform device into an amba device. Its users,
i.e. mach-ux500, are converted too. The set has no external
dependencies, although is has no visible effect until other patches
are accepted.
Reasoning:
In the STA2X11 I/O hub we are exporting a number of AMBA peripherals
to the PCI world. Using a generic pci-amba driver there is no further
code for each device, provided they are already registered under the
AMBA bus. I already submitted the generic bridge
(https://lkml.org/lkml/2012/5/28/194).
Status of this patch set:
The users of the driver (i.e. mach-ux600) compile properly, but I
couldn't test on any board. The driver, as is, works on x86 under the
PCI bridge, with the not-yet-upstream clock framework and platform
data for sta2x11 devices. However, this set is not introducing any
dead code as it only adds more flexibility. The big part of it is a
massive s/platform_device/amba_device/ and s/pdev/adev/ .
The cell-id I used in the table are the one for ux500 (only as far as
I know from the stn-8815 manuals) and the one for STA2X11.
Alessandro Rubini (3):
i2c-nomadik: move header from <plat/i2c.h> to <linux/i2c-nomadik.h>
i2c-nomadik: turn the platform driver to an amba driver
i2c-nomadik: depend on ARM_AMBA, not PLAT_NOMADIK
arch/arm/mach-ux500/board-mop500.c | 2 +-
arch/arm/mach-ux500/devices-common.h | 23 +----
arch/arm/plat-nomadik/include/plat/i2c.h | 39 --------
drivers/i2c/busses/Kconfig | 5 +-
drivers/i2c/busses/i2c-nomadik.c | 140 +++++++++++++++---------------
include/linux/i2c-nomadik.h | 39 ++++++++
6 files changed, 116 insertions(+), 132 deletions(-)
delete mode 100644 arch/arm/plat-nomadik/include/plat/i2c.h
create mode 100644 include/linux/i2c-nomadik.h
--
1.7.7.2
next reply other threads:[~2012-05-30 17:45 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-30 17:45 Alessandro Rubini [this message]
2012-05-30 17:45 ` [PATCH RFC 0/3] i2c-nomadik changes Alessandro Rubini
2012-05-30 17:45 ` Alessandro Rubini
2012-05-30 17:45 ` [PATCH RFC 1/3] i2c-nomadik: move header from <plat/i2c.h> to <linux/i2c-nomadik.h> Alessandro Rubini
2012-05-30 17:45 ` Alessandro Rubini
2012-05-30 17:45 ` Alessandro Rubini
[not found] ` <ca47a47e0a4db31545549ed978e1dc7b3aad4377.1338398567.git.rubini-kaDoWcXyVrEAvxtiuMwx3w@public.gmane.org>
2012-05-31 1:47 ` Linus Walleij
2012-05-31 1:47 ` Linus Walleij
2012-05-31 1:47 ` Linus Walleij
2012-05-31 8:37 ` Ben Dooks
2012-05-31 8:37 ` Ben Dooks
2012-05-31 8:37 ` Ben Dooks
2012-05-31 8:32 ` Ben Dooks
2012-05-31 8:32 ` Ben Dooks
2012-05-31 8:32 ` Ben Dooks
[not found] ` <cover.1338398567.git.rubini-kaDoWcXyVrEAvxtiuMwx3w@public.gmane.org>
2012-05-30 17:45 ` [PATCH RFC 2/3] i2c-nomadik: turn the platform driver to an amba driver Alessandro Rubini
2012-05-30 17:45 ` Alessandro Rubini
2012-05-30 17:45 ` Alessandro Rubini
[not found] ` <349645b61d0b28f6e84f7ae1f2c8c28e12a11d92.1338398567.git.rubini-kaDoWcXyVrEAvxtiuMwx3w@public.gmane.org>
2012-05-31 1:51 ` Linus Walleij
2012-05-31 1:51 ` Linus Walleij
2012-05-31 1:51 ` Linus Walleij
2012-05-31 8:37 ` Ben Dooks
2012-05-31 8:37 ` Ben Dooks
2012-05-31 8:37 ` Ben Dooks
2012-05-31 10:16 ` Linus Walleij
2012-05-31 10:16 ` Linus Walleij
2012-05-31 10:16 ` Linus Walleij
[not found] ` <CACRpkdZpjn0RBGY+CqqSW3ip0MSQUJSaqN0GD=a4THnPHNM-jg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-05-31 18:02 ` Alessandro Rubini
2012-05-31 18:02 ` Alessandro Rubini
2012-05-31 18:02 ` Alessandro Rubini
[not found] ` <20120531180204.GA28779-eyGpkxvC2QLRELXczCotyA@public.gmane.org>
2012-06-01 1:53 ` Linus Walleij
2012-06-01 1:53 ` Linus Walleij
2012-06-01 1:53 ` Linus Walleij
2012-06-01 2:24 ` Lee Jones
2012-06-01 2:24 ` Lee Jones
2012-06-01 2:24 ` Lee Jones
2012-05-31 1:55 ` [PATCH RFC 0/3] i2c-nomadik changes Linus Walleij
2012-05-31 1:55 ` Linus Walleij
2012-05-31 1:55 ` Linus Walleij
2012-05-30 17:46 ` [PATCH RFC 3/3] i2c-nomadik: depend on ARM_AMBA, not PLAT_NOMADIK Alessandro Rubini
2012-05-30 17:46 ` Alessandro Rubini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1338398567.git.rubini@gnudd.com \
--to=rubini@gnudd.com \
--cc=STEricsson_nomadik_linux@list.st.com \
--cc=alan@linux.intel.com \
--cc=giancarlo.asnaghi@st.com \
--cc=khali@linux-fr.org \
--cc=linus.walleij@stericsson.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@arm.linux.org.uk \
--cc=srinidhi.kasagar@stericsson.com \
--cc=w.sang@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.