All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] ARM: Exynos4: NURI and UniversalC210 fixes for v3.4-rc2
@ 2012-04-06  7:43 ` Marek Szyprowski
  0 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-06  7:43 UTC (permalink / raw)
  To: linux-samsung-soc, linux-arm-kernel
  Cc: Marek Szyprowski, Kyungmin Park, Kukjin Kim

Hi Kukjin,

I've just checked the support for Samsung NURI and UniversalC210 boards
in v3.4-rc1 and found some issues. The attached patches fixes the
leftovers from missing s3c-sdhci driver changes, fixes division by
zero caused by missing initial value for xusbxti clock and removes broken
optional configuration entries for touch screen driver. It would be great
if the attached patches will get merged to v3.4-rcX series.

Best regards,
Marek Szyprowski


Patch summary:

Marek Szyprowski (4):
  ARM: Exynos4: fix SDHCI support on NURI & UniversalC210 boards
  ARM: Exynos4: fix regulator name for NURI board
  ARM: Exynos4: set fix xusbxti clock for NURI and Universal210 boards
  ARM: Exynos4: Remove broken config values for touchscren for NURI
    board

 arch/arm/mach-exynos/mach-nuri.c           |   51 +++-------------------------
 arch/arm/mach-exynos/mach-universal_c210.c |    5 ++-
 2 files changed, 9 insertions(+), 47 deletions(-)

-- 
1.7.1.569.g6f426

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/4] ARM: Exynos4: NURI and UniversalC210 fixes for v3.4-rc2
@ 2012-04-06  7:43 ` Marek Szyprowski
  0 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-06  7:43 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Kukjin,

I've just checked the support for Samsung NURI and UniversalC210 boards
in v3.4-rc1 and found some issues. The attached patches fixes the
leftovers from missing s3c-sdhci driver changes, fixes division by
zero caused by missing initial value for xusbxti clock and removes broken
optional configuration entries for touch screen driver. It would be great
if the attached patches will get merged to v3.4-rcX series.

Best regards,
Marek Szyprowski


Patch summary:

Marek Szyprowski (4):
  ARM: Exynos4: fix SDHCI support on NURI & UniversalC210 boards
  ARM: Exynos4: fix regulator name for NURI board
  ARM: Exynos4: set fix xusbxti clock for NURI and Universal210 boards
  ARM: Exynos4: Remove broken config values for touchscren for NURI
    board

 arch/arm/mach-exynos/mach-nuri.c           |   51 +++-------------------------
 arch/arm/mach-exynos/mach-universal_c210.c |    5 ++-
 2 files changed, 9 insertions(+), 47 deletions(-)

-- 
1.7.1.569.g6f426

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 1/4] ARM: Exynos4: fix SDHCI support on NURI & UniversalC210 boards
  2012-04-06  7:43 ` Marek Szyprowski
@ 2012-04-06  7:43   ` Marek Szyprowski
  -1 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-06  7:43 UTC (permalink / raw)
  To: linux-samsung-soc, linux-arm-kernel
  Cc: Marek Szyprowski, Kyungmin Park, Kukjin Kim

Some patches for s3c-sdhci driver which changed support for Exynos4 SoC
have not been merged to v3.4-rc1, while some of their followups have been
applied to mach-universal.c and mach-nuri.c. This patch reverts that
changes and add missing MMC_CAP2_BROKEN_VOLTAGE capability which got lost
together with s3c-sdhci changes.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 arch/arm/mach-exynos/mach-nuri.c           |    5 +++--
 arch/arm/mach-exynos/mach-universal_c210.c |    3 ++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-nuri.c
index b3982c8..b3966f0 100644
--- a/arch/arm/mach-exynos/mach-nuri.c
+++ b/arch/arm/mach-exynos/mach-nuri.c
@@ -112,12 +112,13 @@ static struct s3c_sdhci_platdata nuri_hsmmc0_data __initdata = {
 	.host_caps		= (MMC_CAP_8_BIT_DATA | MMC_CAP_4_BIT_DATA |
 				MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
 				MMC_CAP_ERASE),
+	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
 	.cd_type		= S3C_SDHCI_CD_PERMANENT,
 	.clk_type		= S3C_SDHCI_CLK_DIV_EXTERNAL,
 };
 
 static struct regulator_consumer_supply emmc_supplies[] = {
-	REGULATOR_SUPPLY("vmmc", "exynos4-sdhci.0"),
+	REGULATOR_SUPPLY("vmmc", "s3c-sdhci.0"),
 	REGULATOR_SUPPLY("vmmc", "dw_mmc"),
 };
 
@@ -417,7 +418,7 @@ static struct regulator_consumer_supply __initdata max8997_ldo12_[] = {
 	REGULATOR_SUPPLY("vddio", "6-003c"), /* HDC802 */
 };
 static struct regulator_consumer_supply __initdata max8997_ldo13_[] = {
-	REGULATOR_SUPPLY("vmmc", "exynos4-sdhci.2"), /* TFLASH */
+	REGULATOR_SUPPLY("vmmc", "s3c-sdhci.2"), /* TFLASH */
 };
 static struct regulator_consumer_supply __initdata max8997_ldo14_[] = {
 	REGULATOR_SUPPLY("inmotor", "max8997-haptic"),
diff --git a/arch/arm/mach-exynos/mach-universal_c210.c b/arch/arm/mach-exynos/mach-universal_c210.c
index 6bb9dbd..e10c87f 100644
--- a/arch/arm/mach-exynos/mach-universal_c210.c
+++ b/arch/arm/mach-exynos/mach-universal_c210.c
@@ -746,12 +746,13 @@ static struct s3c_sdhci_platdata universal_hsmmc0_data __initdata = {
 	.max_width		= 8,
 	.host_caps		= (MMC_CAP_8_BIT_DATA | MMC_CAP_4_BIT_DATA |
 				MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED),
+	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
 	.cd_type		= S3C_SDHCI_CD_PERMANENT,
 	.clk_type		= S3C_SDHCI_CLK_DIV_EXTERNAL,
 };
 
 static struct regulator_consumer_supply mmc0_supplies[] = {
-	REGULATOR_SUPPLY("vmmc", "exynos4-sdhci.0"),
+	REGULATOR_SUPPLY("vmmc", "s3c-sdhci.0"),
 };
 
 static struct regulator_init_data mmc0_fixed_voltage_init_data = {
-- 
1.7.1.569.g6f426

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 1/4] ARM: Exynos4: fix SDHCI support on NURI & UniversalC210 boards
@ 2012-04-06  7:43   ` Marek Szyprowski
  0 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-06  7:43 UTC (permalink / raw)
  To: linux-arm-kernel

Some patches for s3c-sdhci driver which changed support for Exynos4 SoC
have not been merged to v3.4-rc1, while some of their followups have been
applied to mach-universal.c and mach-nuri.c. This patch reverts that
changes and add missing MMC_CAP2_BROKEN_VOLTAGE capability which got lost
together with s3c-sdhci changes.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 arch/arm/mach-exynos/mach-nuri.c           |    5 +++--
 arch/arm/mach-exynos/mach-universal_c210.c |    3 ++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-nuri.c
index b3982c8..b3966f0 100644
--- a/arch/arm/mach-exynos/mach-nuri.c
+++ b/arch/arm/mach-exynos/mach-nuri.c
@@ -112,12 +112,13 @@ static struct s3c_sdhci_platdata nuri_hsmmc0_data __initdata = {
 	.host_caps		= (MMC_CAP_8_BIT_DATA | MMC_CAP_4_BIT_DATA |
 				MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
 				MMC_CAP_ERASE),
+	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
 	.cd_type		= S3C_SDHCI_CD_PERMANENT,
 	.clk_type		= S3C_SDHCI_CLK_DIV_EXTERNAL,
 };
 
 static struct regulator_consumer_supply emmc_supplies[] = {
-	REGULATOR_SUPPLY("vmmc", "exynos4-sdhci.0"),
+	REGULATOR_SUPPLY("vmmc", "s3c-sdhci.0"),
 	REGULATOR_SUPPLY("vmmc", "dw_mmc"),
 };
 
@@ -417,7 +418,7 @@ static struct regulator_consumer_supply __initdata max8997_ldo12_[] = {
 	REGULATOR_SUPPLY("vddio", "6-003c"), /* HDC802 */
 };
 static struct regulator_consumer_supply __initdata max8997_ldo13_[] = {
-	REGULATOR_SUPPLY("vmmc", "exynos4-sdhci.2"), /* TFLASH */
+	REGULATOR_SUPPLY("vmmc", "s3c-sdhci.2"), /* TFLASH */
 };
 static struct regulator_consumer_supply __initdata max8997_ldo14_[] = {
 	REGULATOR_SUPPLY("inmotor", "max8997-haptic"),
diff --git a/arch/arm/mach-exynos/mach-universal_c210.c b/arch/arm/mach-exynos/mach-universal_c210.c
index 6bb9dbd..e10c87f 100644
--- a/arch/arm/mach-exynos/mach-universal_c210.c
+++ b/arch/arm/mach-exynos/mach-universal_c210.c
@@ -746,12 +746,13 @@ static struct s3c_sdhci_platdata universal_hsmmc0_data __initdata = {
 	.max_width		= 8,
 	.host_caps		= (MMC_CAP_8_BIT_DATA | MMC_CAP_4_BIT_DATA |
 				MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED),
+	.host_caps2		= MMC_CAP2_BROKEN_VOLTAGE,
 	.cd_type		= S3C_SDHCI_CD_PERMANENT,
 	.clk_type		= S3C_SDHCI_CLK_DIV_EXTERNAL,
 };
 
 static struct regulator_consumer_supply mmc0_supplies[] = {
-	REGULATOR_SUPPLY("vmmc", "exynos4-sdhci.0"),
+	REGULATOR_SUPPLY("vmmc", "s3c-sdhci.0"),
 };
 
 static struct regulator_init_data mmc0_fixed_voltage_init_data = {
-- 
1.7.1.569.g6f426

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 2/4] ARM: Exynos4: fix regulator name for NURI board
  2012-04-06  7:43 ` Marek Szyprowski
@ 2012-04-06  7:43   ` Marek Szyprowski
  -1 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-06  7:43 UTC (permalink / raw)
  To: linux-samsung-soc, linux-arm-kernel
  Cc: Marek Szyprowski, Kyungmin Park, Kukjin Kim

Regulator names should not contain slash to avoid issues with debugfs.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 arch/arm/mach-exynos/mach-nuri.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-nuri.c
index b3966f0..88a3b5c3 100644
--- a/arch/arm/mach-exynos/mach-nuri.c
+++ b/arch/arm/mach-exynos/mach-nuri.c
@@ -572,7 +572,7 @@ static struct regulator_init_data __initdata max8997_ldo7_data = {
 
 static struct regulator_init_data __initdata max8997_ldo8_data = {
 	.constraints	= {
-		.name		= "VUSB/VDAC_3.3V_C210",
+		.name		= "VUSB+VDAC_3.3V_C210",
 		.min_uV		= 3300000,
 		.max_uV		= 3300000,
 		.valid_ops_mask	= REGULATOR_CHANGE_STATUS,
-- 
1.7.1.569.g6f426

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 2/4] ARM: Exynos4: fix regulator name for NURI board
@ 2012-04-06  7:43   ` Marek Szyprowski
  0 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-06  7:43 UTC (permalink / raw)
  To: linux-arm-kernel

Regulator names should not contain slash to avoid issues with debugfs.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 arch/arm/mach-exynos/mach-nuri.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-nuri.c
index b3966f0..88a3b5c3 100644
--- a/arch/arm/mach-exynos/mach-nuri.c
+++ b/arch/arm/mach-exynos/mach-nuri.c
@@ -572,7 +572,7 @@ static struct regulator_init_data __initdata max8997_ldo7_data = {
 
 static struct regulator_init_data __initdata max8997_ldo8_data = {
 	.constraints	= {
-		.name		= "VUSB/VDAC_3.3V_C210",
+		.name		= "VUSB+VDAC_3.3V_C210",
 		.min_uV		= 3300000,
 		.max_uV		= 3300000,
 		.valid_ops_mask	= REGULATOR_CHANGE_STATUS,
-- 
1.7.1.569.g6f426

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 3/4] ARM: Exynos4: set fix xusbxti clock for NURI and Universal210 boards
  2012-04-06  7:43 ` Marek Szyprowski
@ 2012-04-06  7:43   ` Marek Szyprowski
  -1 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-06  7:43 UTC (permalink / raw)
  To: linux-samsung-soc, linux-arm-kernel
  Cc: Marek Szyprowski, Kyungmin Park, Kukjin Kim

On some versions of NURI and UniversalC210 boards, camera clocks are
routed directly to xusbxti clock source. This patch sets the correct
value for this clock to let usb and camera sensors to work correctly and
avoid division by zero on driver's probe.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 arch/arm/mach-exynos/mach-nuri.c           |    2 +-
 arch/arm/mach-exynos/mach-universal_c210.c |    2 ++
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-nuri.c
index 88a3b5c3..d55298d 100644
--- a/arch/arm/mach-exynos/mach-nuri.c
+++ b/arch/arm/mach-exynos/mach-nuri.c
@@ -1348,6 +1348,7 @@ static struct platform_device *nuri_devices[] __initdata = {
 
 static void __init nuri_map_io(void)
 {
+	clk_xusbxti.rate = 24000000;
 	exynos_init_io(NULL, 0);
 	s3c24xx_init_clocks(24000000);
 	s3c24xx_init_uarts(nuri_uartcfgs, ARRAY_SIZE(nuri_uartcfgs));
@@ -1380,7 +1381,6 @@ static void __init nuri_machine_init(void)
 	nuri_camera_init();
 
 	nuri_ehci_init();
-	clk_xusbxti.rate = 24000000;
 
 	/* Last */
 	platform_add_devices(nuri_devices, ARRAY_SIZE(nuri_devices));
diff --git a/arch/arm/mach-exynos/mach-universal_c210.c b/arch/arm/mach-exynos/mach-universal_c210.c
index e10c87f..a6f13ce 100644
--- a/arch/arm/mach-exynos/mach-universal_c210.c
+++ b/arch/arm/mach-exynos/mach-universal_c210.c
@@ -29,6 +29,7 @@
 #include <asm/mach-types.h>
 
 #include <plat/regs-serial.h>
+#include <plat/clock.h>
 #include <plat/cpu.h>
 #include <plat/devs.h>
 #include <plat/iic.h>
@@ -1058,6 +1059,7 @@ static struct platform_device *universal_devices[] __initdata = {
 
 static void __init universal_map_io(void)
 {
+	clk_xusbxti.rate = 24000000;
 	exynos_init_io(NULL, 0);
 	s3c24xx_init_clocks(24000000);
 	s3c24xx_init_uarts(universal_uartcfgs, ARRAY_SIZE(universal_uartcfgs));
-- 
1.7.1.569.g6f426

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 3/4] ARM: Exynos4: set fix xusbxti clock for NURI and Universal210 boards
@ 2012-04-06  7:43   ` Marek Szyprowski
  0 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-06  7:43 UTC (permalink / raw)
  To: linux-arm-kernel

On some versions of NURI and UniversalC210 boards, camera clocks are
routed directly to xusbxti clock source. This patch sets the correct
value for this clock to let usb and camera sensors to work correctly and
avoid division by zero on driver's probe.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 arch/arm/mach-exynos/mach-nuri.c           |    2 +-
 arch/arm/mach-exynos/mach-universal_c210.c |    2 ++
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-nuri.c
index 88a3b5c3..d55298d 100644
--- a/arch/arm/mach-exynos/mach-nuri.c
+++ b/arch/arm/mach-exynos/mach-nuri.c
@@ -1348,6 +1348,7 @@ static struct platform_device *nuri_devices[] __initdata = {
 
 static void __init nuri_map_io(void)
 {
+	clk_xusbxti.rate = 24000000;
 	exynos_init_io(NULL, 0);
 	s3c24xx_init_clocks(24000000);
 	s3c24xx_init_uarts(nuri_uartcfgs, ARRAY_SIZE(nuri_uartcfgs));
@@ -1380,7 +1381,6 @@ static void __init nuri_machine_init(void)
 	nuri_camera_init();
 
 	nuri_ehci_init();
-	clk_xusbxti.rate = 24000000;
 
 	/* Last */
 	platform_add_devices(nuri_devices, ARRAY_SIZE(nuri_devices));
diff --git a/arch/arm/mach-exynos/mach-universal_c210.c b/arch/arm/mach-exynos/mach-universal_c210.c
index e10c87f..a6f13ce 100644
--- a/arch/arm/mach-exynos/mach-universal_c210.c
+++ b/arch/arm/mach-exynos/mach-universal_c210.c
@@ -29,6 +29,7 @@
 #include <asm/mach-types.h>
 
 #include <plat/regs-serial.h>
+#include <plat/clock.h>
 #include <plat/cpu.h>
 #include <plat/devs.h>
 #include <plat/iic.h>
@@ -1058,6 +1059,7 @@ static struct platform_device *universal_devices[] __initdata = {
 
 static void __init universal_map_io(void)
 {
+	clk_xusbxti.rate = 24000000;
 	exynos_init_io(NULL, 0);
 	s3c24xx_init_clocks(24000000);
 	s3c24xx_init_uarts(universal_uartcfgs, ARRAY_SIZE(universal_uartcfgs));
-- 
1.7.1.569.g6f426

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 4/4] ARM: Exynos4: Remove broken config values for touchscren for NURI board
  2012-04-06  7:43 ` Marek Szyprowski
@ 2012-04-06  7:43   ` Marek Szyprowski
  -1 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-06  7:43 UTC (permalink / raw)
  To: linux-samsung-soc, linux-arm-kernel
  Cc: Marek Szyprowski, Kyungmin Park, Kukjin Kim

The atmel_mxt_ts driver has been extended to support more 'configuration
objects' in commit 81c88a711 ("Input: atmel_mxt_ts - update object list"),
what broke the configuration values for NURI board. These values are
optional anyway, so remove them to get the driver working correctly.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 arch/arm/mach-exynos/mach-nuri.c |   42 --------------------------------------
 1 files changed, 0 insertions(+), 42 deletions(-)

diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-nuri.c
index d55298d..3009a86 100644
--- a/arch/arm/mach-exynos/mach-nuri.c
+++ b/arch/arm/mach-exynos/mach-nuri.c
@@ -308,49 +308,7 @@ static struct i2c_board_info i2c1_devs[] __initdata = {
 };
 
 /* TSP */
-static u8 mxt_init_vals[] = {
-	/* MXT_GEN_COMMAND(6) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	/* MXT_GEN_POWER(7) */
-	0x20, 0xff, 0x32,
-	/* MXT_GEN_ACQUIRE(8) */
-	0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, 0x23,
-	/* MXT_TOUCH_MULTI(9) */
-	0x00, 0x00, 0x00, 0x13, 0x0b, 0x00, 0x00, 0x00, 0x02, 0x00,
-	0x00, 0x01, 0x01, 0x0e, 0x0a, 0x0a, 0x0a, 0x0a, 0x00, 0x00,
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	0x00,
-	/* MXT_TOUCH_KEYARRAY(15) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
-	0x00,
-	/* MXT_SPT_GPIOPWM(19) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	/* MXT_PROCI_GRIPFACE(20) */
-	0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x28, 0x04,
-	0x0f, 0x0a,
-	/* MXT_PROCG_NOISE(22) */
-	0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x23, 0x00,
-	0x00, 0x05, 0x0f, 0x19, 0x23, 0x2d, 0x03,
-	/* MXT_TOUCH_PROXIMITY(23) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	0x00, 0x00, 0x00, 0x00, 0x00,
-	/* MXT_PROCI_ONETOUCH(24) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	/* MXT_SPT_SELFTEST(25) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	0x00, 0x00, 0x00, 0x00,
-	/* MXT_PROCI_TWOTOUCH(27) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	/* MXT_SPT_CTECONFIG(28) */
-	0x00, 0x00, 0x02, 0x08, 0x10, 0x00,
-};
-
 static struct mxt_platform_data mxt_platform_data = {
-	.config			= mxt_init_vals,
-	.config_length		= ARRAY_SIZE(mxt_init_vals),
-
 	.x_line			= 18,
 	.y_line			= 11,
 	.x_size			= 1024,
-- 
1.7.1.569.g6f426

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [PATCH 4/4] ARM: Exynos4: Remove broken config values for touchscren for NURI board
@ 2012-04-06  7:43   ` Marek Szyprowski
  0 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-06  7:43 UTC (permalink / raw)
  To: linux-arm-kernel

The atmel_mxt_ts driver has been extended to support more 'configuration
objects' in commit 81c88a711 ("Input: atmel_mxt_ts - update object list"),
what broke the configuration values for NURI board. These values are
optional anyway, so remove them to get the driver working correctly.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 arch/arm/mach-exynos/mach-nuri.c |   42 --------------------------------------
 1 files changed, 0 insertions(+), 42 deletions(-)

diff --git a/arch/arm/mach-exynos/mach-nuri.c b/arch/arm/mach-exynos/mach-nuri.c
index d55298d..3009a86 100644
--- a/arch/arm/mach-exynos/mach-nuri.c
+++ b/arch/arm/mach-exynos/mach-nuri.c
@@ -308,49 +308,7 @@ static struct i2c_board_info i2c1_devs[] __initdata = {
 };
 
 /* TSP */
-static u8 mxt_init_vals[] = {
-	/* MXT_GEN_COMMAND(6) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	/* MXT_GEN_POWER(7) */
-	0x20, 0xff, 0x32,
-	/* MXT_GEN_ACQUIRE(8) */
-	0x0a, 0x00, 0x05, 0x00, 0x00, 0x00, 0x09, 0x23,
-	/* MXT_TOUCH_MULTI(9) */
-	0x00, 0x00, 0x00, 0x13, 0x0b, 0x00, 0x00, 0x00, 0x02, 0x00,
-	0x00, 0x01, 0x01, 0x0e, 0x0a, 0x0a, 0x0a, 0x0a, 0x00, 0x00,
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	0x00,
-	/* MXT_TOUCH_KEYARRAY(15) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00,
-	0x00,
-	/* MXT_SPT_GPIOPWM(19) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	/* MXT_PROCI_GRIPFACE(20) */
-	0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x50, 0x28, 0x04,
-	0x0f, 0x0a,
-	/* MXT_PROCG_NOISE(22) */
-	0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x23, 0x00,
-	0x00, 0x05, 0x0f, 0x19, 0x23, 0x2d, 0x03,
-	/* MXT_TOUCH_PROXIMITY(23) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	0x00, 0x00, 0x00, 0x00, 0x00,
-	/* MXT_PROCI_ONETOUCH(24) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	/* MXT_SPT_SELFTEST(25) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	0x00, 0x00, 0x00, 0x00,
-	/* MXT_PROCI_TWOTOUCH(27) */
-	0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
-	/* MXT_SPT_CTECONFIG(28) */
-	0x00, 0x00, 0x02, 0x08, 0x10, 0x00,
-};
-
 static struct mxt_platform_data mxt_platform_data = {
-	.config			= mxt_init_vals,
-	.config_length		= ARRAY_SIZE(mxt_init_vals),
-
 	.x_line			= 18,
 	.y_line			= 11,
 	.x_size			= 1024,
-- 
1.7.1.569.g6f426

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: [PATCH 0/4] ARM: Exynos4: NURI and UniversalC210 fixes for v3.4-rc2
  2012-04-06  7:43 ` Marek Szyprowski
@ 2012-04-10 17:05   ` Kukjin Kim
  -1 siblings, 0 replies; 18+ messages in thread
From: Kukjin Kim @ 2012-04-10 17:05 UTC (permalink / raw)
  To: Marek Szyprowski
  Cc: linux-samsung-soc, linux-arm-kernel, Kyungmin Park, Kukjin Kim

Marek Szyprowski wrote:
> Hi Kukjin,
> 
Hi Marek,

> I've just checked the support for Samsung NURI and UniversalC210 boards
> in v3.4-rc1 and found some issues. The attached patches fixes the
> leftovers from missing s3c-sdhci driver changes, fixes division by
> zero caused by missing initial value for xusbxti clock and removes broken
> optional configuration entries for touch screen driver. It would be great
> if the attached patches will get merged to v3.4-rcX series.
> 
OK, looks good to me, applied.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

> Best regards,
> Marek Szyprowski
> 
> 
> Patch summary:
> 
> Marek Szyprowski (4):
>    ARM: Exynos4: fix SDHCI support on NURI&  UniversalC210 boards
>    ARM: Exynos4: fix regulator name for NURI board
>    ARM: Exynos4: set fix xusbxti clock for NURI and Universal210 boards
>    ARM: Exynos4: Remove broken config values for touchscren for NURI
>      board
> 
>   arch/arm/mach-exynos/mach-nuri.c           |   51 +++-------------------------
>   arch/arm/mach-exynos/mach-universal_c210.c |    5 ++-
>   2 files changed, 9 insertions(+), 47 deletions(-)
> 

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/4] ARM: Exynos4: NURI and UniversalC210 fixes for v3.4-rc2
@ 2012-04-10 17:05   ` Kukjin Kim
  0 siblings, 0 replies; 18+ messages in thread
From: Kukjin Kim @ 2012-04-10 17:05 UTC (permalink / raw)
  To: linux-arm-kernel

Marek Szyprowski wrote:
> Hi Kukjin,
> 
Hi Marek,

> I've just checked the support for Samsung NURI and UniversalC210 boards
> in v3.4-rc1 and found some issues. The attached patches fixes the
> leftovers from missing s3c-sdhci driver changes, fixes division by
> zero caused by missing initial value for xusbxti clock and removes broken
> optional configuration entries for touch screen driver. It would be great
> if the attached patches will get merged to v3.4-rcX series.
> 
OK, looks good to me, applied.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

> Best regards,
> Marek Szyprowski
> 
> 
> Patch summary:
> 
> Marek Szyprowski (4):
>    ARM: Exynos4: fix SDHCI support on NURI&  UniversalC210 boards
>    ARM: Exynos4: fix regulator name for NURI board
>    ARM: Exynos4: set fix xusbxti clock for NURI and Universal210 boards
>    ARM: Exynos4: Remove broken config values for touchscren for NURI
>      board
> 
>   arch/arm/mach-exynos/mach-nuri.c           |   51 +++-------------------------
>   arch/arm/mach-exynos/mach-universal_c210.c |    5 ++-
>   2 files changed, 9 insertions(+), 47 deletions(-)
> 

^ permalink raw reply	[flat|nested] 18+ messages in thread

* RE: [PATCH 0/4] ARM: Exynos4: NURI and UniversalC210 fixes for v3.4-rc2
  2012-04-10 17:05   ` Kukjin Kim
@ 2012-04-11  6:42     ` Marek Szyprowski
  -1 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-11  6:42 UTC (permalink / raw)
  To: 'Kukjin Kim'
  Cc: linux-samsung-soc, linux-arm-kernel, 'Kyungmin Park'

Hi Kukjin,

On Tuesday, April 10, 2012 7:06 PM Kukjin Kim wrote:

> > I've just checked the support for Samsung NURI and UniversalC210 boards
> > in v3.4-rc1 and found some issues. The attached patches fixes the
> > leftovers from missing s3c-sdhci driver changes, fixes division by
> > zero caused by missing initial value for xusbxti clock and removes broken
> > optional configuration entries for touch screen driver. It would be great
> > if the attached patches will get merged to v3.4-rcX series.
> >
> OK, looks good to me, applied.

Huh, it doesn't look that easy... 

I've just noticed that v3.4-rc2 comes with missing s3c-sdhci driver patches 
(see commit 1ddca05743525), so you need a bit more work on your fixes branch 
to get sdhci working again. Please restore patches 'ARM: EXYNOS: use 
'exynos4-sdhci' as device name for sdhci controllers' and 'ARM: SAMSUNG: 
remove all uses of clk_type member in sdhci platform data' as well as the
other patches which fixes issues after changing the name of sdhci platform 
devices from s3c-sdhci to exynos4-sdhci. My patch 'ARM: EXYNOS: fix SDHCI 
support on NURI and UniversalC210 boards' should be dropped then.

If you have any problems, let me know, I have them already collected and 
rebased onto v3.4-rc2, so I can resend an updated version.

Best regards
-- 
Marek Szyprowski
Samsung Poland R&D Center

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/4] ARM: Exynos4: NURI and UniversalC210 fixes for v3.4-rc2
@ 2012-04-11  6:42     ` Marek Szyprowski
  0 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-11  6:42 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Kukjin,

On Tuesday, April 10, 2012 7:06 PM Kukjin Kim wrote:

> > I've just checked the support for Samsung NURI and UniversalC210 boards
> > in v3.4-rc1 and found some issues. The attached patches fixes the
> > leftovers from missing s3c-sdhci driver changes, fixes division by
> > zero caused by missing initial value for xusbxti clock and removes broken
> > optional configuration entries for touch screen driver. It would be great
> > if the attached patches will get merged to v3.4-rcX series.
> >
> OK, looks good to me, applied.

Huh, it doesn't look that easy... 

I've just noticed that v3.4-rc2 comes with missing s3c-sdhci driver patches 
(see commit 1ddca05743525), so you need a bit more work on your fixes branch 
to get sdhci working again. Please restore patches 'ARM: EXYNOS: use 
'exynos4-sdhci' as device name for sdhci controllers' and 'ARM: SAMSUNG: 
remove all uses of clk_type member in sdhci platform data' as well as the
other patches which fixes issues after changing the name of sdhci platform 
devices from s3c-sdhci to exynos4-sdhci. My patch 'ARM: EXYNOS: fix SDHCI 
support on NURI and UniversalC210 boards' should be dropped then.

If you have any problems, let me know, I have them already collected and 
rebased onto v3.4-rc2, so I can resend an updated version.

Best regards
-- 
Marek Szyprowski
Samsung Poland R&D Center

^ permalink raw reply	[flat|nested] 18+ messages in thread

* Re: [PATCH 0/4] ARM: Exynos4: NURI and UniversalC210 fixes for v3.4-rc2
  2012-04-11  6:42     ` Marek Szyprowski
@ 2012-04-14 15:50       ` Kukjin Kim
  -1 siblings, 0 replies; 18+ messages in thread
From: Kukjin Kim @ 2012-04-14 15:50 UTC (permalink / raw)
  To: Marek Szyprowski
  Cc: 'Kukjin Kim',
	linux-samsung-soc, linux-arm-kernel, 'Kyungmin Park'

On 04/10/12 23:42, Marek Szyprowski wrote:
> Hi Kukjin,
>
Hi Marek :)

> On Tuesday, April 10, 2012 7:06 PM Kukjin Kim wrote:
>
>>> I've just checked the support for Samsung NURI and UniversalC210 boards
>>> in v3.4-rc1 and found some issues. The attached patches fixes the
>>> leftovers from missing s3c-sdhci driver changes, fixes division by
>>> zero caused by missing initial value for xusbxti clock and removes broken
>>> optional configuration entries for touch screen driver. It would be great
>>> if the attached patches will get merged to v3.4-rcX series.
>>>
>> OK, looks good to me, applied.
>
> Huh, it doesn't look that easy...
>
> I've just noticed that v3.4-rc2 comes with missing s3c-sdhci driver patches
> (see commit 1ddca05743525), so you need a bit more work on your fixes branch
> to get sdhci working again. Please restore patches 'ARM: EXYNOS: use
> 'exynos4-sdhci' as device name for sdhci controllers' and 'ARM: SAMSUNG:
> remove all uses of clk_type member in sdhci platform data' as well as the
> other patches which fixes issues after changing the name of sdhci platform
> devices from s3c-sdhci to exynos4-sdhci. My patch 'ARM: EXYNOS: fix SDHCI
> support on NURI and UniversalC210 boards' should be dropped then.
>
> If you have any problems, let me know, I have them already collected and
> rebased onto v3.4-rc2, so I can resend an updated version.
>

Thanks for your reminder. I re-worked Thomas' patches you said for it 
and you can check it in my -next and -fixes-3 and I'm looking at that.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/4] ARM: Exynos4: NURI and UniversalC210 fixes for v3.4-rc2
@ 2012-04-14 15:50       ` Kukjin Kim
  0 siblings, 0 replies; 18+ messages in thread
From: Kukjin Kim @ 2012-04-14 15:50 UTC (permalink / raw)
  To: linux-arm-kernel

On 04/10/12 23:42, Marek Szyprowski wrote:
> Hi Kukjin,
>
Hi Marek :)

> On Tuesday, April 10, 2012 7:06 PM Kukjin Kim wrote:
>
>>> I've just checked the support for Samsung NURI and UniversalC210 boards
>>> in v3.4-rc1 and found some issues. The attached patches fixes the
>>> leftovers from missing s3c-sdhci driver changes, fixes division by
>>> zero caused by missing initial value for xusbxti clock and removes broken
>>> optional configuration entries for touch screen driver. It would be great
>>> if the attached patches will get merged to v3.4-rcX series.
>>>
>> OK, looks good to me, applied.
>
> Huh, it doesn't look that easy...
>
> I've just noticed that v3.4-rc2 comes with missing s3c-sdhci driver patches
> (see commit 1ddca05743525), so you need a bit more work on your fixes branch
> to get sdhci working again. Please restore patches 'ARM: EXYNOS: use
> 'exynos4-sdhci' as device name for sdhci controllers' and 'ARM: SAMSUNG:
> remove all uses of clk_type member in sdhci platform data' as well as the
> other patches which fixes issues after changing the name of sdhci platform
> devices from s3c-sdhci to exynos4-sdhci. My patch 'ARM: EXYNOS: fix SDHCI
> support on NURI and UniversalC210 boards' should be dropped then.
>
> If you have any problems, let me know, I have them already collected and
> rebased onto v3.4-rc2, so I can resend an updated version.
>

Thanks for your reminder. I re-worked Thomas' patches you said for it 
and you can check it in my -next and -fixes-3 and I'm looking at that.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.

^ permalink raw reply	[flat|nested] 18+ messages in thread

* RE: [PATCH 0/4] ARM: Exynos4: NURI and UniversalC210 fixes for v3.4-rc2
  2012-04-14 15:50       ` Kukjin Kim
@ 2012-04-16  6:39         ` Marek Szyprowski
  -1 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-16  6:39 UTC (permalink / raw)
  To: 'Kukjin Kim'
  Cc: linux-samsung-soc, linux-arm-kernel, 'Kyungmin Park'

Hi Kukjin,

On Saturday, April 14, 2012 5:50 PM Kukjin Kim wrote:

> >>> I've just checked the support for Samsung NURI and UniversalC210 boards
> >>> in v3.4-rc1 and found some issues. The attached patches fixes the
> >>> leftovers from missing s3c-sdhci driver changes, fixes division by
> >>> zero caused by missing initial value for xusbxti clock and removes broken
> >>> optional configuration entries for touch screen driver. It would be great
> >>> if the attached patches will get merged to v3.4-rcX series.
> >>>
> >> OK, looks good to me, applied.
> >
> > Huh, it doesn't look that easy...
> >
> > I've just noticed that v3.4-rc2 comes with missing s3c-sdhci driver patches
> > (see commit 1ddca05743525), so you need a bit more work on your fixes branch
> > to get sdhci working again. Please restore patches 'ARM: EXYNOS: use
> > 'exynos4-sdhci' as device name for sdhci controllers' and 'ARM: SAMSUNG:
> > remove all uses of clk_type member in sdhci platform data' as well as the
> > other patches which fixes issues after changing the name of sdhci platform
> > devices from s3c-sdhci to exynos4-sdhci. My patch 'ARM: EXYNOS: fix SDHCI
> > support on NURI and UniversalC210 boards' should be dropped then.
> >
> > If you have any problems, let me know, I have them already collected and
> > rebased onto v3.4-rc2, so I can resend an updated version.
> 
> Thanks for your reminder. I re-worked Thomas' patches you said for it
> and you can check it in my -next and -fixes-3 and I'm looking at that.

Thanks, now it is much better. 

The only missing thing are host_caps2 entry updates, which I've posted a few 
minutes ago in '[PATCH for v3.4-rc3] ARM: Samsung: add missing 
MMC_CAP2_BROKEN_VOLTAGE capability' mail.

I would also like to remind that UniversalC210 board requires 'ARM: Exynos4:
use s5p-timer for UniversalC210 board' bugfix/workaround to work with recent 
kernels. Any chance to get this patch merged? It has been (re)posted many 
times since v3.2-rc1 if I remember correctly...

Best regards
-- 
Marek Szyprowski
Samsung Poland R&D Center

^ permalink raw reply	[flat|nested] 18+ messages in thread

* [PATCH 0/4] ARM: Exynos4: NURI and UniversalC210 fixes for v3.4-rc2
@ 2012-04-16  6:39         ` Marek Szyprowski
  0 siblings, 0 replies; 18+ messages in thread
From: Marek Szyprowski @ 2012-04-16  6:39 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Kukjin,

On Saturday, April 14, 2012 5:50 PM Kukjin Kim wrote:

> >>> I've just checked the support for Samsung NURI and UniversalC210 boards
> >>> in v3.4-rc1 and found some issues. The attached patches fixes the
> >>> leftovers from missing s3c-sdhci driver changes, fixes division by
> >>> zero caused by missing initial value for xusbxti clock and removes broken
> >>> optional configuration entries for touch screen driver. It would be great
> >>> if the attached patches will get merged to v3.4-rcX series.
> >>>
> >> OK, looks good to me, applied.
> >
> > Huh, it doesn't look that easy...
> >
> > I've just noticed that v3.4-rc2 comes with missing s3c-sdhci driver patches
> > (see commit 1ddca05743525), so you need a bit more work on your fixes branch
> > to get sdhci working again. Please restore patches 'ARM: EXYNOS: use
> > 'exynos4-sdhci' as device name for sdhci controllers' and 'ARM: SAMSUNG:
> > remove all uses of clk_type member in sdhci platform data' as well as the
> > other patches which fixes issues after changing the name of sdhci platform
> > devices from s3c-sdhci to exynos4-sdhci. My patch 'ARM: EXYNOS: fix SDHCI
> > support on NURI and UniversalC210 boards' should be dropped then.
> >
> > If you have any problems, let me know, I have them already collected and
> > rebased onto v3.4-rc2, so I can resend an updated version.
> 
> Thanks for your reminder. I re-worked Thomas' patches you said for it
> and you can check it in my -next and -fixes-3 and I'm looking at that.

Thanks, now it is much better. 

The only missing thing are host_caps2 entry updates, which I've posted a few 
minutes ago in '[PATCH for v3.4-rc3] ARM: Samsung: add missing 
MMC_CAP2_BROKEN_VOLTAGE capability' mail.

I would also like to remind that UniversalC210 board requires 'ARM: Exynos4:
use s5p-timer for UniversalC210 board' bugfix/workaround to work with recent 
kernels. Any chance to get this patch merged? It has been (re)posted many 
times since v3.2-rc1 if I remember correctly...

Best regards
-- 
Marek Szyprowski
Samsung Poland R&D Center

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2012-04-16  6:40 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-06  7:43 [PATCH 0/4] ARM: Exynos4: NURI and UniversalC210 fixes for v3.4-rc2 Marek Szyprowski
2012-04-06  7:43 ` Marek Szyprowski
2012-04-06  7:43 ` [PATCH 1/4] ARM: Exynos4: fix SDHCI support on NURI & UniversalC210 boards Marek Szyprowski
2012-04-06  7:43   ` Marek Szyprowski
2012-04-06  7:43 ` [PATCH 2/4] ARM: Exynos4: fix regulator name for NURI board Marek Szyprowski
2012-04-06  7:43   ` Marek Szyprowski
2012-04-06  7:43 ` [PATCH 3/4] ARM: Exynos4: set fix xusbxti clock for NURI and Universal210 boards Marek Szyprowski
2012-04-06  7:43   ` Marek Szyprowski
2012-04-06  7:43 ` [PATCH 4/4] ARM: Exynos4: Remove broken config values for touchscren for NURI board Marek Szyprowski
2012-04-06  7:43   ` Marek Szyprowski
2012-04-10 17:05 ` [PATCH 0/4] ARM: Exynos4: NURI and UniversalC210 fixes for v3.4-rc2 Kukjin Kim
2012-04-10 17:05   ` Kukjin Kim
2012-04-11  6:42   ` Marek Szyprowski
2012-04-11  6:42     ` Marek Szyprowski
2012-04-14 15:50     ` Kukjin Kim
2012-04-14 15:50       ` Kukjin Kim
2012-04-16  6:39       ` Marek Szyprowski
2012-04-16  6:39         ` Marek Szyprowski

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.