* [GIT PULL] CSR SiRFmarco SoC infrastructures for 3.9 @ 2013-01-24 3:21 Barry Song 2013-01-28 7:08 ` Olof Johansson 0 siblings, 1 reply; 6+ messages in thread From: Barry Song @ 2013-01-24 3:21 UTC (permalink / raw) To: linux-arm-kernel Hi Olof, Arnd, pls pull the following changes for CSR SiRFmarco SoC. it has been rebased againest arm-soc timer/cleanup tree. since commit 90cf214d6a549bf482e3c5751ee256cc885b96ea: ARM: at91: fix board-rm9200-dt after sys_timer conversion (2013-01-14 10:14:04 -0800) are available in the git repository at: git://gitorious.org/sirfprima2-kernel/sirfprima2-kernel.git marco-timer-cleanup-rebase Barry Song (9): ARM: PRIMA2: add CSR SiRFmarco device tree .dts ARM: PRIMA2: enable AUTO_ZRELADDR for SIRF in Kconfig ARM: PRIMA2: initialize l2x0 according to mach from DT ARM: PRIMA2: mv timer to timer-prima2 as we will add timer-marco ARM: PRIMA2: rstc: enable the support for Marco ARM: PRIMA2: rtciobg: it is also compatible with marco ARM: PRIMA2: irq: make prima2 irq can work even we enable GIC for Marco ARM: PRIMA2: add new SiRFmarco SMP SoC infrastructures ARM: PRIMA2: provide two DEBUG_LL ports for prima2 and marco Documentation/devicetree/bindings/arm/sirf.txt | 10 +- arch/arm/Kconfig | 1 + arch/arm/Kconfig.debug | 14 + arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/marco-evb.dts | 54 ++ arch/arm/boot/dts/marco.dtsi | 756 ++++++++++++++++++++++ arch/arm/configs/prima2_defconfig | 3 + arch/arm/mach-prima2/Kconfig | 10 + arch/arm/mach-prima2/Makefile | 5 +- arch/arm/mach-prima2/common.c | 45 ++- arch/arm/mach-prima2/common.h | 15 +- arch/arm/mach-prima2/headsmp.S | 79 +++ arch/arm/mach-prima2/hotplug.c | 41 ++ arch/arm/mach-prima2/include/mach/irqs.h | 4 +- arch/arm/mach-prima2/include/mach/uart.h | 6 + arch/arm/mach-prima2/include/mach/uncompress.h | 3 + arch/arm/mach-prima2/irq.c | 16 +- arch/arm/mach-prima2/l2x0.c | 29 +- arch/arm/mach-prima2/platsmp.c | 163 +++++ arch/arm/mach-prima2/rstc.c | 45 +- arch/arm/mach-prima2/rtciobrg.c | 1 + arch/arm/mach-prima2/timer-marco.c | 316 +++++++++ arch/arm/mach-prima2/{timer.c => timer-prima2.c} | 6 +- 23 files changed, 1588 insertions(+), 35 deletions(-) create mode 100644 arch/arm/boot/dts/marco-evb.dts create mode 100644 arch/arm/boot/dts/marco.dtsi create mode 100644 arch/arm/mach-prima2/headsmp.S create mode 100644 arch/arm/mach-prima2/hotplug.c create mode 100644 arch/arm/mach-prima2/platsmp.c create mode 100644 arch/arm/mach-prima2/timer-marco.c rename arch/arm/mach-prima2/{timer.c => timer-prima2.c} (98%) Thanks barry ^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] CSR SiRFmarco SoC infrastructures for 3.9 2013-01-24 3:21 [GIT PULL] CSR SiRFmarco SoC infrastructures for 3.9 Barry Song @ 2013-01-28 7:08 ` Olof Johansson 2013-01-28 10:08 ` Barry Song 0 siblings, 1 reply; 6+ messages in thread From: Olof Johansson @ 2013-01-28 7:08 UTC (permalink / raw) To: linux-arm-kernel On Thu, Jan 24, 2013 at 11:21:02AM +0800, Barry Song wrote: > Hi Olof, Arnd, > > pls pull the following changes for CSR SiRFmarco SoC. it has been > rebased againest arm-soc timer/cleanup tree. > > since commit 90cf214d6a549bf482e3c5751ee256cc885b96ea: > > ARM: at91: fix board-rm9200-dt after sys_timer conversion > (2013-01-14 10:14:04 -0800) > > are available in the git repository at: > git://gitorious.org/sirfprima2-kernel/sirfprima2-kernel.git > marco-timer-cleanup-rebase Pulled in as prima2/marco, included in next/soc. Thanks! I noticed that there is no defconfig for any mach-prima2 platforms. Feel free to submit one so we get build coverage of the platform. -Olof ^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] CSR SiRFmarco SoC infrastructures for 3.9 2013-01-28 7:08 ` Olof Johansson @ 2013-01-28 10:08 ` Barry Song 2013-01-29 16:51 ` Olof Johansson 0 siblings, 1 reply; 6+ messages in thread From: Barry Song @ 2013-01-28 10:08 UTC (permalink / raw) To: linux-arm-kernel 2013/1/28 Olof Johansson <olof@lixom.net>: > On Thu, Jan 24, 2013 at 11:21:02AM +0800, Barry Song wrote: >> Hi Olof, Arnd, >> >> pls pull the following changes for CSR SiRFmarco SoC. it has been >> rebased againest arm-soc timer/cleanup tree. >> >> since commit 90cf214d6a549bf482e3c5751ee256cc885b96ea: >> >> ARM: at91: fix board-rm9200-dt after sys_timer conversion >> (2013-01-14 10:14:04 -0800) >> >> are available in the git repository at: >> git://gitorious.org/sirfprima2-kernel/sirfprima2-kernel.git >> marco-timer-cleanup-rebase > > Pulled in as prima2/marco, included in next/soc. Thanks! Olof, thanks. > > I noticed that there is no defconfig for any mach-prima2 platforms. Feel > free to submit one so we get build coverage of the platform. there have been. arch/arm/configs/prima2_defconfig > > -Olof -barry ^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] CSR SiRFmarco SoC infrastructures for 3.9 2013-01-28 10:08 ` Barry Song @ 2013-01-29 16:51 ` Olof Johansson 2013-01-29 19:03 ` Olof Johansson 0 siblings, 1 reply; 6+ messages in thread From: Olof Johansson @ 2013-01-29 16:51 UTC (permalink / raw) To: linux-arm-kernel On Mon, Jan 28, 2013 at 06:08:27PM +0800, Barry Song wrote: > 2013/1/28 Olof Johansson <olof@lixom.net>: > > On Thu, Jan 24, 2013 at 11:21:02AM +0800, Barry Song wrote: > >> Hi Olof, Arnd, > >> > >> pls pull the following changes for CSR SiRFmarco SoC. it has been > >> rebased againest arm-soc timer/cleanup tree. > >> > >> since commit 90cf214d6a549bf482e3c5751ee256cc885b96ea: > >> > >> ARM: at91: fix board-rm9200-dt after sys_timer conversion > >> (2013-01-14 10:14:04 -0800) > >> > >> are available in the git repository at: > >> git://gitorious.org/sirfprima2-kernel/sirfprima2-kernel.git > >> marco-timer-cleanup-rebase > > > > Pulled in as prima2/marco, included in next/soc. Thanks! > > Olof, thanks. > > > > > I noticed that there is no defconfig for any mach-prima2 platforms. Feel > > free to submit one so we get build coverage of the platform. > > there have been. arch/arm/configs/prima2_defconfig Ah, it enables ARCH_SIRF, I was searching for ARCH_PRIMA2 or ARCH_MARCO. Good. -Olof ^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] CSR SiRFmarco SoC infrastructures for 3.9 2013-01-29 16:51 ` Olof Johansson @ 2013-01-29 19:03 ` Olof Johansson 2013-01-30 3:11 ` Barry Song 0 siblings, 1 reply; 6+ messages in thread From: Olof Johansson @ 2013-01-29 19:03 UTC (permalink / raw) To: linux-arm-kernel On Tue, Jan 29, 2013 at 8:51 AM, Olof Johansson <olof@lixom.net> wrote: > On Mon, Jan 28, 2013 at 06:08:27PM +0800, Barry Song wrote: >> 2013/1/28 Olof Johansson <olof@lixom.net>: >> > On Thu, Jan 24, 2013 at 11:21:02AM +0800, Barry Song wrote: >> >> Hi Olof, Arnd, >> >> >> >> pls pull the following changes for CSR SiRFmarco SoC. it has been >> >> rebased againest arm-soc timer/cleanup tree. >> >> >> >> since commit 90cf214d6a549bf482e3c5751ee256cc885b96ea: >> >> >> >> ARM: at91: fix board-rm9200-dt after sys_timer conversion >> >> (2013-01-14 10:14:04 -0800) >> >> >> >> are available in the git repository at: >> >> git://gitorious.org/sirfprima2-kernel/sirfprima2-kernel.git >> >> marco-timer-cleanup-rebase >> > >> > Pulled in as prima2/marco, included in next/soc. Thanks! >> >> Olof, thanks. >> >> > >> > I noticed that there is no defconfig for any mach-prima2 platforms. Feel >> > free to submit one so we get build coverage of the platform. >> >> there have been. arch/arm/configs/prima2_defconfig > > Ah, it enables ARCH_SIRF, I was searching for ARCH_PRIMA2 or ARCH_MARCO. Good. ..and it's broken due to interaction with the gic-vic move. :( Barry, can you please follow up with a patch to do the corresponding changes for prima? Thanks, -Olof ^ permalink raw reply [flat|nested] 6+ messages in thread
* [GIT PULL] CSR SiRFmarco SoC infrastructures for 3.9 2013-01-29 19:03 ` Olof Johansson @ 2013-01-30 3:11 ` Barry Song 0 siblings, 0 replies; 6+ messages in thread From: Barry Song @ 2013-01-30 3:11 UTC (permalink / raw) To: linux-arm-kernel > -----Original Message----- > From: Olof Johansson [mailto:olof at lixom.net] > Sent: Wednesday, January 30, 2013 3:04 AM > To: Barry Song > Cc: Arnd Bergmann; linux-arm-kernel at lists.infradead.org; > DL-SHA-WorkGroupLinux > Subject: Re: [GIT PULL] CSR SiRFmarco SoC infrastructures for 3.9 > > On Tue, Jan 29, 2013 at 8:51 AM, Olof Johansson <olof@lixom.net> wrote: > > On Mon, Jan 28, 2013 at 06:08:27PM +0800, Barry Song wrote: > >> 2013/1/28 Olof Johansson <olof@lixom.net>: > >> > On Thu, Jan 24, 2013 at 11:21:02AM +0800, Barry Song wrote: > >> >> Hi Olof, Arnd, > >> >> > >> >> pls pull the following changes for CSR SiRFmarco SoC. it has been > >> >> rebased againest arm-soc timer/cleanup tree. > >> >> > >> >> since commit 90cf214d6a549bf482e3c5751ee256cc885b96ea: > >> >> > >> >> ARM: at91: fix board-rm9200-dt after sys_timer conversion > >> >> (2013-01-14 10:14:04 -0800) > >> >> > >> >> are available in the git repository at: > >> >> git://gitorious.org/sirfprima2-kernel/sirfprima2-kernel.git > >> >> marco-timer-cleanup-rebase > >> > > >> > Pulled in as prima2/marco, included in next/soc. Thanks! > >> > >> Olof, thanks. > >> > >> > > >> > I noticed that there is no defconfig for any mach-prima2 platforms. Feel > >> > free to submit one so we get build coverage of the platform. > >> > >> there have been. arch/arm/configs/prima2_defconfig > > > > Ah, it enables ARCH_SIRF, I was searching for ARCH_PRIMA2 or > ARCH_MARCO. Good. > > ..and it's broken due to interaction with the gic-vic move. :( > > Barry, can you please follow up with a patch to do the corresponding > changes for prima? Ok. I'll take care. > > > Thanks, > > -Olof > -barry Member of the CSR plc group of companies. CSR plc registered in England and Wales, registered number 4187346, registered office Churchill House, Cambridge Business Park, Cowley Road, Cambridge, CB4 0WZ, United Kingdom More information can be found at www.csr.com. Follow CSR on Twitter at http://twitter.com/CSR_PLC and read our blog at www.csr.com/blog ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-01-30 3:11 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-01-24 3:21 [GIT PULL] CSR SiRFmarco SoC infrastructures for 3.9 Barry Song 2013-01-28 7:08 ` Olof Johansson 2013-01-28 10:08 ` Barry Song 2013-01-29 16:51 ` Olof Johansson 2013-01-29 19:03 ` Olof Johansson 2013-01-30 3:11 ` Barry Song
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).