mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/4] ata: Remove wrong DISK_DRIVE symbol
@ 2013-04-28  4:27 Alexander Shiyan
  2013-04-28  4:27 ` [PATCH 2/4] ARM: omap: Remove wrong OMAP_CLOCK_ALL symbol Alexander Shiyan
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Alexander Shiyan @ 2013-04-28  4:27 UTC (permalink / raw)
  To: barebox

DISK_DRIVE is missing in Kconfig, so remove the "select" statement.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
 drivers/ata/Kconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig
index 42f2065..9830cc0 100644
--- a/drivers/ata/Kconfig
+++ b/drivers/ata/Kconfig
@@ -35,7 +35,6 @@ config DISK_ATA
 config DISK_AHCI
 	bool "AHCI support"
 	select DISK_ATA
-	select DISK_DRIVE
 
 config DISK_AHCI_IMX
 	depends on ARCH_IMX
-- 
1.8.1.5


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 2/4] ARM: omap: Remove wrong OMAP_CLOCK_ALL symbol
  2013-04-28  4:27 [PATCH 1/4] ata: Remove wrong DISK_DRIVE symbol Alexander Shiyan
@ 2013-04-28  4:27 ` Alexander Shiyan
  2013-04-28  4:27 ` [PATCH 3/4] ARM: netx: Remove references for missing boards Alexander Shiyan
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Alexander Shiyan @ 2013-04-28  4:27 UTC (permalink / raw)
  To: barebox

OMAP_CLOCK_ALL is missing in Kconfig, so remove the "select" statement
and all other references to this symbol.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
 arch/arm/configs/phycard_a_l1_defconfig | 1 -
 arch/arm/mach-omap/Kconfig              | 2 --
 arch/arm/mach-omap/omap3_clock.c        | 6 ------
 3 files changed, 9 deletions(-)

diff --git a/arch/arm/configs/phycard_a_l1_defconfig b/arch/arm/configs/phycard_a_l1_defconfig
index d90a333..fabaa2d 100644
--- a/arch/arm/configs/phycard_a_l1_defconfig
+++ b/arch/arm/configs/phycard_a_l1_defconfig
@@ -7,7 +7,6 @@ CONFIG_CPU_V7=y
 CONFIG_CPU_32v7=y
 CONFIG_BOARDINFO="Phytec phyCARD-A-L1"
 CONFIG_ARCH_OMAP3=y
-CONFIG_OMAP_CLOCK_ALL=y
 CONFIG_OMAP_CLOCK_SOURCE_S32K=y
 CONFIG_OMAP3_CLOCK_CONFIG=y
 CONFIG_OMAP3_COPY_CLOCK_SRAM=n
diff --git a/arch/arm/mach-omap/Kconfig b/arch/arm/mach-omap/Kconfig
index 42e5f4a..0913d0e 100644
--- a/arch/arm/mach-omap/Kconfig
+++ b/arch/arm/mach-omap/Kconfig
@@ -134,7 +134,6 @@ config MACH_BEAGLE
 
 config MACH_BEAGLEBONE
 	bool "Texas Instrument's Beagle Bone"
-	select OMAP_CLOCK_ALL
 	depends on ARCH_AM33XX
 	  help
 	  Say Y here if you are using Beagle Bone
@@ -179,7 +178,6 @@ config MACH_PCAAXL2
 
 config MACH_PCM051
 	bool "Phytec phyCORE pcm051"
-	select OMAP_CLOCK_ALL
 	select HAVE_DEFAULT_ENVIRONMENT_NEW
 	depends on ARCH_AM33XX
 	help
diff --git a/arch/arm/mach-omap/omap3_clock.c b/arch/arm/mach-omap/omap3_clock.c
index bcde48f..03aca49 100644
--- a/arch/arm/mach-omap/omap3_clock.c
+++ b/arch/arm/mach-omap/omap3_clock.c
@@ -652,12 +652,6 @@ void prcm_init(void)
 /**
  * @brief Enable the clks & power for perifs
  *
- * GPT2 Sysclk, ICLK,FCLK, 32k Sync is enabled by default
- * Uses CONFIG_OMAP_CLOCK_UART to enable UART clocks
- * Uses CONFIG_OMAP_CLOCK_I2C to enable I2C clocks
- * Uses CONFIG_OMAP_CLOCK_ALL to enable All Clocks!
- *    - Not a wise idea in most cases
- *
  * @return void
  */
 static void per_clocks_enable(void)
-- 
1.8.1.5


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 3/4] ARM: netx: Remove references for missing boards
  2013-04-28  4:27 [PATCH 1/4] ata: Remove wrong DISK_DRIVE symbol Alexander Shiyan
  2013-04-28  4:27 ` [PATCH 2/4] ARM: omap: Remove wrong OMAP_CLOCK_ALL symbol Alexander Shiyan
@ 2013-04-28  4:27 ` Alexander Shiyan
  2013-04-28  4:27 ` [PATCH 4/4] ARM: imx: Fix incorrect Kconfig symbols for some boards Alexander Shiyan
  2013-04-30  6:21 ` [PATCH 1/4] ata: Remove wrong DISK_DRIVE symbol Sascha Hauer
  3 siblings, 0 replies; 5+ messages in thread
From: Alexander Shiyan @ 2013-04-28  4:27 UTC (permalink / raw)
  To: barebox

Barebox do not have support for MACH_NXDKN, MACH_NXHMIBB,
MACH_NXEB500HMI and MACH_NXHX boards, so remove these symbols.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
 arch/arm/mach-netx/Kconfig | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/arch/arm/mach-netx/Kconfig b/arch/arm/mach-netx/Kconfig
index 8d8f49b..3c62d60 100644
--- a/arch/arm/mach-netx/Kconfig
+++ b/arch/arm/mach-netx/Kconfig
@@ -9,35 +9,19 @@ config BOARDINFO
 
 config NETX_SDRAM_CTRL
 	hex
-	default 0x010D0001 if MACH_NXDKN
 	default 0x010D0121 if MACH_NXDB500
-	default 0x030D0111 if MACH_NXHMIBB
-	default 0x010D0111 if MACH_NXEB500HMI
-	default 0x030D0001 if MACH_NXHX
 
 config NETX_SDRAM_TIMING_CTRL
 	hex
-	default 0x03C12151 if MACH_NXDKN
 	default 0x03C13261 if MACH_NXDB500
-	default 0x03C13251 if MACH_NXHMIBB
-	default 0x03C13251 if MACH_NXEB500HMI
-	default 0x03C23251 if MACH_NXHX
 
 config NETX_MEM_CTRL
 	hex
-	default 0x0103030F if MACH_NXDKN
 	default 0x0203030F if MACH_NXDB500
-	default 0x0103030F if MACH_NXHMIBB
-	default 0x0103030F if MACH_NXEB500HMI
-	default 0x0103030F if MACH_NXHX
 
 config NETX_COOKIE
 	hex
-	default 16 if MACH_NXDKN
 	default 32 if MACH_NXDB500
-	default 16 if MACH_NXHMIBB
-	default 16 if MACH_NXEB500HMI
-	default 16 if MACH_NXHX
 
 choice
 	prompt "Netx Board Type"
-- 
1.8.1.5


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 4/4] ARM: imx: Fix incorrect Kconfig symbols for some boards
  2013-04-28  4:27 [PATCH 1/4] ata: Remove wrong DISK_DRIVE symbol Alexander Shiyan
  2013-04-28  4:27 ` [PATCH 2/4] ARM: omap: Remove wrong OMAP_CLOCK_ALL symbol Alexander Shiyan
  2013-04-28  4:27 ` [PATCH 3/4] ARM: netx: Remove references for missing boards Alexander Shiyan
@ 2013-04-28  4:27 ` Alexander Shiyan
  2013-04-30  6:21 ` [PATCH 1/4] ata: Remove wrong DISK_DRIVE symbol Sascha Hauer
  3 siblings, 0 replies; 5+ messages in thread
From: Alexander Shiyan @ 2013-04-28  4:27 UTC (permalink / raw)
  To: barebox

This patch fix incorrect Kconfig symbols for MACH_FREESCALE_MX51_PDK,
MACH_FREESCALE_MX53_LOCO and MACH_FREESCALE_MX53_SMD.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
 arch/arm/mach-imx/Kconfig | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig
index 8ddec9d..eee6acd 100644
--- a/arch/arm/mach-imx/Kconfig
+++ b/arch/arm/mach-imx/Kconfig
@@ -17,9 +17,9 @@ config ARCH_TEXT_BASE
 	default 0x87f00000 if MACH_PCM043
 	default 0x08f80000 if MACH_SCB9328
 	default 0xa7e00000 if MACH_NESO
-	default 0x97f00000 if MACH_MX51_PDK
-	default 0x7ff00000 if MACH_MX53_LOCO
-	default 0x7ff00000 if MACH_MX53_SMD
+	default 0x97f00000 if MACH_FREESCALE_MX51_PDK
+	default 0x7ff00000 if MACH_FREESCALE_MX53_LOCO
+	default 0x7ff00000 if MACH_FREESCALE_MX53_SMD
 	default 0x87f00000 if MACH_GUF_CUPID
 	default 0x93d00000 if MACH_TX25
 	default 0x7ff00000 if MACH_TQMA53
-- 
1.8.1.5


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH 1/4] ata: Remove wrong DISK_DRIVE symbol
  2013-04-28  4:27 [PATCH 1/4] ata: Remove wrong DISK_DRIVE symbol Alexander Shiyan
                   ` (2 preceding siblings ...)
  2013-04-28  4:27 ` [PATCH 4/4] ARM: imx: Fix incorrect Kconfig symbols for some boards Alexander Shiyan
@ 2013-04-30  6:21 ` Sascha Hauer
  3 siblings, 0 replies; 5+ messages in thread
From: Sascha Hauer @ 2013-04-30  6:21 UTC (permalink / raw)
  To: Alexander Shiyan; +Cc: barebox

On Sun, Apr 28, 2013 at 08:27:26AM +0400, Alexander Shiyan wrote:
> DISK_DRIVE is missing in Kconfig, so remove the "select" statement.
> 
> Signed-off-by: Alexander Shiyan <shc_work@mail.ru>

Applied all.

Thanks
 Sascha

> ---
>  drivers/ata/Kconfig | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig
> index 42f2065..9830cc0 100644
> --- a/drivers/ata/Kconfig
> +++ b/drivers/ata/Kconfig
> @@ -35,7 +35,6 @@ config DISK_ATA
>  config DISK_AHCI
>  	bool "AHCI support"
>  	select DISK_ATA
> -	select DISK_DRIVE
>  
>  config DISK_AHCI_IMX
>  	depends on ARCH_IMX
> -- 
> 1.8.1.5
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2013-04-30  6:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-28  4:27 [PATCH 1/4] ata: Remove wrong DISK_DRIVE symbol Alexander Shiyan
2013-04-28  4:27 ` [PATCH 2/4] ARM: omap: Remove wrong OMAP_CLOCK_ALL symbol Alexander Shiyan
2013-04-28  4:27 ` [PATCH 3/4] ARM: netx: Remove references for missing boards Alexander Shiyan
2013-04-28  4:27 ` [PATCH 4/4] ARM: imx: Fix incorrect Kconfig symbols for some boards Alexander Shiyan
2013-04-30  6:21 ` [PATCH 1/4] ata: Remove wrong DISK_DRIVE symbol Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox