Merge tag 'tegra-for-3.10-multiplatform' of git://git.kernel.org/pub/scm/linux/kernel...
authorArnd Bergmann <arnd@arndb.de>
Tue, 9 Apr 2013 14:55:15 +0000 (16:55 +0200)
committerArnd Bergmann <arnd@arndb.de>
Tue, 9 Apr 2013 14:55:15 +0000 (16:55 +0200)
From Stephen Warren <swarren@wwwdotorg.org>:

ARM: tegra: multi-platform conversion

This branch converts Tegra to support multi-platform/single-zImage.

One header is made accessible to drivers. The earlyprintk implementation
is moved to the multi-platform location. Some Kconfig changes are made
to enable multi-platform. Some dead files are deleted.

The APIs exposed in the now-global tegra-powergate.h should be replaced
with standard reset and power domain APIs in the future.

This branch is based on (part of) the previous soc pull request.

* tag 'tegra-for-3.10-multiplatform' of git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra:
  ARM: tegra: convert to multi-platform
  ARM: tegra: move <mach/powergate.h> to <linux/tegra-powergate.h>

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
12 files changed:
arch/arm/Kconfig
arch/arm/mach-tegra/Kconfig
arch/arm/mach-tegra/Makefile.boot [deleted file]
arch/arm/mach-tegra/board.h
arch/arm/mach-tegra/common.c
arch/arm/mach-tegra/include/mach/powergate.h [deleted file]
arch/arm/mach-tegra/include/mach/timex.h [deleted file]
arch/arm/mach-tegra/include/mach/uncompress.h [deleted file]
arch/arm/mach-tegra/pcie.c
arch/arm/mach-tegra/powergate.c
drivers/clk/tegra/clk-tegra30.c
include/linux/tegra-powergate.h [new file with mode: 0644]

index 6584941e0fab2fc3dad21f6d9e937031c80179f2..3a6333e66b419082fb07265e6b9ca27553aa63c0 100644 (file)
@@ -600,25 +600,6 @@ config ARCH_LPC32XX
        help
          Support for the NXP LPC32XX family of processors
 
-config ARCH_TEGRA
-       bool "NVIDIA Tegra"
-       select ARCH_HAS_CPUFREQ
-       select ARCH_REQUIRE_GPIOLIB
-       select CLKDEV_LOOKUP
-       select CLKSRC_MMIO
-       select CLKSRC_OF
-       select COMMON_CLK
-       select GENERIC_CLOCKEVENTS
-       select HAVE_CLK
-       select HAVE_SMP
-       select MIGHT_HAVE_CACHE_L2X0
-       select SOC_BUS
-       select SPARSE_IRQ
-       select USE_OF
-       help
-         This enables support for NVIDIA Tegra based systems (Tegra APX,
-         Tegra 6xx and Tegra 2 series).
-
 config ARCH_PXA
        bool "PXA2xx/PXA3xx-based"
        depends on MMU
index d1c4893894cee26e23f1ba962c9ac45c3915f2cd..df99ee93030a7b854046546c6226c61c49f410a2 100644 (file)
@@ -1,13 +1,28 @@
-if ARCH_TEGRA
+config ARCH_TEGRA
+       bool "NVIDIA Tegra" if ARCH_MULTI_V7
+       select ARCH_HAS_CPUFREQ
+       select ARCH_REQUIRE_GPIOLIB
+       select CLKDEV_LOOKUP
+       select CLKSRC_MMIO
+       select CLKSRC_OF
+       select COMMON_CLK
+       select GENERIC_CLOCKEVENTS
+       select HAVE_CLK
+       select HAVE_SMP
+       select MIGHT_HAVE_CACHE_L2X0
+       select SOC_BUS
+       select SPARSE_IRQ
+       select USE_OF
+       help
+         This enables support for NVIDIA Tegra based systems.
 
-comment "NVIDIA Tegra options"
+menu "NVIDIA Tegra options"
+       depends on ARCH_TEGRA
 
 config ARCH_TEGRA_2x_SOC
        bool "Enable support for Tegra20 family"
        select ARCH_NEEDS_CPU_IDLE_COUPLED if SMP
        select ARM_ERRATA_720789
-       select ARM_ERRATA_742230 if SMP
-       select ARM_ERRATA_751472
        select ARM_ERRATA_754327 if SMP
        select ARM_ERRATA_764369 if SMP
        select ARM_GIC
@@ -26,8 +41,6 @@ config ARCH_TEGRA_2x_SOC
 
 config ARCH_TEGRA_3x_SOC
        bool "Enable support for Tegra30 family"
-       select ARM_ERRATA_743622
-       select ARM_ERRATA_751472
        select ARM_ERRATA_754322
        select ARM_ERRATA_764369 if SMP
        select ARM_GIC
@@ -71,4 +84,4 @@ config TEGRA_AHB
 config TEGRA_EMC_SCALING_ENABLE
        bool "Enable scaling the memory frequency"
 
-endif
+endmenu
diff --git a/arch/arm/mach-tegra/Makefile.boot b/arch/arm/mach-tegra/Makefile.boot
deleted file mode 100644 (file)
index 2943381..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-zreladdr-$(CONFIG_ARCH_TEGRA_2x_SOC)   += 0x00008000
-params_phys-$(CONFIG_ARCH_TEGRA_2x_SOC)        := 0x00000100
-initrd_phys-$(CONFIG_ARCH_TEGRA_2x_SOC)        := 0x00800000
index 60431de585ca71c5a42c3646227cf80338ec4aec..1787327fae3a9b8c80922fd019289532063d6be3 100644 (file)
@@ -40,6 +40,7 @@ int tegra_clk_debugfs_init(void);
 static inline int tegra_clk_debugfs_init(void) { return 0; }
 #endif
 
+int __init tegra_powergate_init(void);
 #if defined(CONFIG_ARCH_TEGRA_2x_SOC) && defined(CONFIG_DEBUG_FS)
 int __init tegra_powergate_debugfs_init(void);
 #else
index eb1f3c8c74ccf0ac99839b97bec66551649584a9..9f852c6fe5b97360fb9a557c00fb734273802951 100644 (file)
@@ -27,8 +27,6 @@
 
 #include <asm/hardware/cache-l2x0.h>
 
-#include <mach/powergate.h>
-
 #include "board.h"
 #include "common.h"
 #include "fuse.h"
diff --git a/arch/arm/mach-tegra/include/mach/powergate.h b/arch/arm/mach-tegra/include/mach/powergate.h
deleted file mode 100644 (file)
index 06763fe..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * drivers/regulator/tegra-regulator.c
- *
- * Copyright (c) 2010 Google, Inc
- *
- * Author:
- *     Colin Cross <ccross@google.com>
- *
- * This software is licensed under the terms of the GNU General Public
- * License version 2, as published by the Free Software Foundation, and
- * may be copied, distributed, and modified under those terms.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- */
-
-#ifndef _MACH_TEGRA_POWERGATE_H_
-#define _MACH_TEGRA_POWERGATE_H_
-
-struct clk;
-
-#define TEGRA_POWERGATE_CPU    0
-#define TEGRA_POWERGATE_3D     1
-#define TEGRA_POWERGATE_VENC   2
-#define TEGRA_POWERGATE_PCIE   3
-#define TEGRA_POWERGATE_VDEC   4
-#define TEGRA_POWERGATE_L2     5
-#define TEGRA_POWERGATE_MPE    6
-#define TEGRA_POWERGATE_HEG    7
-#define TEGRA_POWERGATE_SATA   8
-#define TEGRA_POWERGATE_CPU1   9
-#define TEGRA_POWERGATE_CPU2   10
-#define TEGRA_POWERGATE_CPU3   11
-#define TEGRA_POWERGATE_CELP   12
-#define TEGRA_POWERGATE_3D1    13
-
-#define TEGRA_POWERGATE_CPU0   TEGRA_POWERGATE_CPU
-#define TEGRA_POWERGATE_3D0    TEGRA_POWERGATE_3D
-
-int  __init tegra_powergate_init(void);
-
-int tegra_cpu_powergate_id(int cpuid);
-int tegra_powergate_is_powered(int id);
-int tegra_powergate_power_on(int id);
-int tegra_powergate_power_off(int id);
-int tegra_powergate_remove_clamping(int id);
-
-/* Must be called with clk disabled, and returns with clk enabled */
-int tegra_powergate_sequence_power_up(int id, struct clk *clk);
-
-#endif /* _MACH_TEGRA_POWERGATE_H_ */
diff --git a/arch/arm/mach-tegra/include/mach/timex.h b/arch/arm/mach-tegra/include/mach/timex.h
deleted file mode 100644 (file)
index a44ccbd..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
- * arch/arm/mach-tegra/include/mach/timex.h
- *
- * Copyright (C) 2010 Google, Inc.
- *
- * Author:
- *     Colin Cross <ccross@google.com>
- *     Erik Gilling <konkers@google.com>
- *
- * This software is licensed under the terms of the GNU General Public
- * License version 2, as published by the Free Software Foundation, and
- * may be copied, distributed, and modified under those terms.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- */
-
-#ifndef __MACH_TEGRA_TIMEX_H
-#define __MACH_TEGRA_TIMEX_H
-
-#define CLOCK_TICK_RATE                1000000
-
-#endif
diff --git a/arch/arm/mach-tegra/include/mach/uncompress.h b/arch/arm/mach-tegra/include/mach/uncompress.h
deleted file mode 100644 (file)
index 0838641..0000000
+++ /dev/null
@@ -1,175 +0,0 @@
-/*
- * arch/arm/mach-tegra/include/mach/uncompress.h
- *
- * Copyright (C) 2010 Google, Inc.
- * Copyright (C) 2011 Google, Inc.
- * Copyright (C) 2011-2012 NVIDIA CORPORATION. All Rights Reserved.
- *
- * Author:
- *     Colin Cross <ccross@google.com>
- *     Erik Gilling <konkers@google.com>
- *     Doug Anderson <dianders@chromium.org>
- *     Stephen Warren <swarren@nvidia.com>
- *
- * This software is licensed under the terms of the GNU General Public
- * License version 2, as published by the Free Software Foundation, and
- * may be copied, distributed, and modified under those terms.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- */
-
-#ifndef __MACH_TEGRA_UNCOMPRESS_H
-#define __MACH_TEGRA_UNCOMPRESS_H
-
-#include <linux/types.h>
-#include <linux/serial_reg.h>
-
-#include "../../iomap.h"
-
-#define BIT(x) (1 << (x))
-#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
-
-#define DEBUG_UART_SHIFT 2
-
-volatile u8 *uart;
-
-static void putc(int c)
-{
-       if (uart == NULL)
-               return;
-
-       while (!(uart[UART_LSR << DEBUG_UART_SHIFT] & UART_LSR_THRE))
-               barrier();
-       uart[UART_TX << DEBUG_UART_SHIFT] = c;
-}
-
-static inline void flush(void)
-{
-}
-
-static const struct {
-       u32 base;
-       u32 reset_reg;
-       u32 clock_reg;
-       u32 bit;
-} uarts[] = {
-       {
-               TEGRA_UARTA_BASE,
-               TEGRA_CLK_RESET_BASE + 0x04,
-               TEGRA_CLK_RESET_BASE + 0x10,
-               6,
-       },
-       {
-               TEGRA_UARTB_BASE,
-               TEGRA_CLK_RESET_BASE + 0x04,
-               TEGRA_CLK_RESET_BASE + 0x10,
-               7,
-       },
-       {
-               TEGRA_UARTC_BASE,
-               TEGRA_CLK_RESET_BASE + 0x08,
-               TEGRA_CLK_RESET_BASE + 0x14,
-               23,
-       },
-       {
-               TEGRA_UARTD_BASE,
-               TEGRA_CLK_RESET_BASE + 0x0c,
-               TEGRA_CLK_RESET_BASE + 0x18,
-               1,
-       },
-       {
-               TEGRA_UARTE_BASE,
-               TEGRA_CLK_RESET_BASE + 0x0c,
-               TEGRA_CLK_RESET_BASE + 0x18,
-               2,
-       },
-};
-
-static inline bool uart_clocked(int i)
-{
-       if (*(u8 *)uarts[i].reset_reg & BIT(uarts[i].bit))
-               return false;
-
-       if (!(*(u8 *)uarts[i].clock_reg & BIT(uarts[i].bit)))
-               return false;
-
-       return true;
-}
-
-#ifdef CONFIG_TEGRA_DEBUG_UART_AUTO_ODMDATA
-int auto_odmdata(void)
-{
-       volatile u32 *pmc = (volatile u32 *)TEGRA_PMC_BASE;
-       u32 odmdata = pmc[0xa0 / 4];
-
-       /*
-        * Bits 19:18 are the console type: 0=default, 1=none, 2==DCC, 3==UART
-        * Some boards apparently swap the last two values, but we don't have
-        * any way of catering for that here, so we just accept either. If this
-        * doesn't make sense for your board, just don't enable this feature.
-        *
-        * Bits 17:15 indicate the UART to use, 0/1/2/3/4 are UART A/B/C/D/E.
-        */
-
-       switch  ((odmdata >> 18) & 3) {
-       case 2:
-       case 3:
-               break;
-       default:
-               return -1;
-       }
-
-       return (odmdata >> 15) & 7;
-}
-#endif
-
-/*
- * Setup before decompression.  This is where we do UART selection for
- * earlyprintk and init the uart_base register.
- */
-static inline void arch_decomp_setup(void)
-{
-       int uart_id;
-       volatile u32 *apb_misc = (volatile u32 *)TEGRA_APB_MISC_BASE;
-       u32 chip, div;
-
-#if defined(CONFIG_TEGRA_DEBUG_UART_AUTO_ODMDATA)
-       uart_id = auto_odmdata();
-#elif defined(CONFIG_TEGRA_DEBUG_UARTA)
-       uart_id = 0;
-#elif defined(CONFIG_TEGRA_DEBUG_UARTB)
-       uart_id = 1;
-#elif defined(CONFIG_TEGRA_DEBUG_UARTC)
-       uart_id = 2;
-#elif defined(CONFIG_TEGRA_DEBUG_UARTD)
-       uart_id = 3;
-#elif defined(CONFIG_TEGRA_DEBUG_UARTE)
-       uart_id = 4;
-#endif
-
-       if (uart_id < 0 || uart_id >= ARRAY_SIZE(uarts) ||
-           !uart_clocked(uart_id))
-               uart = NULL;
-       else
-               uart = (volatile u8 *)uarts[uart_id].base;
-
-       if (uart == NULL)
-               return;
-
-       chip = (apb_misc[0x804 / 4] >> 8) & 0xff;
-       if (chip == 0x20)
-               div = 0x0075;
-       else
-               div = 0x00dd;
-
-       uart[UART_LCR << DEBUG_UART_SHIFT] |= UART_LCR_DLAB;
-       uart[UART_DLL << DEBUG_UART_SHIFT] = div & 0xff;
-       uart[UART_DLM << DEBUG_UART_SHIFT] = div >> 8;
-       uart[UART_LCR << DEBUG_UART_SHIFT] = 3;
-}
-
-#endif
index b60165f1ca02c56b76b78323a0d03119b871e9b8..46144a19a7e7883459365b0553beee57e4b0e161 100644 (file)
 #include <linux/delay.h>
 #include <linux/export.h>
 #include <linux/clk/tegra.h>
+#include <linux/tegra-powergate.h>
 
 #include <asm/sizes.h>
 #include <asm/mach/pci.h>
 
-#include <mach/powergate.h>
-
 #include "board.h"
 #include "iomap.h"
 
index c6bc8f85759c615a465dfe6bf7eaa8578bbcb84c..585d2974a3c166c71bffb84454bb88355f6f3991 100644 (file)
@@ -27,8 +27,7 @@
 #include <linux/seq_file.h>
 #include <linux/spinlock.h>
 #include <linux/clk/tegra.h>
-
-#include <mach/powergate.h>
+#include <linux/tegra-powergate.h>
 
 #include "fuse.h"
 #include "iomap.h"
index ba6f51bc9f3b8bc229bf0900ff380002fbb51e14..f15f147d473cab2b7657a9fd8ba610e443a8f82c 100644 (file)
@@ -22,8 +22,7 @@
 #include <linux/of.h>
 #include <linux/of_address.h>
 #include <linux/clk/tegra.h>
-
-#include <mach/powergate.h>
+#include <linux/tegra-powergate.h>
 
 #include "clk.h"
 
diff --git a/include/linux/tegra-powergate.h b/include/linux/tegra-powergate.h
new file mode 100644 (file)
index 0000000..55c29a8
--- /dev/null
@@ -0,0 +1,49 @@
+/*
+ * Copyright (c) 2010 Google, Inc
+ *
+ * Author:
+ *     Colin Cross <ccross@google.com>
+ *
+ * This software is licensed under the terms of the GNU General Public
+ * License version 2, as published by the Free Software Foundation, and
+ * may be copied, distributed, and modified under those terms.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+#ifndef _MACH_TEGRA_POWERGATE_H_
+#define _MACH_TEGRA_POWERGATE_H_
+
+struct clk;
+
+#define TEGRA_POWERGATE_CPU    0
+#define TEGRA_POWERGATE_3D     1
+#define TEGRA_POWERGATE_VENC   2
+#define TEGRA_POWERGATE_PCIE   3
+#define TEGRA_POWERGATE_VDEC   4
+#define TEGRA_POWERGATE_L2     5
+#define TEGRA_POWERGATE_MPE    6
+#define TEGRA_POWERGATE_HEG    7
+#define TEGRA_POWERGATE_SATA   8
+#define TEGRA_POWERGATE_CPU1   9
+#define TEGRA_POWERGATE_CPU2   10
+#define TEGRA_POWERGATE_CPU3   11
+#define TEGRA_POWERGATE_CELP   12
+#define TEGRA_POWERGATE_3D1    13
+
+#define TEGRA_POWERGATE_CPU0   TEGRA_POWERGATE_CPU
+#define TEGRA_POWERGATE_3D0    TEGRA_POWERGATE_3D
+
+int tegra_powergate_is_powered(int id);
+int tegra_powergate_power_on(int id);
+int tegra_powergate_power_off(int id);
+int tegra_powergate_remove_clamping(int id);
+
+/* Must be called with clk disabled, and returns with clk enabled */
+int tegra_powergate_sequence_power_up(int id, struct clk *clk);
+
+#endif /* _MACH_TEGRA_POWERGATE_H_ */
This page took 0.078909 seconds and 5 git commands to generate.