* [PATCH v3 0/9] ARM: S5PV210: Add support for Samsung's S5PV210 CPU
@ 2010-01-22 0:21 Kukjin Kim
2010-01-22 7:11 ` Marek Szyprowski
0 siblings, 1 reply; 3+ messages in thread
From: Kukjin Kim @ 2010-01-22 0:21 UTC (permalink / raw)
To: linux-arm-kernel
This patch set adds support for Samsung's S5PV210 CPU. The S5PV210 integrates
a ARM Cortex A8 microprocessor with several other peripherals to support
features such as multimedia, storage, graphics and gaming. The S5PV210 can be
used in products such as Netbooks and Mobile devices.
This patch set consists of the following patches.
[PATCH v3 1/9] ARM: S5PV210: Add Samsung S5PV210 CPU support
[PATCH v3 2/9] ARM: S5PV210: Add clock support for S5PV210
[PATCH v3 3/9] ARM: S5PV210: Add IRQ support
[PATCH v3 4/9] ARM: S5PV210: Update Kconfig and Makefiles
[PATCH v3 5/9] ARM: S5PV210: Add SMDKV210 board support file
[PATCH v3 6/9] ARM: S5PV210: Add SMDKC110 board support file
[PATCH v3 7/9] ARM: S5PV210: Add S5PV210 configuration file
[PATCH v3 8/9] ARM: S5PV210: Add S5PC110 configuration file
[PATCH v3 9/9] ARM: S5PV210: Add serial port support
Changes since v2 :
1. Use SPARSEMEM as Russell suggested.
2. Fixed code as per comments from Ben in linux-samsung-soc mailing list.
Changes since v1 :
1. Removed mach/s5pv210/include/mach/gpio-core.h file.
2. Removed unused clock gate defines.
3. Removed machine fixup code from smdkv210 and smdkc110 board support.
4. Merged Kconfig and Makefiles with other source code patches.
5. Replaced multiple definition of UART info with macro.
Thanks.
Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
System LSI Division, SAMSUNG ELECTRONICS CO., LTD.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v3 0/9] ARM: S5PV210: Add support for Samsung's S5PV210 CPU
2010-01-22 0:21 [PATCH v3 0/9] ARM: S5PV210: Add support for Samsung's S5PV210 CPU Kukjin Kim
@ 2010-01-22 7:11 ` Marek Szyprowski
2010-01-27 10:05 ` Kukjin Kim
0 siblings, 1 reply; 3+ messages in thread
From: Marek Szyprowski @ 2010-01-22 7:11 UTC (permalink / raw)
To: linux-arm-kernel
Hello,
On Friday, January 22, 2010 1:21 AM Kukjin Kim wrote:
> This patch set adds support for Samsung's S5PV210 CPU. The S5PV210 integrates
> a ARM Cortex A8 microprocessor with several other peripherals to support
> features such as multimedia, storage, graphics and gaming. The S5PV210 can be
> used in products such as Netbooks and Mobile devices.
>
> This patch set consists of the following patches.
>
> [PATCH v3 1/9] ARM: S5PV210: Add Samsung S5PV210 CPU support
> [PATCH v3 2/9] ARM: S5PV210: Add clock support for S5PV210
> [PATCH v3 3/9] ARM: S5PV210: Add IRQ support
> [PATCH v3 4/9] ARM: S5PV210: Update Kconfig and Makefiles
> [PATCH v3 5/9] ARM: S5PV210: Add SMDKV210 board support file
> [PATCH v3 6/9] ARM: S5PV210: Add SMDKC110 board support file
> [PATCH v3 7/9] ARM: S5PV210: Add S5PV210 configuration file
> [PATCH v3 8/9] ARM: S5PV210: Add S5PC110 configuration file
> [PATCH v3 9/9] ARM: S5PV210: Add serial port support
What about a patch changing the value of ARM_L1_CACHE_SHIFT to 6
if S5PV210/S5PC110 arch is selected? At least S5PC110 has 64bit of
L1 cache line size so all kmalloced areas should be properly
aligned to cache line size to avoid cache aliasing (especially
when doing DMA transfers).
Best regards
--
Marek Szyprowski
Samsung Poland R&D Center
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v3 0/9] ARM: S5PV210: Add support for Samsung's S5PV210 CPU
2010-01-22 7:11 ` Marek Szyprowski
@ 2010-01-27 10:05 ` Kukjin Kim
0 siblings, 0 replies; 3+ messages in thread
From: Kukjin Kim @ 2010-01-27 10:05 UTC (permalink / raw)
To: linux-arm-kernel
Marek Szyprowski wrote:
> Hello,
>
> On Friday, January 22, 2010 1:21 AM Kukjin Kim wrote:
>
> > This patch set adds support for Samsung's S5PV210 CPU. The S5PV210
> integrates
> > a ARM Cortex A8 microprocessor with several other peripherals to support
> > features such as multimedia, storage, graphics and gaming. The S5PV210
can be
> > used in products such as Netbooks and Mobile devices.
> >
> > This patch set consists of the following patches.
> >
> > [PATCH v3 1/9] ARM: S5PV210: Add Samsung S5PV210 CPU support
> > [PATCH v3 2/9] ARM: S5PV210: Add clock support for S5PV210
> > [PATCH v3 3/9] ARM: S5PV210: Add IRQ support
> > [PATCH v3 4/9] ARM: S5PV210: Update Kconfig and Makefiles
> > [PATCH v3 5/9] ARM: S5PV210: Add SMDKV210 board support file
> > [PATCH v3 6/9] ARM: S5PV210: Add SMDKC110 board support file
> > [PATCH v3 7/9] ARM: S5PV210: Add S5PV210 configuration file
> > [PATCH v3 8/9] ARM: S5PV210: Add S5PC110 configuration file
> > [PATCH v3 9/9] ARM: S5PV210: Add serial port support
>
> What about a patch changing the value of ARM_L1_CACHE_SHIFT to 6
> if S5PV210/S5PC110 arch is selected? At least S5PC110 has 64bit of
> L1 cache line size so all kmalloced areas should be properly
> aligned to cache line size to avoid cache aliasing (especially
> when doing DMA transfers).
Hello,
Sorry for late reply.
My e-mail client had some setup issues, so could not reply to you
immediately.
Anyway, I will apply your suggestion to my updated patches.
Thanks.
Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
System LSI Division, SAMSUNG ELECTRONICS CO., LTD.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-01-27 10:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-22 0:21 [PATCH v3 0/9] ARM: S5PV210: Add support for Samsung's S5PV210 CPU Kukjin Kim
2010-01-22 7:11 ` Marek Szyprowski
2010-01-27 10:05 ` Kukjin Kim
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).