From: Pawel Osciak <p.osciak@samsung.com>
To: 'Kukjin Kim' <kgene.kim@samsung.com>,
Sylwester Nawrocki <s.nawrocki@samsung.com>,
linux-samsung-soc@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Cc: Marek Szyprowski <m.szyprowski@samsung.com>, kyungmin.park@samsung.com
Subject: RE: [PATCH v3 5/8] ARM: s5pv210: enable FIMC on Aquila
Date: Mon, 26 Jul 2010 08:51:36 +0200 [thread overview]
Message-ID: <003201cb2c8e$fdf0dc70$f9d29550$%osciak@samsung.com> (raw)
In-Reply-To: <00b801cb2c8d$98282610$c8787230$%kim@samsung.com>
Hello,
>Kukjin Kim <kgene.kim@samsung.com> wrote:
>Sylwester Nawrocki wrote:
>>
>> Add support for FIMC on Samsung Aquila board.
>>
>> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
>> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
>> ---
>> arch/arm/mach-s5pv210/Kconfig | 4 ++++
>> arch/arm/mach-s5pv210/mach-aquila.c | 7 +++++++
>> 2 files changed, 11 insertions(+), 0 deletions(-)
>>
>> diff --git a/arch/arm/mach-s5pv210/Kconfig b/arch/arm/mach-s5pv210/Kconfig
>> index 039ba8c..b81b91b 100644
>> --- a/arch/arm/mach-s5pv210/Kconfig
>> +++ b/arch/arm/mach-s5pv210/Kconfig
>> @@ -58,9 +58,13 @@ menu "S5PC110 Machines"
>> config MACH_AQUILA
>> bool "Aquila"
>> select CPU_S5PV210
>> + select COMMON_AQUILA_GONI
>
>...
>
Please see my previous comments.
>> select ARCH_SPARSEMEM_ENABLE
>> select S5PV210_SETUP_FB_24BPP
>> select S3C_DEV_FB
>> + select S5P_DEV_FIMC0
>> + select S5P_DEV_FIMC1
>> + select S5P_DEV_FIMC2
>> select S5PC110_DEV_ONENAND
>> help
>> Machine support for the Samsung Aquila target based on S5PC110
>> SoC
>> diff --git a/arch/arm/mach-s5pv210/mach-aquila.c
>b/arch/arm/mach-s5pv210/mach-
>> aquila.c
>> index 0992618..7528514 100644
>> --- a/arch/arm/mach-s5pv210/mach-aquila.c
>> +++ b/arch/arm/mach-s5pv210/mach-aquila.c
>> @@ -35,6 +35,9 @@
>> #include <plat/devs.h>
>> #include <plat/cpu.h>
>> #include <plat/fb.h>
>> +#include <plat/fimc.h>
>> +
>> +#include "common-aquila-goni.h"
>
>Hmm...please refer to my another comment.
>
Ditto.
>>
>> /* Following are default values for UCON, ULCON and UFCON UART registers
>*/
>> #define S5PV210_UCON_DEFAULT (S3C2410_UCON_TXILEVEL | \
>> @@ -445,6 +448,9 @@ static struct platform_device *aquila_devices[]
>__initdata =
>> {
>> &aquila_device_gpiokeys,
>> &s3c_device_fb,
>> &s5pc110_device_onenand,
>> + &s5p_device_fimc0,
>> + &s5p_device_fimc1,
>> + &s5p_device_fimc2,
>> };
>>
>> static void __init aquila_map_io(void)
>> @@ -465,6 +471,7 @@ static void __init aquila_machine_init(void)
>> s3c_fb_set_platdata(&aquila_lcd_pdata);
>>
>> platform_add_devices(aquila_devices, ARRAY_SIZE(aquila_devices));
>> + s5pv210_common_fimc_clk_init();
>
>Hmm...really need this fimc_clk_init here not driver?
>
I believe that the whole idea is that drivers should not be involved in
clocks setup, especially in setting up source parameters...
Best regards
--
Pawel Osciak
Linux Platform Group
Samsung Poland R&D Center
next prev parent reply other threads:[~2010-07-26 6:53 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-07-23 16:21 [PATCH v3 0/8] Samsung S5P SoC camera interface driver Sylwester Nawrocki
2010-07-23 16:21 ` [PATCH v3 1/8] ARM: Samsung: Add register definitions for Samsung S5P SoC camera interface Sylwester Nawrocki
2010-07-26 6:51 ` Kukjin Kim
2010-08-02 10:32 ` Pawel Osciak
2010-08-02 10:52 ` Russell King - ARM Linux
2010-08-02 11:13 ` Marek Szyprowski
2010-08-02 11:51 ` Mauro Carvalho Chehab
2010-08-02 12:09 ` Russell King - ARM Linux
2010-08-02 12:08 ` Pawel Osciak
2010-08-02 16:58 ` Russell King - ARM Linux
2010-08-03 0:46 ` Kukjin Kim
2010-08-03 2:15 ` Kyungmin Park
2010-07-23 16:21 ` [PATCH v3 2/8] v4l: Add driver for Samsung S3C/S5P SoC video postprocessor Sylwester Nawrocki
2010-07-23 16:21 ` [PATCH v3 3/8] ARM: Samsung: Add platform definitions and helpers for FIMC driver Sylwester Nawrocki
2010-08-02 11:57 ` [PATCH v4 " Marek Szyprowski
2010-08-02 23:58 ` Kukjin Kim
2010-08-03 0:37 ` Kyungmin Park
2010-08-03 0:46 ` Kukjin Kim
2010-08-03 0:54 ` Kyungmin Park
2010-08-03 1:05 ` Kukjin Kim
2010-08-03 1:12 ` Kyungmin Park
2010-08-03 2:33 ` Kukjin Kim
2010-08-03 5:41 ` [PATCH v5 " Marek Szyprowski
2010-08-04 10:55 ` Kukjin Kim
2010-07-23 16:21 ` [PATCH v3 4/8] ARM: Samsung: Add common Aquila and GONI code Sylwester Nawrocki
2010-07-26 6:33 ` Kukjin Kim
2010-07-26 6:48 ` Pawel Osciak
2010-08-09 5:03 ` Kukjin Kim
2010-07-23 16:21 ` [PATCH v3 5/8] ARM: s5pv210: enable FIMC on Aquila Sylwester Nawrocki
2010-07-26 6:41 ` Kukjin Kim
2010-07-26 6:51 ` Pawel Osciak [this message]
2010-07-23 16:21 ` [PATCH v3 6/8] ARM: s5pv210: enable FIMC on Goni Sylwester Nawrocki
2010-07-23 16:21 ` [PATCH v3 7/8] ARM: S5PC100: enable FIMC on SMDKC100 Sylwester Nawrocki
2010-07-23 16:21 ` [PATCH v3 8/8] ARM: s5pv210: Override FIMC driver name on Aquila board Sylwester Nawrocki
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='003201cb2c8e$fdf0dc70$f9d29550$%osciak@samsung.com' \
--to=p.osciak@samsung.com \
--cc=kgene.kim@samsung.com \
--cc=kyungmin.park@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=s.nawrocki@samsung.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox