Re: [PATCH v4 2/8] arm64: dts: exynos: Add dts files for 64-bit Exynos5433 SoC

2015-03-01 Thread Arnd Bergmann
On Saturday 28 February 2015 09:47:01 Chanwoo Choi wrote:
 earlycon=exynos4210,0x14C2 is correct bootparam. You can check
 it on Documentation/kernel-parameters.txt as following.
 
  exynos4210,addr
 Use early console provided by serial driver available
 on Samsung SoCs, requires selecting proper type and
 a correct base address of the selected UART port. The
 serial port must already be setup and configured.
 Options are not yet supported.
 
 

But it's crazy to do this when you have a DT. Please fix the existing
devicetree files that use this to just list 'earlycon'.

The syntax above only makes sense for classic board files that we
do not support for exynos any more.

Arnd
--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2] clk: samsung: Add CLKOUT driver support for Exynos3250 SoC.

2015-03-01 Thread Inha Song
This patch add CLKOUT driver support for Exynos3250 SoC.

Exynos3250 SoC PMU_DEBUG is the same with Exynos4's PMU_DEBUG
including CLKOUT mux. So, We can use the exynos4's clkout init
function for Exynos3250 without the need to add new function.

Signed-off-by: Inha Song ideal.s...@samsung.com
---
 drivers/clk/samsung/clk-exynos-clkout.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/clk/samsung/clk-exynos-clkout.c 
b/drivers/clk/samsung/clk-exynos-clkout.c
index 3a7cb25..1c02e73 100644
--- a/drivers/clk/samsung/clk-exynos-clkout.c
+++ b/drivers/clk/samsung/clk-exynos-clkout.c
@@ -142,6 +142,8 @@ CLK_OF_DECLARE(exynos4212_clkout, samsung,exynos4212-pmu,
exynos4_clkout_init);
 CLK_OF_DECLARE(exynos4412_clkout, samsung,exynos4412-pmu,
exynos4_clkout_init);
+CLK_OF_DECLARE(exynos3250_clkout, samsung,exynos3250-pmu,
+   exynos4_clkout_init);
 
 static void __init exynos5_clkout_init(struct device_node *node)
 {
-- 
2.0.0.390.gcb682f8

--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] clk: samsung: Add CLKOUT driver support for Exynos3250 SoC.

2015-03-01 Thread Tomasz Figa
2015-02-25 19:13 GMT+09:00 Inha Song ideal.s...@samsung.com:
 Hi, Tomasz,

 Thanks for you comment :)

 On Wed, 25 Feb 2015 09:54:02 +0900
 Tomasz Figa tomasz.f...@gmail.com wrote:

 Hi Inha,

 Thanks for the patch. Please see my comments inline.

 2015-02-24 18:22 GMT+09:00 Inha Song ideal.s...@samsung.com:
  This patch add CLKOUT driver support for Exynos3250 SoC.

 Could you please add a little more information? I know that it might
 be pretty obvious to people familiar with this driver and/or hardware,
 but it might be a good idea to explicitly say that the CLKOUT
 controller is compatible with Exynos4, so only a new compatible string
 is added.

 On the other hand, do you really need to add a new compatible string
 if an existing one can be reused? The reason why the DT property is
 called compatible is to be able to use the same compatible strings
 on different devices, because they are compatible, even though the
 string might have its name after only one of them. If there is some
 additional reason to add a new compatible string, please write this in
 commit message.

 In in PMU document(Document/devicetree/bindgins/arm/samsung/pmu.txt),
 samsung,exynos3250-pmu compatible string had been added.

 So I add this compatible in driver.


Ah, right, the whole PMU block is not compatible with Exynos4, so a
new compatible string is needed indeed. It should be said in patch
description, though.


 
  Signed-off-by: Inha Song ideal.s...@samsung.com
  ---
   drivers/clk/samsung/clk-exynos-clkout.c | 2 ++
   1 file changed, 2 insertions(+)
 
  diff --git a/drivers/clk/samsung/clk-exynos-clkout.c 
  b/drivers/clk/samsung/clk-exynos-clkout.c
  index 3a7cb25..1c02e73 100644
  --- a/drivers/clk/samsung/clk-exynos-clkout.c
  +++ b/drivers/clk/samsung/clk-exynos-clkout.c
  @@ -142,6 +142,8 @@ CLK_OF_DECLARE(exynos4212_clkout, 
  samsung,exynos4212-pmu,
  exynos4_clkout_init);
   CLK_OF_DECLARE(exynos4412_clkout, samsung,exynos4412-pmu,
  exynos4_clkout_init);
  +CLK_OF_DECLARE(exynos3250_clkout, samsung,exynos3250-pmu,
  +   exynos4_clkout_init);

 Are you sure that the PMU DEBUG register on Exynos3250 is indeed
 compatible with Exynos4 and not with newer SoCs? AFAIR, the only
 difference was the number of bits (4 on Exynos4 and 5 on Exynos5?) of
 the main mux.

 Exynos3250 PMU_DEBUG register is same with Exynos4. So I just use 
 exynos4_clkout_init function.
 But, on second thought, It looks good to add exynos3_clkout_init function for 
 Exynos3 SoC even though it's the same with exynos4_clkout_init.

 what is your opinion?

Well, if there is no need then I don't see any reason why having a
separate function doing the same things could have any benefits. If
some differences are discovered in future it can be always modified in
a separate patch.

Best regards,
Tomasz
--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH RESEND] ARM: EXYNOS: Remove ARCH_HAS_BANDGAP selection

2015-03-01 Thread Abhilash Kesavan
Now that the samsung thermal driver dependency on ARCH_HAS_BANDGAP
has been removed, fix the arch code selection too.

Signed-off-by: Abhilash Kesavan a.kesa...@samsung.com
Reviewed-by: Bartlomiej Zolnierkiewicz b.zolnier...@samsung.com
Acked-by: Lukasz Majewski l.majew...@samsung.com
---
 arch/arm/mach-exynos/Kconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/mach-exynos/Kconfig b/arch/arm/mach-exynos/Kconfig
index 603820e..a4abcae 100644
--- a/arch/arm/mach-exynos/Kconfig
+++ b/arch/arm/mach-exynos/Kconfig
@@ -9,7 +9,6 @@
 
 menuconfig ARCH_EXYNOS
bool Samsung EXYNOS if ARCH_MULTI_V7
-   select ARCH_HAS_BANDGAP
select ARCH_HAS_HOLES_MEMORYMODEL
select ARCH_REQUIRE_GPIOLIB
select ARM_AMBA
-- 
2.1.0

--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] pinctrl: exynos: Remove eint_gpio_init call-back for exynos7 alive pinctrl block

2015-03-01 Thread Abhilash Kesavan
The alive pin controller on exynos7 does not support external gpio
interrupts. Hence, remove the eint_gpio_init call-back for it. This
fixes the following error message seen during exynos7 boot-up:
samsung-pinctrl 1058.pinctrl: irq number not available

Signed-off-by: Abhilash Kesavan a.kesa...@samsung.com
---
 drivers/pinctrl/samsung/pinctrl-exynos.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/pinctrl/samsung/pinctrl-exynos.c 
b/drivers/pinctrl/samsung/pinctrl-exynos.c
index c8f83f9..a7e9c42 100644
--- a/drivers/pinctrl/samsung/pinctrl-exynos.c
+++ b/drivers/pinctrl/samsung/pinctrl-exynos.c
@@ -1324,7 +1324,6 @@ const struct samsung_pin_ctrl exynos7_pin_ctrl[] 
__initconst = {
/* pin-controller instance 0 Alive data */
.pin_banks  = exynos7_pin_banks0,
.nr_banks   = ARRAY_SIZE(exynos7_pin_banks0),
-   .eint_gpio_init = exynos_eint_gpio_init,
.eint_wkup_init = exynos_eint_wkup_init,
}, {
/* pin-controller instance 1 BUS0 data */
-- 
2.1.0

--
To unsubscribe from this list: send the line unsubscribe linux-samsung-soc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html