forked from Minki/linux
SoC changes for omaps for v4.3 merge window:
- Clean-up omap4_local_timer_init to drop deal legacy code - Provide proper IO map table for dra7 - Clean-up IOMMU layer init code as it now uses IOMMU framework - A series of changes to fix up dm814x support that's been in a broken half-merged state for quite some time - A series of PRCM and hwmod changes via Paul Walmsley <paul@pwsan.com>: - I/O wakeup support for AM43xx - register lock and unlock support to the hwmod code (needed for the RTC IP blocks on some chips) - several fixes for sparse warnings and an unnecessary null pointer test - a DRA7xx clockdomain configuration workaround, to deal with some hardware bugs -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJVsc29AAoJEBvUPslcq6VzLNkQALzsnwliV3Q8x5qGOyOfm6Wf N5KKG94iwcfSf2P6xDP9n3H0xgG9LNK5jQn5kXRdXl1R2eZwPuMiuSXJVEErwZY2 tMH+1lRYieyioLOzHAsuvNNbcB5UAY33jHtip5ofi6STaRocc5BMl0dhuUAusRcG Qmso5zsiA04KKQqI3JWZkWFRyPX89SLMXOHnFXdKqAWSh1n+tCmSh+cO/EqAluPZ X89mUldJESaLXR4xdAGRNthDQ68T78PTHX2GcCi2F6IGMwgdwOBqVid65gg8Ewac bDEX+ZK32+sQxAmd+VtJCVXw6TnumnWSlTGH1xTwmRIfBmgWr4tQfu8b9INfloei YjZYzBmWVR4SeWeATO1a/qP9snjtjlzxJ+34fzWndFq4eeM9YkF0lH53dbCnxlYp TJnEOHFJdMOQVKxClME5n9ds1y7/K/p+jCwUrAF9z3wxiSms9RImvFroWPI54uzr NEdduyetJLthhxTVaICT4K6ay8gouJvcjY3R8Xp0b2f5szdaxGmGqnVJynGL4fdU CFY1orgJLS4Em50phOZZpjaSla2A2uAz79zQlFt6mr71uKeSzRXTXsOczAheyR0M 5UGqFOs1X2uqFctlGmacrTTgyxhtueOCG7R/kQ5oLHB6R39Tm07PeomGreG9Fznm 1Ylbo1BeYHn3rsSkCLfi =1coy -----END PGP SIGNATURE----- Merge tag 'omap-for-v4.3/soc-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into next/soc SoC changes for omaps for v4.3 merge window: - Clean-up omap4_local_timer_init to drop deal legacy code - Provide proper IO map table for dra7 - Clean-up IOMMU layer init code as it now uses IOMMU framework - A series of changes to fix up dm814x support that's been in a broken half-merged state for quite some time - A series of PRCM and hwmod changes via Paul Walmsley <paul@pwsan.com>: - I/O wakeup support for AM43xx - register lock and unlock support to the hwmod code (needed for the RTC IP blocks on some chips) - several fixes for sparse warnings and an unnecessary null pointer test - a DRA7xx clockdomain configuration workaround, to deal with some hardware bugs * tag 'omap-for-v4.3/soc-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap: (21 commits) ARM: OMAP2: Add minimal dm814x hwmod support ARM: OMAP2+: Prepare dm81xx hwmod code for adding minimal dm814x support ARM: PRM: AM437x: Enable IO wakeup feature ARM: OMAP4+: PRM: Add AM437x specific data ARM: OMAP: PRM: Remove hardcoding of IRQENABLE_MPU_2 and IRQSTATUS_MPU_2 register offsets ARM: dts: AM4372: Add PRCM IRQ entry ARM: AM43xx: Add the PRM IRQ register offsets ARM: OMAP4: PRM: Remove hardcoding of PRM_IO_PMCTRL_OFFSET register ARM: OMAP2+: Add support for initializing dm814x clocks ARM: OMAP2+: Add custom prwdm_operations for 81xx to support dm814x ARM: OMAP2+: Add minimal clockdomains for dm814x ARM: OMAP2+: Fix scm compatible for dm814x ARM: OMAP2+: Fix dm814x DT_MACHINE_START ARM: OMAP2+: Remove module references from IOMMU machine layer ARM: DRA7: Provide proper IO map table ARM: OMAP2+: Clean up omap4_local_timer_init ARM: OMAP2: Delete an unnecessary check ARM: OMAP2+: sparse: add missing function declarations ARM: OMAP2+: sparse: add missing static declaration ARM: OMAP2+: hwmod: add support for lock and unlock hooks ... Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
commit
d7018b1558
@ -86,6 +86,7 @@
|
||||
prcm: prcm@1f0000 {
|
||||
compatible = "ti,am4-prcm";
|
||||
reg = <0x1f0000 0x11000>;
|
||||
interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>;
|
||||
|
||||
prcm_clocks: clocks {
|
||||
#address-cells = <1>;
|
||||
|
@ -234,8 +234,7 @@ obj-$(CONFIG_SOC_DRA7XX) += omap_hwmod_7xx_data.o
|
||||
# EMU peripherals
|
||||
obj-$(CONFIG_HW_PERF_EVENTS) += pmu.o
|
||||
|
||||
iommu-$(CONFIG_OMAP_IOMMU) := omap-iommu.o
|
||||
obj-y += $(iommu-m) $(iommu-y)
|
||||
obj-$(CONFIG_OMAP_IOMMU) += omap-iommu.o
|
||||
|
||||
# OMAP2420 MSDI controller integration support ("MMC")
|
||||
obj-$(CONFIG_SOC_OMAP2420) += msdi.o
|
||||
|
@ -169,7 +169,7 @@ static const char *const ti814x_boards_compat[] __initconst = {
|
||||
NULL,
|
||||
};
|
||||
|
||||
DT_MACHINE_START(TI81XX_DT, "Generic ti814x (Flattened Device Tree)")
|
||||
DT_MACHINE_START(TI814X_DT, "Generic ti814x (Flattened Device Tree)")
|
||||
.reserve = omap_reserve,
|
||||
.map_io = ti81xx_map_io,
|
||||
.init_early = ti814x_init_early,
|
||||
@ -297,7 +297,7 @@ static const char *const dra74x_boards_compat[] __initconst = {
|
||||
DT_MACHINE_START(DRA74X_DT, "Generic DRA74X (Flattened Device Tree)")
|
||||
.reserve = omap_reserve,
|
||||
.smp = smp_ops(omap4_smp_ops),
|
||||
.map_io = omap5_map_io,
|
||||
.map_io = dra7xx_map_io,
|
||||
.init_early = dra7xx_init_early,
|
||||
.init_late = dra7xx_init_late,
|
||||
.init_irq = omap_gic_of_init,
|
||||
@ -316,7 +316,7 @@ static const char *const dra72x_boards_compat[] __initconst = {
|
||||
|
||||
DT_MACHINE_START(DRA72X_DT, "Generic DRA72X (Flattened Device Tree)")
|
||||
.reserve = omap_reserve,
|
||||
.map_io = omap5_map_io,
|
||||
.map_io = dra7xx_map_io,
|
||||
.init_early = dra7xx_init_early,
|
||||
.init_late = dra7xx_init_late,
|
||||
.init_irq = omap_gic_of_init,
|
||||
|
@ -216,7 +216,8 @@ extern void __init omap242x_clockdomains_init(void);
|
||||
extern void __init omap243x_clockdomains_init(void);
|
||||
extern void __init omap3xxx_clockdomains_init(void);
|
||||
extern void __init am33xx_clockdomains_init(void);
|
||||
extern void __init ti81xx_clockdomains_init(void);
|
||||
extern void __init ti814x_clockdomains_init(void);
|
||||
extern void __init ti816x_clockdomains_init(void);
|
||||
extern void __init omap44xx_clockdomains_init(void);
|
||||
extern void __init omap54xx_clockdomains_init(void);
|
||||
extern void __init dra7xx_clockdomains_init(void);
|
||||
|
@ -331,7 +331,7 @@ static struct clockdomain l4per2_7xx_clkdm = {
|
||||
.dep_bit = DRA7XX_L4PER2_STATDEP_SHIFT,
|
||||
.wkdep_srcs = l4per2_wkup_sleep_deps,
|
||||
.sleepdep_srcs = l4per2_wkup_sleep_deps,
|
||||
.flags = CLKDM_CAN_HWSUP_SWSUP,
|
||||
.flags = CLKDM_CAN_SWSUP,
|
||||
};
|
||||
|
||||
static struct clockdomain mpu0_7xx_clkdm = {
|
||||
|
@ -165,7 +165,24 @@ static struct clockdomain default_l3_slow_816x_clkdm = {
|
||||
.flags = CLKDM_CAN_SWSUP,
|
||||
};
|
||||
|
||||
static struct clockdomain *clockdomains_ti81xx[] __initdata = {
|
||||
static struct clockdomain *clockdomains_ti814x[] __initdata = {
|
||||
&alwon_l3_slow_81xx_clkdm,
|
||||
&alwon_l3_med_81xx_clkdm,
|
||||
&alwon_l3_fast_81xx_clkdm,
|
||||
&alwon_ethernet_81xx_clkdm,
|
||||
&mmu_81xx_clkdm,
|
||||
&mmu_cfg_81xx_clkdm,
|
||||
NULL,
|
||||
};
|
||||
|
||||
void __init ti814x_clockdomains_init(void)
|
||||
{
|
||||
clkdm_register_platform_funcs(&am33xx_clkdm_operations);
|
||||
clkdm_register_clkdms(clockdomains_ti814x);
|
||||
clkdm_complete_init();
|
||||
}
|
||||
|
||||
static struct clockdomain *clockdomains_ti816x[] __initdata = {
|
||||
&alwon_mpu_816x_clkdm,
|
||||
&alwon_l3_slow_81xx_clkdm,
|
||||
&alwon_l3_med_81xx_clkdm,
|
||||
@ -185,10 +202,10 @@ static struct clockdomain *clockdomains_ti81xx[] __initdata = {
|
||||
NULL,
|
||||
};
|
||||
|
||||
void __init ti81xx_clockdomains_init(void)
|
||||
void __init ti816x_clockdomains_init(void)
|
||||
{
|
||||
clkdm_register_platform_funcs(&am33xx_clkdm_operations);
|
||||
clkdm_register_clkdms(clockdomains_ti81xx);
|
||||
clkdm_register_clkdms(clockdomains_ti816x);
|
||||
clkdm_complete_init();
|
||||
}
|
||||
#endif
|
||||
|
@ -198,6 +198,7 @@ void __init omap3_map_io(void);
|
||||
void __init am33xx_map_io(void);
|
||||
void __init omap4_map_io(void);
|
||||
void __init omap5_map_io(void);
|
||||
void __init dra7xx_map_io(void);
|
||||
void __init ti81xx_map_io(void);
|
||||
|
||||
/**
|
||||
|
@ -652,6 +652,7 @@ static const struct of_device_id omap_scrm_dt_match_table[] = {
|
||||
{ .compatible = "ti,am4-scm", .data = &ctrl_data },
|
||||
{ .compatible = "ti,omap2-scm", .data = &omap2_ctrl_data },
|
||||
{ .compatible = "ti,omap3-scm", .data = &omap2_ctrl_data },
|
||||
{ .compatible = "ti,dm814-scm", .data = &ctrl_data },
|
||||
{ .compatible = "ti,dm816-scrm", .data = &ctrl_data },
|
||||
{ .compatible = "ti,omap4-scm-core", .data = &ctrl_data },
|
||||
{ .compatible = "ti,omap5-scm-core", .data = &ctrl_data },
|
||||
|
@ -236,7 +236,7 @@ static struct map_desc omap44xx_io_desc[] __initdata = {
|
||||
};
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_SOC_OMAP5) || defined(CONFIG_SOC_DRA7XX)
|
||||
#ifdef CONFIG_SOC_OMAP5
|
||||
static struct map_desc omap54xx_io_desc[] __initdata = {
|
||||
{
|
||||
.virtual = L3_54XX_VIRT,
|
||||
@ -265,6 +265,53 @@ static struct map_desc omap54xx_io_desc[] __initdata = {
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SOC_DRA7XX
|
||||
static struct map_desc dra7xx_io_desc[] __initdata = {
|
||||
{
|
||||
.virtual = L4_CFG_MPU_DRA7XX_VIRT,
|
||||
.pfn = __phys_to_pfn(L4_CFG_MPU_DRA7XX_PHYS),
|
||||
.length = L4_CFG_MPU_DRA7XX_SIZE,
|
||||
.type = MT_DEVICE,
|
||||
},
|
||||
{
|
||||
.virtual = L3_MAIN_SN_DRA7XX_VIRT,
|
||||
.pfn = __phys_to_pfn(L3_MAIN_SN_DRA7XX_PHYS),
|
||||
.length = L3_MAIN_SN_DRA7XX_SIZE,
|
||||
.type = MT_DEVICE,
|
||||
},
|
||||
{
|
||||
.virtual = L4_PER1_DRA7XX_VIRT,
|
||||
.pfn = __phys_to_pfn(L4_PER1_DRA7XX_PHYS),
|
||||
.length = L4_PER1_DRA7XX_SIZE,
|
||||
.type = MT_DEVICE,
|
||||
},
|
||||
{
|
||||
.virtual = L4_PER2_DRA7XX_VIRT,
|
||||
.pfn = __phys_to_pfn(L4_PER2_DRA7XX_PHYS),
|
||||
.length = L4_PER2_DRA7XX_SIZE,
|
||||
.type = MT_DEVICE,
|
||||
},
|
||||
{
|
||||
.virtual = L4_PER3_DRA7XX_VIRT,
|
||||
.pfn = __phys_to_pfn(L4_PER3_DRA7XX_PHYS),
|
||||
.length = L4_PER3_DRA7XX_SIZE,
|
||||
.type = MT_DEVICE,
|
||||
},
|
||||
{
|
||||
.virtual = L4_CFG_DRA7XX_VIRT,
|
||||
.pfn = __phys_to_pfn(L4_CFG_DRA7XX_PHYS),
|
||||
.length = L4_CFG_DRA7XX_SIZE,
|
||||
.type = MT_DEVICE,
|
||||
},
|
||||
{
|
||||
.virtual = L4_WKUP_DRA7XX_VIRT,
|
||||
.pfn = __phys_to_pfn(L4_WKUP_DRA7XX_PHYS),
|
||||
.length = L4_WKUP_DRA7XX_SIZE,
|
||||
.type = MT_DEVICE,
|
||||
},
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SOC_OMAP2420
|
||||
void __init omap242x_map_io(void)
|
||||
{
|
||||
@ -309,12 +356,19 @@ void __init omap4_map_io(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_SOC_OMAP5) || defined(CONFIG_SOC_DRA7XX)
|
||||
#ifdef CONFIG_SOC_OMAP5
|
||||
void __init omap5_map_io(void)
|
||||
{
|
||||
iotable_init(omap54xx_io_desc, ARRAY_SIZE(omap54xx_io_desc));
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SOC_DRA7XX
|
||||
void __init dra7xx_map_io(void)
|
||||
{
|
||||
iotable_init(dra7xx_io_desc, ARRAY_SIZE(dra7xx_io_desc));
|
||||
}
|
||||
#endif
|
||||
/*
|
||||
* omap2_init_reprogram_sdrc - reprogram SDRC timing parameters
|
||||
*
|
||||
@ -554,11 +608,11 @@ void __init ti814x_init_early(void)
|
||||
omap2_prcm_base_init();
|
||||
omap3xxx_voltagedomains_init();
|
||||
omap3xxx_powerdomains_init();
|
||||
ti81xx_clockdomains_init();
|
||||
ti81xx_hwmod_init();
|
||||
ti814x_clockdomains_init();
|
||||
dm814x_hwmod_init();
|
||||
omap_hwmod_init_postsetup();
|
||||
if (of_have_populated_dt())
|
||||
omap_clk_soc_init = ti81xx_dt_clk_init;
|
||||
omap_clk_soc_init = dm814x_dt_clk_init;
|
||||
}
|
||||
|
||||
void __init ti816x_init_early(void)
|
||||
@ -571,11 +625,11 @@ void __init ti816x_init_early(void)
|
||||
omap2_prcm_base_init();
|
||||
omap3xxx_voltagedomains_init();
|
||||
omap3xxx_powerdomains_init();
|
||||
ti81xx_clockdomains_init();
|
||||
ti81xx_hwmod_init();
|
||||
ti816x_clockdomains_init();
|
||||
dm816x_hwmod_init();
|
||||
omap_hwmod_init_postsetup();
|
||||
if (of_have_populated_dt())
|
||||
omap_clk_soc_init = ti81xx_dt_clk_init;
|
||||
omap_clk_soc_init = dm816x_dt_clk_init;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -194,3 +194,66 @@
|
||||
#define L4_PER_54XX_PHYS L4_PER_54XX_BASE /* 0x48000000 --> 0xfa000000 */
|
||||
#define L4_PER_54XX_VIRT (L4_PER_54XX_PHYS + OMAP2_L4_IO_OFFSET)
|
||||
#define L4_PER_54XX_SIZE SZ_4M
|
||||
|
||||
/*
|
||||
* ----------------------------------------------------------------------------
|
||||
* DRA7xx specific IO mapping
|
||||
* ----------------------------------------------------------------------------
|
||||
*/
|
||||
/*
|
||||
* L3_MAIN_SN_DRA7XX_PHYS 0x44000000 --> 0xf8000000
|
||||
* The overall space is 24MiB (0x4400_0000<->0x457F_FFFF), but mapping
|
||||
* everything is just inefficient, since, there are too many address holes.
|
||||
*/
|
||||
#define L3_MAIN_SN_DRA7XX_PHYS L3_MAIN_SN_DRA7XX_BASE
|
||||
#define L3_MAIN_SN_DRA7XX_VIRT (L3_MAIN_SN_DRA7XX_PHYS + OMAP4_L3_IO_OFFSET)
|
||||
#define L3_MAIN_SN_DRA7XX_SIZE SZ_1M
|
||||
|
||||
/*
|
||||
* L4_PER1_DRA7XX_PHYS (0x4800_000<>0x480D_2FFF) -> 0.82MiB (alloc 1MiB)
|
||||
* (0x48000000<->0x48100000) <=> (0xFA000000<->0xFA100000)
|
||||
*/
|
||||
#define L4_PER1_DRA7XX_PHYS L4_PER1_DRA7XX_BASE
|
||||
#define L4_PER1_DRA7XX_VIRT (L4_PER1_DRA7XX_PHYS + OMAP2_L4_IO_OFFSET)
|
||||
#define L4_PER1_DRA7XX_SIZE SZ_1M
|
||||
|
||||
/*
|
||||
* L4_CFG_MPU_DRA7XX_PHYS (0x48210000<>0x482A_F2FF) -> 0.62MiB (alloc 1MiB)
|
||||
* (0x48210000<->0x48310000) <=> (0xFA210000<->0xFA310000)
|
||||
* NOTE: This is a bit of an orphan memory map sitting isolated in TRM
|
||||
*/
|
||||
#define L4_CFG_MPU_DRA7XX_PHYS L4_CFG_MPU_DRA7XX_BASE
|
||||
#define L4_CFG_MPU_DRA7XX_VIRT (L4_CFG_MPU_DRA7XX_PHYS + OMAP2_L4_IO_OFFSET)
|
||||
#define L4_CFG_MPU_DRA7XX_SIZE SZ_1M
|
||||
|
||||
/*
|
||||
* L4_PER2_DRA7XX_PHYS (0x4840_0000<>0x4848_8FFF) -> .53MiB (alloc 1MiB)
|
||||
* (0x48400000<->0x48500000) <=> (0xFA400000<->0xFA500000)
|
||||
*/
|
||||
#define L4_PER2_DRA7XX_PHYS L4_PER2_DRA7XX_BASE
|
||||
#define L4_PER2_DRA7XX_VIRT (L4_PER2_DRA7XX_PHYS + OMAP2_L4_IO_OFFSET)
|
||||
#define L4_PER2_DRA7XX_SIZE SZ_1M
|
||||
|
||||
/*
|
||||
* L4_PER3_DRA7XX_PHYS (0x4880_0000<>0x489E_0FFF) -> 1.87MiB (alloc 2MiB)
|
||||
* (0x48800000<->0x48A00000) <=> (0xFA800000<->0xFAA00000)
|
||||
*/
|
||||
#define L4_PER3_DRA7XX_PHYS L4_PER3_DRA7XX_BASE
|
||||
#define L4_PER3_DRA7XX_VIRT (L4_PER3_DRA7XX_PHYS + OMAP2_L4_IO_OFFSET)
|
||||
#define L4_PER3_DRA7XX_SIZE SZ_2M
|
||||
|
||||
/*
|
||||
* L4_CFG_DRA7XX_PHYS (0x4A00_0000<>0x4A22_BFFF) ->2.17MiB (alloc 3MiB)?
|
||||
* (0x4A000000<->0x4A300000) <=> (0xFC000000<->0xFC300000)
|
||||
*/
|
||||
#define L4_CFG_DRA7XX_PHYS L4_CFG_DRA7XX_BASE
|
||||
#define L4_CFG_DRA7XX_VIRT (L4_CFG_DRA7XX_PHYS + OMAP2_L4_IO_OFFSET)
|
||||
#define L4_CFG_DRA7XX_SIZE (SZ_1M + SZ_2M)
|
||||
|
||||
/*
|
||||
* L4_WKUP_DRA7XX_PHYS (0x4AE0_0000<>0x4AE3_EFFF) -> .24 mb (alloc 1MiB)?
|
||||
* (0x4AE00000<->4AF00000) <=> (0xFCE00000<->0xFCF00000)
|
||||
*/
|
||||
#define L4_WKUP_DRA7XX_PHYS L4_WKUP_DRA7XX_BASE
|
||||
#define L4_WKUP_DRA7XX_VIRT (L4_WKUP_DRA7XX_PHYS + OMAP2_L4_IO_OFFSET)
|
||||
#define L4_WKUP_DRA7XX_SIZE SZ_1M
|
||||
|
@ -11,7 +11,6 @@
|
||||
*/
|
||||
|
||||
#include <linux/of.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/platform_device.h>
|
||||
#include <linux/err.h>
|
||||
#include <linux/slab.h>
|
||||
@ -63,15 +62,5 @@ static int __init omap_iommu_init(void)
|
||||
|
||||
return omap_hwmod_for_each_by_class("mmu", omap_iommu_dev_init, NULL);
|
||||
}
|
||||
/* must be ready before omap3isp is probed */
|
||||
omap_subsys_initcall(omap_iommu_init);
|
||||
|
||||
static void __exit omap_iommu_exit(void)
|
||||
{
|
||||
/* Do nothing */
|
||||
}
|
||||
module_exit(omap_iommu_exit);
|
||||
|
||||
MODULE_AUTHOR("Hiroshi DOYU");
|
||||
MODULE_DESCRIPTION("omap iommu: omap device registration");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
/* must be ready before omap3isp is probed */
|
||||
|
@ -105,7 +105,7 @@ static void dummy_cpu_resume(void)
|
||||
static void dummy_scu_prepare(unsigned int cpu_id, unsigned int cpu_state)
|
||||
{}
|
||||
|
||||
struct cpu_pm_ops omap_pm_ops = {
|
||||
static struct cpu_pm_ops omap_pm_ops = {
|
||||
.finish_suspend = default_finish_suspend,
|
||||
.resume = dummy_cpu_resume,
|
||||
.scu_prepare = dummy_scu_prepare,
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include <linux/init.h>
|
||||
#include <linux/reboot.h>
|
||||
|
||||
#include "common.h"
|
||||
#include "control.h"
|
||||
#include "prm.h"
|
||||
|
||||
|
@ -9,6 +9,7 @@
|
||||
|
||||
#include <linux/types.h>
|
||||
#include <linux/reboot.h>
|
||||
#include "common.h"
|
||||
#include "prm.h"
|
||||
|
||||
/**
|
||||
|
@ -30,6 +30,14 @@
|
||||
#define OMAP54XX_CTRL_BASE 0x4a002800
|
||||
#define OMAP54XX_SAR_RAM_BASE 0x4ae26000
|
||||
|
||||
/* DRA7 specific base addresses */
|
||||
#define L3_MAIN_SN_DRA7XX_BASE 0x44000000
|
||||
#define L4_PER1_DRA7XX_BASE 0x48000000
|
||||
#define L4_CFG_MPU_DRA7XX_BASE 0x48210000
|
||||
#define L4_PER2_DRA7XX_BASE 0x48400000
|
||||
#define L4_PER3_DRA7XX_BASE 0x48800000
|
||||
#define L4_CFG_DRA7XX_BASE 0x4A000000
|
||||
#define L4_WKUP_DRA7XX_BASE 0x4ae00000
|
||||
#define DRA7XX_CM_CORE_AON_BASE 0x4a005000
|
||||
#define DRA7XX_CTRL_BASE 0x4a003400
|
||||
#define DRA7XX_TAP_BASE 0x4ae0c000
|
||||
|
@ -299,7 +299,20 @@ static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
|
||||
|
||||
/* Module might have lost context, always update cache and register */
|
||||
oh->_sysc_cache = v;
|
||||
|
||||
/*
|
||||
* Some IP blocks (such as RTC) require unlocking of IP before
|
||||
* accessing its registers. If a function pointer is present
|
||||
* to unlock, then call it before accessing sysconfig and
|
||||
* call lock after writing sysconfig.
|
||||
*/
|
||||
if (oh->class->unlock)
|
||||
oh->class->unlock(oh);
|
||||
|
||||
omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
|
||||
|
||||
if (oh->class->lock)
|
||||
oh->class->lock(oh);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -3878,7 +3891,8 @@ void __init omap_hwmod_init(void)
|
||||
soc_ops.init_clkdm = _init_clkdm;
|
||||
soc_ops.update_context_lost = _omap4_update_context_lost;
|
||||
soc_ops.get_context_lost = _omap4_get_context_lost;
|
||||
} else if (cpu_is_ti816x() || soc_is_am33xx() || soc_is_am43xx()) {
|
||||
} else if (cpu_is_ti814x() || cpu_is_ti816x() || soc_is_am33xx() ||
|
||||
soc_is_am43xx()) {
|
||||
soc_ops.enable_module = _omap4_enable_module;
|
||||
soc_ops.disable_module = _omap4_disable_module;
|
||||
soc_ops.wait_target_ready = _omap4_wait_target_ready;
|
||||
|
@ -576,6 +576,8 @@ struct omap_hwmod_omap4_prcm {
|
||||
* @pre_shutdown: ptr to fn to be executed immediately prior to device shutdown
|
||||
* @reset: ptr to fn to be executed in place of the standard hwmod reset fn
|
||||
* @enable_preprogram: ptr to fn to be executed during device enable
|
||||
* @lock: ptr to fn to be executed to lock IP registers
|
||||
* @unlock: ptr to fn to be executed to unlock IP registers
|
||||
*
|
||||
* Represent the class of a OMAP hardware "modules" (e.g. timer,
|
||||
* smartreflex, gpio, uart...)
|
||||
@ -600,6 +602,8 @@ struct omap_hwmod_class {
|
||||
int (*pre_shutdown)(struct omap_hwmod *oh);
|
||||
int (*reset)(struct omap_hwmod *oh);
|
||||
int (*enable_preprogram)(struct omap_hwmod *oh);
|
||||
void (*lock)(struct omap_hwmod *oh);
|
||||
void (*unlock)(struct omap_hwmod *oh);
|
||||
};
|
||||
|
||||
/**
|
||||
@ -755,7 +759,8 @@ extern int omap3xxx_hwmod_init(void);
|
||||
extern int omap44xx_hwmod_init(void);
|
||||
extern int omap54xx_hwmod_init(void);
|
||||
extern int am33xx_hwmod_init(void);
|
||||
extern int ti81xx_hwmod_init(void);
|
||||
extern int dm814x_hwmod_init(void);
|
||||
extern int dm816x_hwmod_init(void);
|
||||
extern int dra7xx_hwmod_init(void);
|
||||
int am43xx_hwmod_init(void);
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include "prm-regbits-24xx.h"
|
||||
#include "wd_timer.h"
|
||||
|
||||
struct omap_hwmod_dma_info omap2xxx_dss_sdma_chs[] = {
|
||||
static struct omap_hwmod_dma_info omap2xxx_dss_sdma_chs[] = {
|
||||
{ .name = "dispc", .dma_req = 5 },
|
||||
{ .dma_req = -1, },
|
||||
};
|
||||
|
@ -480,7 +480,7 @@ static struct omap_hwmod am43xx_dss_core_hwmod = {
|
||||
|
||||
/* dispc */
|
||||
|
||||
struct omap_dss_dispc_dev_attr am43xx_dss_dispc_dev_attr = {
|
||||
static struct omap_dss_dispc_dev_attr am43xx_dss_dispc_dev_attr = {
|
||||
.manager_count = 1,
|
||||
.has_framedonetv_irq = 0
|
||||
};
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -31,7 +31,7 @@ struct pdata_init {
|
||||
void (*fn)(void);
|
||||
};
|
||||
|
||||
struct of_dev_auxdata omap_auxdata_lookup[];
|
||||
static struct of_dev_auxdata omap_auxdata_lookup[];
|
||||
static struct twl4030_gpio_platform_data twl_gpio_auxdata;
|
||||
|
||||
#ifdef CONFIG_MACH_NOKIA_N8X0
|
||||
@ -128,7 +128,7 @@ static void __init omap3_sbc_t3530_legacy_init(void)
|
||||
omap3_sbc_t3x_usb_hub_init(167, "sb-t35 usb hub");
|
||||
}
|
||||
|
||||
struct ti_st_plat_data wilink_pdata = {
|
||||
static struct ti_st_plat_data wilink_pdata = {
|
||||
.nshutdown_gpio = 137,
|
||||
.dev_name = "/dev/ttyO1",
|
||||
.flow_cntrl = 1,
|
||||
@ -323,7 +323,7 @@ static struct pdata_init auxdata_quirks[] __initdata = {
|
||||
{ /* sentinel */ },
|
||||
};
|
||||
|
||||
struct of_dev_auxdata omap_auxdata_lookup[] __initdata = {
|
||||
static struct of_dev_auxdata omap_auxdata_lookup[] __initdata = {
|
||||
#ifdef CONFIG_MACH_NOKIA_N8X0
|
||||
OF_DEV_AUXDATA("ti,omap2420-mmc", 0x4809c000, "mmci-omap.0", NULL),
|
||||
OF_DEV_AUXDATA("menelaus", 0x72, "1-0072", &n8x0_menelaus_platform_data),
|
||||
|
@ -349,6 +349,41 @@ static struct powerdomain device_81xx_pwrdm = {
|
||||
.voltdm = { .name = "core" },
|
||||
};
|
||||
|
||||
static struct powerdomain gem_814x_pwrdm = {
|
||||
.name = "gem_pwrdm",
|
||||
.prcm_offs = TI814X_PRM_DSP_MOD,
|
||||
.pwrsts = PWRSTS_OFF_ON,
|
||||
.voltdm = { .name = "dsp" },
|
||||
};
|
||||
|
||||
static struct powerdomain ivahd_814x_pwrdm = {
|
||||
.name = "ivahd_pwrdm",
|
||||
.prcm_offs = TI814X_PRM_HDVICP_MOD,
|
||||
.pwrsts = PWRSTS_OFF_ON,
|
||||
.voltdm = { .name = "iva" },
|
||||
};
|
||||
|
||||
static struct powerdomain hdvpss_814x_pwrdm = {
|
||||
.name = "hdvpss_pwrdm",
|
||||
.prcm_offs = TI814X_PRM_HDVPSS_MOD,
|
||||
.pwrsts = PWRSTS_OFF_ON,
|
||||
.voltdm = { .name = "dsp" },
|
||||
};
|
||||
|
||||
static struct powerdomain sgx_814x_pwrdm = {
|
||||
.name = "sgx_pwrdm",
|
||||
.prcm_offs = TI814X_PRM_GFX_MOD,
|
||||
.pwrsts = PWRSTS_OFF_ON,
|
||||
.voltdm = { .name = "core" },
|
||||
};
|
||||
|
||||
static struct powerdomain isp_814x_pwrdm = {
|
||||
.name = "isp_pwrdm",
|
||||
.prcm_offs = TI814X_PRM_ISP_MOD,
|
||||
.pwrsts = PWRSTS_OFF_ON,
|
||||
.voltdm = { .name = "core" },
|
||||
};
|
||||
|
||||
static struct powerdomain active_816x_pwrdm = {
|
||||
.name = "active_pwrdm",
|
||||
.prcm_offs = TI816X_PRM_ACTIVE_MOD,
|
||||
@ -448,7 +483,18 @@ static struct powerdomain *powerdomains_am35x[] __initdata = {
|
||||
NULL
|
||||
};
|
||||
|
||||
static struct powerdomain *powerdomains_ti81xx[] __initdata = {
|
||||
static struct powerdomain *powerdomains_ti814x[] __initdata = {
|
||||
&alwon_81xx_pwrdm,
|
||||
&device_81xx_pwrdm,
|
||||
&gem_814x_pwrdm,
|
||||
&ivahd_814x_pwrdm,
|
||||
&hdvpss_814x_pwrdm,
|
||||
&sgx_814x_pwrdm,
|
||||
&isp_814x_pwrdm,
|
||||
NULL
|
||||
};
|
||||
|
||||
static struct powerdomain *powerdomains_ti816x[] __initdata = {
|
||||
&alwon_81xx_pwrdm,
|
||||
&device_81xx_pwrdm,
|
||||
&active_816x_pwrdm,
|
||||
@ -460,6 +506,73 @@ static struct powerdomain *powerdomains_ti81xx[] __initdata = {
|
||||
NULL
|
||||
};
|
||||
|
||||
/* TI81XX specific ops */
|
||||
#define TI81XX_PM_PWSTCTRL 0x0000
|
||||
#define TI81XX_RM_RSTCTRL 0x0010
|
||||
#define TI81XX_PM_PWSTST 0x0004
|
||||
|
||||
static int ti81xx_pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst)
|
||||
{
|
||||
omap2_prm_rmw_mod_reg_bits(OMAP_POWERSTATE_MASK,
|
||||
(pwrst << OMAP_POWERSTATE_SHIFT),
|
||||
pwrdm->prcm_offs, TI81XX_PM_PWSTCTRL);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int ti81xx_pwrdm_read_next_pwrst(struct powerdomain *pwrdm)
|
||||
{
|
||||
return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs,
|
||||
TI81XX_PM_PWSTCTRL,
|
||||
OMAP_POWERSTATE_MASK);
|
||||
}
|
||||
|
||||
static int ti81xx_pwrdm_read_pwrst(struct powerdomain *pwrdm)
|
||||
{
|
||||
return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs,
|
||||
(pwrdm->prcm_offs == TI814X_PRM_GFX_MOD) ? TI81XX_RM_RSTCTRL :
|
||||
TI81XX_PM_PWSTST,
|
||||
OMAP_POWERSTATEST_MASK);
|
||||
}
|
||||
|
||||
static int ti81xx_pwrdm_read_logic_pwrst(struct powerdomain *pwrdm)
|
||||
{
|
||||
return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs,
|
||||
(pwrdm->prcm_offs == TI814X_PRM_GFX_MOD) ? TI81XX_RM_RSTCTRL :
|
||||
TI81XX_PM_PWSTST,
|
||||
OMAP3430_LOGICSTATEST_MASK);
|
||||
}
|
||||
|
||||
static int ti81xx_pwrdm_wait_transition(struct powerdomain *pwrdm)
|
||||
{
|
||||
u32 c = 0;
|
||||
|
||||
while ((omap2_prm_read_mod_reg(pwrdm->prcm_offs,
|
||||
(pwrdm->prcm_offs == TI814X_PRM_GFX_MOD) ? TI81XX_RM_RSTCTRL :
|
||||
TI81XX_PM_PWSTST) &
|
||||
OMAP_INTRANSITION_MASK) &&
|
||||
(c++ < PWRDM_TRANSITION_BAILOUT))
|
||||
udelay(1);
|
||||
|
||||
if (c > PWRDM_TRANSITION_BAILOUT) {
|
||||
pr_err("powerdomain: %s timeout waiting for transition\n",
|
||||
pwrdm->name);
|
||||
return -EAGAIN;
|
||||
}
|
||||
|
||||
pr_debug("powerdomain: completed transition in %d loops\n", c);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* For dm814x we need to fix up fix GFX pwstst and rstctrl reg offsets */
|
||||
static struct pwrdm_ops ti81xx_pwrdm_operations = {
|
||||
.pwrdm_set_next_pwrst = ti81xx_pwrdm_set_next_pwrst,
|
||||
.pwrdm_read_next_pwrst = ti81xx_pwrdm_read_next_pwrst,
|
||||
.pwrdm_read_pwrst = ti81xx_pwrdm_read_pwrst,
|
||||
.pwrdm_read_logic_pwrst = ti81xx_pwrdm_read_logic_pwrst,
|
||||
.pwrdm_wait_transition = ti81xx_pwrdm_wait_transition,
|
||||
};
|
||||
|
||||
void __init omap3xxx_powerdomains_init(void)
|
||||
{
|
||||
unsigned int rev;
|
||||
@ -467,15 +580,18 @@ void __init omap3xxx_powerdomains_init(void)
|
||||
if (!cpu_is_omap34xx() && !cpu_is_ti81xx())
|
||||
return;
|
||||
|
||||
pwrdm_register_platform_funcs(&omap3_pwrdm_operations);
|
||||
pwrdm_register_platform_funcs(&ti81xx_pwrdm_operations);
|
||||
|
||||
rev = omap_rev();
|
||||
|
||||
if (rev == AM35XX_REV_ES1_0 || rev == AM35XX_REV_ES1_1) {
|
||||
pwrdm_register_pwrdms(powerdomains_am35x);
|
||||
} else if (rev == TI8148_REV_ES1_0 || rev == TI8148_REV_ES2_0 ||
|
||||
rev == TI8148_REV_ES2_1) {
|
||||
pwrdm_register_pwrdms(powerdomains_ti814x);
|
||||
} else if (rev == TI8168_REV_ES1_0 || rev == TI8168_REV_ES1_1
|
||||
|| rev == TI8168_REV_ES2_0 || rev == TI8168_REV_ES2_1) {
|
||||
pwrdm_register_pwrdms(powerdomains_ti81xx);
|
||||
pwrdm_register_pwrdms(powerdomains_ti816x);
|
||||
} else {
|
||||
pwrdm_register_pwrdms(powerdomains_omap3430_common);
|
||||
|
||||
|
@ -51,6 +51,12 @@
|
||||
/*
|
||||
* TI81XX PRM module offsets
|
||||
*/
|
||||
#define TI814X_PRM_DSP_MOD 0x0a00
|
||||
#define TI814X_PRM_HDVICP_MOD 0x0c00
|
||||
#define TI814X_PRM_ISP_MOD 0x0d00
|
||||
#define TI814X_PRM_HDVPSS_MOD 0x0e00
|
||||
#define TI814X_PRM_GFX_MOD 0x0f00
|
||||
|
||||
#define TI81XX_PRM_DEVICE_MOD 0x0000
|
||||
#define TI816X_PRM_ACTIVE_MOD 0x0a00
|
||||
#define TI81XX_PRM_DEFAULT_MOD 0x0b00
|
||||
@ -472,6 +478,7 @@ struct omap_prcm_irq {
|
||||
* struct omap_prcm_irq_setup - PRCM interrupt controller details
|
||||
* @ack: PRM register offset for the first PRM_IRQSTATUS_MPU register
|
||||
* @mask: PRM register offset for the first PRM_IRQENABLE_MPU register
|
||||
* @pm_ctrl: PRM register offset for the PRM_IO_PMCTRL register
|
||||
* @nr_regs: number of PRM_IRQ{STATUS,ENABLE}_MPU* registers
|
||||
* @nr_irqs: number of entries in the @irqs array
|
||||
* @irqs: ptr to an array of PRCM interrupt bits (see @nr_irqs)
|
||||
@ -494,6 +501,7 @@ struct omap_prcm_irq {
|
||||
struct omap_prcm_irq_setup {
|
||||
u16 ack;
|
||||
u16 mask;
|
||||
u16 pm_ctrl;
|
||||
u8 nr_regs;
|
||||
u8 nr_irqs;
|
||||
const struct omap_prcm_irq *irqs;
|
||||
|
@ -25,6 +25,13 @@
|
||||
#define AM43XX_PRM_WKUP_INST 0x2000
|
||||
#define AM43XX_PRM_DEVICE_INST 0x4000
|
||||
|
||||
/* PRM_IRQ offsets */
|
||||
#define AM43XX_PRM_IRQSTATUS_MPU_OFFSET 0x0004
|
||||
#define AM43XX_PRM_IRQENABLE_MPU_OFFSET 0x0008
|
||||
|
||||
/* Other PRM offsets */
|
||||
#define AM43XX_PRM_IO_PMCTRL_OFFSET 0x0024
|
||||
|
||||
/* RM RSTCTRL offsets */
|
||||
#define AM43XX_RM_PER_RSTCTRL_OFFSET 0x0010
|
||||
#define AM43XX_RM_GFX_RSTCTRL_OFFSET 0x0010
|
||||
|
@ -18,13 +18,14 @@
|
||||
#include <linux/err.h>
|
||||
#include <linux/io.h>
|
||||
#include <linux/of_irq.h>
|
||||
|
||||
#include <linux/of.h>
|
||||
|
||||
#include "soc.h"
|
||||
#include "iomap.h"
|
||||
#include "common.h"
|
||||
#include "vp.h"
|
||||
#include "prm44xx.h"
|
||||
#include "prcm43xx.h"
|
||||
#include "prm-regbits-44xx.h"
|
||||
#include "prcm44xx.h"
|
||||
#include "prminst44xx.h"
|
||||
@ -45,6 +46,7 @@ static const struct omap_prcm_irq omap4_prcm_irqs[] = {
|
||||
static struct omap_prcm_irq_setup omap4_prcm_irq_setup = {
|
||||
.ack = OMAP4_PRM_IRQSTATUS_MPU_OFFSET,
|
||||
.mask = OMAP4_PRM_IRQENABLE_MPU_OFFSET,
|
||||
.pm_ctrl = OMAP4_PRM_IO_PMCTRL_OFFSET,
|
||||
.nr_regs = 2,
|
||||
.irqs = omap4_prcm_irqs,
|
||||
.nr_irqs = ARRAY_SIZE(omap4_prcm_irqs),
|
||||
@ -216,11 +218,11 @@ static inline u32 _read_pending_irq_reg(u16 irqen_offs, u16 irqst_offs)
|
||||
*/
|
||||
static void omap44xx_prm_read_pending_irqs(unsigned long *events)
|
||||
{
|
||||
events[0] = _read_pending_irq_reg(OMAP4_PRM_IRQENABLE_MPU_OFFSET,
|
||||
OMAP4_PRM_IRQSTATUS_MPU_OFFSET);
|
||||
int i;
|
||||
|
||||
events[1] = _read_pending_irq_reg(OMAP4_PRM_IRQENABLE_MPU_2_OFFSET,
|
||||
OMAP4_PRM_IRQSTATUS_MPU_2_OFFSET);
|
||||
for (i = 0; i < omap4_prcm_irq_setup.nr_regs; i++)
|
||||
events[i] = _read_pending_irq_reg(omap4_prcm_irq_setup.mask +
|
||||
i * 4, omap4_prcm_irq_setup.ack + i * 4);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -250,17 +252,17 @@ static void omap44xx_prm_ocp_barrier(void)
|
||||
*/
|
||||
static void omap44xx_prm_save_and_clear_irqen(u32 *saved_mask)
|
||||
{
|
||||
saved_mask[0] =
|
||||
omap4_prm_read_inst_reg(OMAP4430_PRM_OCP_SOCKET_INST,
|
||||
OMAP4_PRM_IRQENABLE_MPU_OFFSET);
|
||||
saved_mask[1] =
|
||||
omap4_prm_read_inst_reg(OMAP4430_PRM_OCP_SOCKET_INST,
|
||||
OMAP4_PRM_IRQENABLE_MPU_2_OFFSET);
|
||||
int i;
|
||||
u16 reg;
|
||||
|
||||
omap4_prm_write_inst_reg(0, OMAP4430_PRM_OCP_SOCKET_INST,
|
||||
OMAP4_PRM_IRQENABLE_MPU_OFFSET);
|
||||
omap4_prm_write_inst_reg(0, OMAP4430_PRM_OCP_SOCKET_INST,
|
||||
OMAP4_PRM_IRQENABLE_MPU_2_OFFSET);
|
||||
for (i = 0; i < omap4_prcm_irq_setup.nr_regs; i++) {
|
||||
reg = omap4_prcm_irq_setup.mask + i * 4;
|
||||
|
||||
saved_mask[i] =
|
||||
omap4_prm_read_inst_reg(OMAP4430_PRM_OCP_SOCKET_INST,
|
||||
reg);
|
||||
omap4_prm_write_inst_reg(0, OMAP4430_PRM_OCP_SOCKET_INST, reg);
|
||||
}
|
||||
|
||||
/* OCP barrier */
|
||||
omap4_prm_read_inst_reg(OMAP4430_PRM_OCP_SOCKET_INST,
|
||||
@ -279,10 +281,12 @@ static void omap44xx_prm_save_and_clear_irqen(u32 *saved_mask)
|
||||
*/
|
||||
static void omap44xx_prm_restore_irqen(u32 *saved_mask)
|
||||
{
|
||||
omap4_prm_write_inst_reg(saved_mask[0], OMAP4430_PRM_OCP_SOCKET_INST,
|
||||
OMAP4_PRM_IRQENABLE_MPU_OFFSET);
|
||||
omap4_prm_write_inst_reg(saved_mask[1], OMAP4430_PRM_OCP_SOCKET_INST,
|
||||
OMAP4_PRM_IRQENABLE_MPU_2_OFFSET);
|
||||
int i;
|
||||
|
||||
for (i = 0; i < omap4_prcm_irq_setup.nr_regs; i++)
|
||||
omap4_prm_write_inst_reg(saved_mask[i],
|
||||
OMAP4430_PRM_OCP_SOCKET_INST,
|
||||
omap4_prcm_irq_setup.mask + i * 4);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -306,10 +310,10 @@ static void omap44xx_prm_reconfigure_io_chain(void)
|
||||
omap4_prm_rmw_inst_reg_bits(OMAP4430_WUCLK_CTRL_MASK,
|
||||
OMAP4430_WUCLK_CTRL_MASK,
|
||||
inst,
|
||||
OMAP4_PRM_IO_PMCTRL_OFFSET);
|
||||
omap4_prcm_irq_setup.pm_ctrl);
|
||||
omap_test_timeout(
|
||||
(((omap4_prm_read_inst_reg(inst,
|
||||
OMAP4_PRM_IO_PMCTRL_OFFSET) &
|
||||
omap4_prcm_irq_setup.pm_ctrl) &
|
||||
OMAP4430_WUCLK_STATUS_MASK) >>
|
||||
OMAP4430_WUCLK_STATUS_SHIFT) == 1),
|
||||
MAX_IOPAD_LATCH_TIME, i);
|
||||
@ -319,10 +323,10 @@ static void omap44xx_prm_reconfigure_io_chain(void)
|
||||
/* Trigger WUCLKIN disable */
|
||||
omap4_prm_rmw_inst_reg_bits(OMAP4430_WUCLK_CTRL_MASK, 0x0,
|
||||
inst,
|
||||
OMAP4_PRM_IO_PMCTRL_OFFSET);
|
||||
omap4_prcm_irq_setup.pm_ctrl);
|
||||
omap_test_timeout(
|
||||
(((omap4_prm_read_inst_reg(inst,
|
||||
OMAP4_PRM_IO_PMCTRL_OFFSET) &
|
||||
omap4_prcm_irq_setup.pm_ctrl) &
|
||||
OMAP4430_WUCLK_STATUS_MASK) >>
|
||||
OMAP4430_WUCLK_STATUS_SHIFT) == 0),
|
||||
MAX_IOPAD_LATCH_TIME, i);
|
||||
@ -350,7 +354,7 @@ static void __init omap44xx_prm_enable_io_wakeup(void)
|
||||
omap4_prm_rmw_inst_reg_bits(OMAP4430_GLOBAL_WUEN_MASK,
|
||||
OMAP4430_GLOBAL_WUEN_MASK,
|
||||
inst,
|
||||
OMAP4_PRM_IO_PMCTRL_OFFSET);
|
||||
omap4_prcm_irq_setup.pm_ctrl);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -719,6 +723,15 @@ int __init omap44xx_prm_init(const struct omap_prcm_init_data *data)
|
||||
|
||||
omap4_prminst_set_prm_dev_inst(data->device_inst_offset);
|
||||
|
||||
/* Add AM437X specific differences */
|
||||
if (of_device_is_compatible(data->np, "ti,am4-prcm")) {
|
||||
omap4_prcm_irq_setup.nr_irqs = 1;
|
||||
omap4_prcm_irq_setup.nr_regs = 1;
|
||||
omap4_prcm_irq_setup.pm_ctrl = AM43XX_PRM_IO_PMCTRL_OFFSET;
|
||||
omap4_prcm_irq_setup.ack = AM43XX_PRM_IRQSTATUS_MPU_OFFSET;
|
||||
omap4_prcm_irq_setup.mask = AM43XX_PRM_IRQENABLE_MPU_OFFSET;
|
||||
}
|
||||
|
||||
return prm_register(&omap44xx_prm_ll_data);
|
||||
}
|
||||
|
||||
|
@ -696,6 +696,7 @@ static struct omap_prcm_init_data am4_prm_data __initdata = {
|
||||
.index = TI_CLKM_PRM,
|
||||
.init = omap44xx_prm_init,
|
||||
.device_inst_offset = AM43XX_PRM_DEVICE_INST,
|
||||
.flags = PRM_HAS_IO_WAKEUP,
|
||||
};
|
||||
#endif
|
||||
|
||||
|
@ -208,8 +208,7 @@ static void __init omap_dmtimer_init(void)
|
||||
/* If we are a secure device, remove any secure timer nodes */
|
||||
if ((omap_type() != OMAP2_DEVICE_TYPE_GP)) {
|
||||
np = omap_get_timer_dt(omap_timer_match, "ti,timer-secure");
|
||||
if (np)
|
||||
of_node_put(np);
|
||||
of_node_put(np);
|
||||
}
|
||||
}
|
||||
|
||||
@ -649,23 +648,10 @@ static OMAP_SYS_32K_TIMER_INIT(4, 1, "timer_32k_ck", "ti,timer-alwon",
|
||||
|
||||
#ifdef CONFIG_ARCH_OMAP4
|
||||
#ifdef CONFIG_HAVE_ARM_TWD
|
||||
static DEFINE_TWD_LOCAL_TIMER(twd_local_timer, OMAP44XX_LOCAL_TWD_BASE, 29);
|
||||
void __init omap4_local_timer_init(void)
|
||||
{
|
||||
omap4_sync32k_timer_init();
|
||||
/* Local timers are not supprted on OMAP4430 ES1.0 */
|
||||
if (omap_rev() != OMAP4430_REV_ES1_0) {
|
||||
int err;
|
||||
|
||||
if (of_have_populated_dt()) {
|
||||
clocksource_of_init();
|
||||
return;
|
||||
}
|
||||
|
||||
err = twd_local_timer_register(&twd_local_timer);
|
||||
if (err)
|
||||
pr_err("twd_local_timer_register failed %d\n", err);
|
||||
}
|
||||
clocksource_of_init();
|
||||
}
|
||||
#else
|
||||
void __init omap4_local_timer_init(void)
|
||||
|
@ -2,7 +2,7 @@ obj-y += clk.o autoidle.o clockdomain.o
|
||||
clk-common = dpll.o composite.o divider.o gate.o \
|
||||
fixed-factor.o mux.o apll.o
|
||||
obj-$(CONFIG_SOC_AM33XX) += $(clk-common) clk-33xx.o
|
||||
obj-$(CONFIG_SOC_TI81XX) += $(clk-common) fapll.o clk-816x.o
|
||||
obj-$(CONFIG_SOC_TI81XX) += $(clk-common) fapll.o clk-814x.o clk-816x.o
|
||||
obj-$(CONFIG_ARCH_OMAP2) += $(clk-common) interface.o clk-2xxx.o
|
||||
obj-$(CONFIG_ARCH_OMAP3) += $(clk-common) interface.o \
|
||||
clk-3xxx.o
|
||||
|
31
drivers/clk/ti/clk-814x.c
Normal file
31
drivers/clk/ti/clk-814x.c
Normal file
@ -0,0 +1,31 @@
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation version 2.
|
||||
*/
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/clk-provider.h>
|
||||
#include <linux/clk/ti.h>
|
||||
|
||||
static struct ti_dt_clk dm814_clks[] = {
|
||||
DT_CLK(NULL, "devosc_ck", "devosc_ck"),
|
||||
DT_CLK(NULL, "mpu_ck", "mpu_ck"),
|
||||
DT_CLK(NULL, "sysclk4_ck", "sysclk4_ck"),
|
||||
DT_CLK(NULL, "sysclk6_ck", "sysclk6_ck"),
|
||||
DT_CLK(NULL, "sysclk10_ck", "sysclk10_ck"),
|
||||
DT_CLK(NULL, "sysclk18_ck", "sysclk18_ck"),
|
||||
DT_CLK(NULL, "timer_sys_ck", "devosc_ck"),
|
||||
DT_CLK(NULL, "cpsw_125mhz_gclk", "cpsw_125mhz_gclk"),
|
||||
DT_CLK(NULL, "cpsw_cpts_rft_clk", "cpsw_cpts_rft_clk"),
|
||||
{ .node_name = NULL },
|
||||
};
|
||||
|
||||
int __init dm814x_dt_clk_init(void)
|
||||
{
|
||||
ti_dt_clocks_register(dm814_clks);
|
||||
omap2_clk_disable_autoidle_all();
|
||||
omap2_clk_enable_init_clocks(NULL, 0);
|
||||
|
||||
return 0;
|
||||
}
|
@ -42,7 +42,7 @@ static const char *enable_init_clks[] = {
|
||||
"ddr_pll_clk3",
|
||||
};
|
||||
|
||||
int __init ti81xx_dt_clk_init(void)
|
||||
int __init dm816x_dt_clk_init(void)
|
||||
{
|
||||
ti_dt_clocks_register(dm816x_clks);
|
||||
omap2_clk_disable_autoidle_all();
|
||||
|
@ -329,7 +329,8 @@ int ti_clk_add_component(struct device_node *node, struct clk_hw *hw, int type);
|
||||
int omap3430_dt_clk_init(void);
|
||||
int omap3630_dt_clk_init(void);
|
||||
int am35xx_dt_clk_init(void);
|
||||
int ti81xx_dt_clk_init(void);
|
||||
int dm814x_dt_clk_init(void);
|
||||
int dm816x_dt_clk_init(void);
|
||||
int omap4xxx_dt_clk_init(void);
|
||||
int omap5xxx_dt_clk_init(void);
|
||||
int dra7xx_dt_clk_init(void);
|
||||
|
Loading…
Reference in New Issue
Block a user