mirror of
https://github.com/torvalds/linux.git
synced 2024-12-23 11:21:33 +00:00
Merge branch 'omap/board' into next/boards
* omap/board: ARM: OMAP: TI814X: Create board support and enable build for TI8148 EVM ARM: OMAP4: board-4430sdp: Register platform device for digimic codec ARM: OMAP4: devices: Register OMAP4 DMIC platform device ARM: OMAP3: sdram-nokia: add 200 MHz memory timings info ARM: OMAP3: rx51: enable tsc2005 touchscreen ARM: OMAP3: cm-t35: fix mux mode for DSS pins ARM: OMAP3: cm-t35: Add reset for USB hub ARM: OMAP3: cm-t35: enable audio ARM: OMAP3: cm-t35: Use correct DSS regulator supply ARM: OMAP3: cm-t35: Add regulator for ads7846 touchscreen ARM: OMAP: TI814X: Add cpu type macros and detection support ARM: OMAP: TI81XX: Prepare for addition of TI814X support ARM: OMAP: ID: Chip detection for OMAP4470 ARM: OMAP: id: add chip id recognition for omap4430 es2.3 ARM: OMAP: am33xx: Update common OMAP machine specific sources ARM: OMAP: am33xx: Update common omap platform files
This commit is contained in:
commit
f4eb64da25
@ -76,8 +76,13 @@ config SOC_OMAP3430
|
||||
default y
|
||||
select ARCH_OMAP_OTG
|
||||
|
||||
config SOC_OMAPTI816X
|
||||
bool "TI816X support"
|
||||
config SOC_OMAPTI81XX
|
||||
bool "TI81XX support"
|
||||
depends on ARCH_OMAP3
|
||||
default y
|
||||
|
||||
config SOC_OMAPAM33XX
|
||||
bool "AM33XX support"
|
||||
depends on ARCH_OMAP3
|
||||
default y
|
||||
|
||||
@ -314,7 +319,12 @@ config MACH_OMAP_3630SDP
|
||||
|
||||
config MACH_TI8168EVM
|
||||
bool "TI8168 Evaluation Module"
|
||||
depends on SOC_OMAPTI816X
|
||||
depends on SOC_OMAPTI81XX
|
||||
default y
|
||||
|
||||
config MACH_TI8148EVM
|
||||
bool "TI8148 Evaluation Module"
|
||||
depends on SOC_OMAPTI81XX
|
||||
default y
|
||||
|
||||
config MACH_OMAP_4430SDP
|
||||
|
@ -232,6 +232,7 @@ obj-$(CONFIG_MACH_CRANEBOARD) += board-am3517crane.o
|
||||
|
||||
obj-$(CONFIG_MACH_SBC3530) += board-omap3stalker.o
|
||||
obj-$(CONFIG_MACH_TI8168EVM) += board-ti8168evm.o
|
||||
obj-$(CONFIG_MACH_TI8148EVM) += board-ti8168evm.o
|
||||
|
||||
# Platform specific device init code
|
||||
|
||||
|
@ -372,11 +372,17 @@ static struct platform_device sdp4430_vbat = {
|
||||
},
|
||||
};
|
||||
|
||||
static struct platform_device sdp4430_dmic_codec = {
|
||||
.name = "dmic-codec",
|
||||
.id = -1,
|
||||
};
|
||||
|
||||
static struct platform_device *sdp4430_devices[] __initdata = {
|
||||
&sdp4430_gpio_keys_device,
|
||||
&sdp4430_leds_gpio,
|
||||
&sdp4430_leds_pwm,
|
||||
&sdp4430_vbat,
|
||||
&sdp4430_dmic_codec,
|
||||
};
|
||||
|
||||
static struct omap_musb_board_data musb_board_data = {
|
||||
|
@ -53,7 +53,8 @@
|
||||
#include "hsmmc.h"
|
||||
#include "common-board-devices.h"
|
||||
|
||||
#define CM_T35_GPIO_PENDOWN 57
|
||||
#define CM_T35_GPIO_PENDOWN 57
|
||||
#define SB_T35_USB_HUB_RESET_GPIO 167
|
||||
|
||||
#define CM_T35_SMSC911X_CS 5
|
||||
#define CM_T35_SMSC911X_GPIO 163
|
||||
@ -339,8 +340,10 @@ static struct regulator_consumer_supply cm_t35_vsim_supply[] = {
|
||||
REGULATOR_SUPPLY("vmmc_aux", "omap_hsmmc.0"),
|
||||
};
|
||||
|
||||
static struct regulator_consumer_supply cm_t35_vdvi_supply[] = {
|
||||
REGULATOR_SUPPLY("vdvi", "omapdss"),
|
||||
static struct regulator_consumer_supply cm_t35_vio_supplies[] = {
|
||||
REGULATOR_SUPPLY("vcc", "spi1.0"),
|
||||
REGULATOR_SUPPLY("vdds_dsi", "omapdss"),
|
||||
REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi1"),
|
||||
};
|
||||
|
||||
/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
|
||||
@ -373,6 +376,19 @@ static struct regulator_init_data cm_t35_vsim = {
|
||||
.consumer_supplies = cm_t35_vsim_supply,
|
||||
};
|
||||
|
||||
static struct regulator_init_data cm_t35_vio = {
|
||||
.constraints = {
|
||||
.min_uV = 1800000,
|
||||
.max_uV = 1800000,
|
||||
.apply_uV = true,
|
||||
.valid_modes_mask = REGULATOR_MODE_NORMAL
|
||||
| REGULATOR_MODE_STANDBY,
|
||||
.valid_ops_mask = REGULATOR_CHANGE_MODE,
|
||||
},
|
||||
.num_consumer_supplies = ARRAY_SIZE(cm_t35_vio_supplies),
|
||||
.consumer_supplies = cm_t35_vio_supplies,
|
||||
};
|
||||
|
||||
static uint32_t cm_t35_keymap[] = {
|
||||
KEY(0, 0, KEY_A), KEY(0, 1, KEY_B), KEY(0, 2, KEY_LEFT),
|
||||
KEY(1, 0, KEY_UP), KEY(1, 1, KEY_ENTER), KEY(1, 2, KEY_DOWN),
|
||||
@ -421,6 +437,23 @@ static struct usbhs_omap_board_data usbhs_bdata __initdata = {
|
||||
.reset_gpio_port[2] = -EINVAL
|
||||
};
|
||||
|
||||
static void cm_t35_init_usbh(void)
|
||||
{
|
||||
int err;
|
||||
|
||||
err = gpio_request_one(SB_T35_USB_HUB_RESET_GPIO,
|
||||
GPIOF_OUT_INIT_LOW, "usb hub rst");
|
||||
if (err) {
|
||||
pr_err("SB-T35: usb hub rst gpio request failed: %d\n", err);
|
||||
} else {
|
||||
udelay(10);
|
||||
gpio_set_value(SB_T35_USB_HUB_RESET_GPIO, 1);
|
||||
msleep(1);
|
||||
}
|
||||
|
||||
usbhs_init(&usbhs_bdata);
|
||||
}
|
||||
|
||||
static int cm_t35_twl_gpio_setup(struct device *dev, unsigned gpio,
|
||||
unsigned ngpio)
|
||||
{
|
||||
@ -456,17 +489,14 @@ static struct twl4030_platform_data cm_t35_twldata = {
|
||||
.gpio = &cm_t35_gpio_data,
|
||||
.vmmc1 = &cm_t35_vmmc1,
|
||||
.vsim = &cm_t35_vsim,
|
||||
.vio = &cm_t35_vio,
|
||||
};
|
||||
|
||||
static void __init cm_t35_init_i2c(void)
|
||||
{
|
||||
omap3_pmic_get_config(&cm_t35_twldata, TWL_COMMON_PDATA_USB,
|
||||
TWL_COMMON_REGULATOR_VDAC | TWL_COMMON_REGULATOR_VPLL2);
|
||||
|
||||
cm_t35_twldata.vpll2->constraints.name = "VDVI";
|
||||
cm_t35_twldata.vpll2->num_consumer_supplies =
|
||||
ARRAY_SIZE(cm_t35_vdvi_supply);
|
||||
cm_t35_twldata.vpll2->consumer_supplies = cm_t35_vdvi_supply;
|
||||
TWL_COMMON_REGULATOR_VDAC |
|
||||
TWL_COMMON_PDATA_AUDIO);
|
||||
|
||||
omap3_pmic_init("tps65930", &cm_t35_twldata);
|
||||
}
|
||||
@ -570,24 +600,28 @@ static void __init cm_t3x_common_dss_mux_init(int mux_mode)
|
||||
|
||||
static void __init cm_t35_init_mux(void)
|
||||
{
|
||||
omap_mux_init_signal("gpio_70", OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
|
||||
omap_mux_init_signal("gpio_71", OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
|
||||
omap_mux_init_signal("gpio_72", OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
|
||||
omap_mux_init_signal("gpio_73", OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
|
||||
omap_mux_init_signal("gpio_74", OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
|
||||
omap_mux_init_signal("gpio_75", OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
|
||||
cm_t3x_common_dss_mux_init(OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT);
|
||||
int mux_mode = OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT;
|
||||
|
||||
omap_mux_init_signal("dss_data0.dss_data0", mux_mode);
|
||||
omap_mux_init_signal("dss_data1.dss_data1", mux_mode);
|
||||
omap_mux_init_signal("dss_data2.dss_data2", mux_mode);
|
||||
omap_mux_init_signal("dss_data3.dss_data3", mux_mode);
|
||||
omap_mux_init_signal("dss_data4.dss_data4", mux_mode);
|
||||
omap_mux_init_signal("dss_data5.dss_data5", mux_mode);
|
||||
cm_t3x_common_dss_mux_init(mux_mode);
|
||||
}
|
||||
|
||||
static void __init cm_t3730_init_mux(void)
|
||||
{
|
||||
omap_mux_init_signal("sys_boot0", OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
|
||||
omap_mux_init_signal("sys_boot1", OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
|
||||
omap_mux_init_signal("sys_boot3", OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
|
||||
omap_mux_init_signal("sys_boot4", OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
|
||||
omap_mux_init_signal("sys_boot5", OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
|
||||
omap_mux_init_signal("sys_boot6", OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
|
||||
cm_t3x_common_dss_mux_init(OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT);
|
||||
int mux_mode = OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT;
|
||||
|
||||
omap_mux_init_signal("sys_boot0", mux_mode);
|
||||
omap_mux_init_signal("sys_boot1", mux_mode);
|
||||
omap_mux_init_signal("sys_boot3", mux_mode);
|
||||
omap_mux_init_signal("sys_boot4", mux_mode);
|
||||
omap_mux_init_signal("sys_boot5", mux_mode);
|
||||
omap_mux_init_signal("sys_boot6", mux_mode);
|
||||
cm_t3x_common_dss_mux_init(mux_mode);
|
||||
}
|
||||
#else
|
||||
static inline void cm_t35_init_mux(void) {}
|
||||
@ -612,7 +646,7 @@ static void __init cm_t3x_common_init(void)
|
||||
cm_t35_init_display();
|
||||
|
||||
usb_musb_init(NULL);
|
||||
usbhs_init(&usbhs_bdata);
|
||||
cm_t35_init_usbh();
|
||||
}
|
||||
|
||||
static void __init cm_t35_init(void)
|
||||
|
@ -15,6 +15,7 @@
|
||||
#include <linux/input/matrix_keypad.h>
|
||||
#include <linux/spi/spi.h>
|
||||
#include <linux/wl12xx.h>
|
||||
#include <linux/spi/tsc2005.h>
|
||||
#include <linux/i2c.h>
|
||||
#include <linux/i2c/twl.h>
|
||||
#include <linux/clk.h>
|
||||
@ -58,6 +59,9 @@
|
||||
|
||||
#define RX51_USB_TRANSCEIVER_RST_GPIO 67
|
||||
|
||||
#define RX51_TSC2005_RESET_GPIO 104
|
||||
#define RX51_TSC2005_IRQ_GPIO 100
|
||||
|
||||
/* list all spi devices here */
|
||||
enum {
|
||||
RX51_SPI_WL1251,
|
||||
@ -66,6 +70,7 @@ enum {
|
||||
};
|
||||
|
||||
static struct wl12xx_platform_data wl1251_pdata;
|
||||
static struct tsc2005_platform_data tsc2005_pdata;
|
||||
|
||||
#if defined(CONFIG_SENSORS_TSL2563) || defined(CONFIG_SENSORS_TSL2563_MODULE)
|
||||
static struct tsl2563_platform_data rx51_tsl2563_platform_data = {
|
||||
@ -167,10 +172,10 @@ static struct spi_board_info rx51_peripherals_spi_board_info[] __initdata = {
|
||||
.modalias = "tsc2005",
|
||||
.bus_num = 1,
|
||||
.chip_select = 0,
|
||||
/* .irq = OMAP_GPIO_IRQ(RX51_TSC2005_IRQ_GPIO),*/
|
||||
.irq = OMAP_GPIO_IRQ(RX51_TSC2005_IRQ_GPIO),
|
||||
.max_speed_hz = 6000000,
|
||||
.controller_data = &tsc2005_mcspi_config,
|
||||
/* .platform_data = &tsc2005_config,*/
|
||||
.platform_data = &tsc2005_pdata,
|
||||
},
|
||||
};
|
||||
|
||||
@ -1086,6 +1091,42 @@ error:
|
||||
*/
|
||||
}
|
||||
|
||||
static struct tsc2005_platform_data tsc2005_pdata = {
|
||||
.ts_pressure_max = 2048,
|
||||
.ts_pressure_fudge = 2,
|
||||
.ts_x_max = 4096,
|
||||
.ts_x_fudge = 4,
|
||||
.ts_y_max = 4096,
|
||||
.ts_y_fudge = 7,
|
||||
.ts_x_plate_ohm = 280,
|
||||
.esd_timeout_ms = 8000,
|
||||
};
|
||||
|
||||
static void rx51_tsc2005_set_reset(bool enable)
|
||||
{
|
||||
gpio_set_value(RX51_TSC2005_RESET_GPIO, enable);
|
||||
}
|
||||
|
||||
static void __init rx51_init_tsc2005(void)
|
||||
{
|
||||
int r;
|
||||
|
||||
r = gpio_request_one(RX51_TSC2005_IRQ_GPIO, GPIOF_IN, "tsc2005 IRQ");
|
||||
if (r < 0) {
|
||||
printk(KERN_ERR "unable to get %s GPIO\n", "tsc2005 IRQ");
|
||||
rx51_peripherals_spi_board_info[RX51_SPI_TSC2005].irq = 0;
|
||||
}
|
||||
|
||||
r = gpio_request_one(RX51_TSC2005_RESET_GPIO, GPIOF_OUT_INIT_HIGH,
|
||||
"tsc2005 reset");
|
||||
if (r >= 0) {
|
||||
tsc2005_pdata.set_reset = rx51_tsc2005_set_reset;
|
||||
} else {
|
||||
printk(KERN_ERR "unable to get %s GPIO\n", "tsc2005 reset");
|
||||
tsc2005_pdata.esd_timeout_ms = 0;
|
||||
}
|
||||
}
|
||||
|
||||
void __init rx51_peripherals_init(void)
|
||||
{
|
||||
rx51_i2c_init();
|
||||
@ -1094,6 +1135,7 @@ void __init rx51_peripherals_init(void)
|
||||
board_smc91x_init();
|
||||
rx51_add_gpio_keys();
|
||||
rx51_init_wl1251();
|
||||
rx51_init_tsc2005();
|
||||
rx51_init_si4713();
|
||||
spi_register_board_info(rx51_peripherals_spi_board_info,
|
||||
ARRAY_SIZE(rx51_peripherals_spi_board_info));
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Code for TI8168 EVM.
|
||||
* Code for TI8168/TI8148 EVM.
|
||||
*
|
||||
* Copyright (C) 2010 Texas Instruments, Inc. - http://www.ti.com/
|
||||
*
|
||||
@ -24,28 +24,33 @@
|
||||
#include <plat/board.h>
|
||||
#include "common.h"
|
||||
|
||||
static struct omap_board_config_kernel ti8168_evm_config[] __initdata = {
|
||||
static struct omap_board_config_kernel ti81xx_evm_config[] __initdata = {
|
||||
};
|
||||
|
||||
static void __init ti8168_evm_init(void)
|
||||
static void __init ti81xx_evm_init(void)
|
||||
{
|
||||
omap_serial_init();
|
||||
omap_sdrc_init(NULL, NULL);
|
||||
omap_board_config = ti8168_evm_config;
|
||||
omap_board_config_size = ARRAY_SIZE(ti8168_evm_config);
|
||||
}
|
||||
|
||||
static void __init ti8168_evm_map_io(void)
|
||||
{
|
||||
omapti816x_map_common_io();
|
||||
omap_board_config = ti81xx_evm_config;
|
||||
omap_board_config_size = ARRAY_SIZE(ti81xx_evm_config);
|
||||
}
|
||||
|
||||
MACHINE_START(TI8168EVM, "ti8168evm")
|
||||
/* Maintainer: Texas Instruments */
|
||||
.atag_offset = 0x100,
|
||||
.map_io = ti8168_evm_map_io,
|
||||
.init_early = ti816x_init_early,
|
||||
.init_irq = ti816x_init_irq,
|
||||
.map_io = ti81xx_map_io,
|
||||
.init_early = ti81xx_init_early,
|
||||
.init_irq = ti81xx_init_irq,
|
||||
.timer = &omap3_timer,
|
||||
.init_machine = ti8168_evm_init,
|
||||
.init_machine = ti81xx_evm_init,
|
||||
MACHINE_END
|
||||
|
||||
MACHINE_START(TI8148EVM, "ti8148evm")
|
||||
/* Maintainer: Texas Instruments */
|
||||
.atag_offset = 0x100,
|
||||
.map_io = ti81xx_map_io,
|
||||
.init_early = ti81xx_init_early,
|
||||
.init_irq = ti81xx_init_irq,
|
||||
.timer = &omap3_timer,
|
||||
.init_machine = ti81xx_evm_init,
|
||||
MACHINE_END
|
||||
|
@ -35,7 +35,7 @@
|
||||
#include "cm-regbits-24xx.h"
|
||||
#include "cm-regbits-34xx.h"
|
||||
|
||||
u8 cpu_mask;
|
||||
u16 cpu_mask;
|
||||
|
||||
/*
|
||||
* clkdm_control: if true, then when a clock is enabled in the
|
||||
|
@ -132,7 +132,7 @@ void omap2_clk_print_new_rates(const char *hfclkin_ck_name,
|
||||
const char *core_ck_name,
|
||||
const char *mpu_ck_name);
|
||||
|
||||
extern u8 cpu_mask;
|
||||
extern u16 cpu_mask;
|
||||
|
||||
extern const struct clkops clkops_omap2_dflt_wait;
|
||||
extern const struct clkops clkops_dummy;
|
||||
|
@ -3517,6 +3517,10 @@ int __init omap3xxx_clk_init(void)
|
||||
} else if (cpu_is_ti816x()) {
|
||||
cpu_mask = RATE_IN_TI816X;
|
||||
cpu_clkflg = CK_TI816X;
|
||||
} else if (cpu_is_am33xx()) {
|
||||
cpu_mask = RATE_IN_AM33XX;
|
||||
} else if (cpu_is_ti814x()) {
|
||||
cpu_mask = RATE_IN_TI814X;
|
||||
} else if (cpu_is_omap34xx()) {
|
||||
if (omap_rev() == OMAP3430_REV_ES1_0) {
|
||||
cpu_mask = RATE_IN_3430ES1;
|
||||
@ -3600,7 +3604,7 @@ int __init omap3xxx_clk_init(void)
|
||||
* Lock DPLL5 -- here only until other device init code can
|
||||
* handle this
|
||||
*/
|
||||
if (!cpu_is_ti816x() && (omap_rev() >= OMAP3430_REV_ES2_0))
|
||||
if (!cpu_is_ti81xx() && (omap_rev() >= OMAP3430_REV_ES2_0))
|
||||
omap3_clk_lock_dpll5();
|
||||
|
||||
/* Avoid sleeping during omap3_core_dpll_m2_set_rate() */
|
||||
|
@ -110,23 +110,49 @@ void __init omap3_map_io(void)
|
||||
|
||||
/*
|
||||
* Adjust TAP register base such that omap3_check_revision accesses the correct
|
||||
* TI816X register for checking device ID (it adds 0x204 to tap base while
|
||||
* TI816X DEVICE ID register is at offset 0x600 from control base).
|
||||
* TI81XX register for checking device ID (it adds 0x204 to tap base while
|
||||
* TI81XX DEVICE ID register is at offset 0x600 from control base).
|
||||
*/
|
||||
#define TI816X_TAP_BASE (TI816X_CTRL_BASE + \
|
||||
TI816X_CONTROL_DEVICE_ID - 0x204)
|
||||
#define TI81XX_TAP_BASE (TI81XX_CTRL_BASE + \
|
||||
TI81XX_CONTROL_DEVICE_ID - 0x204)
|
||||
|
||||
static struct omap_globals ti816x_globals = {
|
||||
static struct omap_globals ti81xx_globals = {
|
||||
.class = OMAP343X_CLASS,
|
||||
.tap = OMAP2_L4_IO_ADDRESS(TI816X_TAP_BASE),
|
||||
.ctrl = OMAP2_L4_IO_ADDRESS(TI816X_CTRL_BASE),
|
||||
.prm = OMAP2_L4_IO_ADDRESS(TI816X_PRCM_BASE),
|
||||
.cm = OMAP2_L4_IO_ADDRESS(TI816X_PRCM_BASE),
|
||||
.tap = OMAP2_L4_IO_ADDRESS(TI81XX_TAP_BASE),
|
||||
.ctrl = OMAP2_L4_IO_ADDRESS(TI81XX_CTRL_BASE),
|
||||
.prm = OMAP2_L4_IO_ADDRESS(TI81XX_PRCM_BASE),
|
||||
.cm = OMAP2_L4_IO_ADDRESS(TI81XX_PRCM_BASE),
|
||||
};
|
||||
|
||||
void __init omap2_set_globals_ti816x(void)
|
||||
void __init omap2_set_globals_ti81xx(void)
|
||||
{
|
||||
__omap2_set_globals(&ti816x_globals);
|
||||
__omap2_set_globals(&ti81xx_globals);
|
||||
}
|
||||
|
||||
void __init ti81xx_map_io(void)
|
||||
{
|
||||
omapti81xx_map_common_io();
|
||||
}
|
||||
|
||||
#define AM33XX_TAP_BASE (AM33XX_CTRL_BASE + \
|
||||
TI81XX_CONTROL_DEVICE_ID - 0x204)
|
||||
|
||||
static struct omap_globals am33xx_globals = {
|
||||
.class = AM335X_CLASS,
|
||||
.tap = AM33XX_L4_WK_IO_ADDRESS(AM33XX_TAP_BASE),
|
||||
.ctrl = AM33XX_L4_WK_IO_ADDRESS(AM33XX_CTRL_BASE),
|
||||
.prm = AM33XX_L4_WK_IO_ADDRESS(AM33XX_PRCM_BASE),
|
||||
.cm = AM33XX_L4_WK_IO_ADDRESS(AM33XX_PRCM_BASE),
|
||||
};
|
||||
|
||||
void __init omap2_set_globals_am33xx(void)
|
||||
{
|
||||
__omap2_set_globals(&am33xx_globals);
|
||||
}
|
||||
|
||||
void __init am33xx_map_io(void)
|
||||
{
|
||||
omapam33xx_map_common_io();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -52,10 +52,18 @@ static inline void omap34xx_map_common_io(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SOC_OMAPTI816X
|
||||
extern void omapti816x_map_common_io(void);
|
||||
#ifdef CONFIG_SOC_OMAPTI81XX
|
||||
extern void omapti81xx_map_common_io(void);
|
||||
#else
|
||||
static inline void omapti816x_map_common_io(void)
|
||||
static inline void omapti81xx_map_common_io(void)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SOC_OMAPAM33XX
|
||||
extern void omapam33xx_map_common_io(void);
|
||||
#else
|
||||
static inline void omapam33xx_map_common_io(void)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
@ -82,7 +90,7 @@ void omap35xx_init_early(void);
|
||||
void omap3630_init_early(void);
|
||||
void omap3_init_early(void); /* Do not use this one */
|
||||
void am35xx_init_early(void);
|
||||
void ti816x_init_early(void);
|
||||
void ti81xx_init_early(void);
|
||||
void omap4430_init_early(void);
|
||||
|
||||
/*
|
||||
@ -106,7 +114,8 @@ void omap2_set_globals_242x(void);
|
||||
void omap2_set_globals_243x(void);
|
||||
void omap2_set_globals_3xxx(void);
|
||||
void omap2_set_globals_443x(void);
|
||||
void omap2_set_globals_ti816x(void);
|
||||
void omap2_set_globals_ti81xx(void);
|
||||
void omap2_set_globals_am33xx(void);
|
||||
|
||||
/* These get called from omap2_set_globals_xxxx(), do not call these */
|
||||
void omap2_set_globals_tap(struct omap_globals *);
|
||||
@ -117,7 +126,9 @@ void omap2_set_globals_prcm(struct omap_globals *);
|
||||
void omap242x_map_io(void);
|
||||
void omap243x_map_io(void);
|
||||
void omap3_map_io(void);
|
||||
void am33xx_map_io(void);
|
||||
void omap4_map_io(void);
|
||||
void ti81xx_map_io(void);
|
||||
|
||||
/**
|
||||
* omap_test_timeout - busy-loop, testing a condition
|
||||
@ -146,7 +157,7 @@ extern struct device *omap4_get_dsp_device(void);
|
||||
|
||||
void omap2_init_irq(void);
|
||||
void omap3_init_irq(void);
|
||||
void ti816x_init_irq(void);
|
||||
void ti81xx_init_irq(void);
|
||||
extern int omap_irq_pending(void);
|
||||
void omap_intc_save_context(void);
|
||||
void omap_intc_restore_context(void);
|
||||
|
@ -52,8 +52,8 @@
|
||||
#define OMAP343X_CONTROL_PADCONFS_WKUP 0xa00
|
||||
#define OMAP343X_CONTROL_GENERAL_WKUP 0xa60
|
||||
|
||||
/* TI816X spefic control submodules */
|
||||
#define TI816X_CONTROL_DEVCONF 0x600
|
||||
/* TI81XX spefic control submodules */
|
||||
#define TI81XX_CONTROL_DEVCONF 0x600
|
||||
|
||||
/* Control register offsets - read/write with omap_ctrl_{read,write}{bwl}() */
|
||||
|
||||
@ -244,8 +244,8 @@
|
||||
#define OMAP3_PADCONF_SAD2D_MSTANDBY 0x250
|
||||
#define OMAP3_PADCONF_SAD2D_IDLEACK 0x254
|
||||
|
||||
/* TI816X CONTROL_DEVCONF register offsets */
|
||||
#define TI816X_CONTROL_DEVICE_ID (TI816X_CONTROL_DEVCONF + 0x000)
|
||||
/* TI81XX CONTROL_DEVCONF register offsets */
|
||||
#define TI81XX_CONTROL_DEVICE_ID (TI81XX_CONTROL_DEVCONF + 0x000)
|
||||
|
||||
/*
|
||||
* REVISIT: This list of registers is not comprehensive - there are more
|
||||
|
@ -336,6 +336,27 @@ static void omap_init_mcpdm(void)
|
||||
static inline void omap_init_mcpdm(void) {}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_SND_OMAP_SOC_DMIC) || \
|
||||
defined(CONFIG_SND_OMAP_SOC_DMIC_MODULE)
|
||||
|
||||
static void omap_init_dmic(void)
|
||||
{
|
||||
struct omap_hwmod *oh;
|
||||
struct platform_device *pdev;
|
||||
|
||||
oh = omap_hwmod_lookup("dmic");
|
||||
if (!oh) {
|
||||
printk(KERN_ERR "Could not look up mcpdm hw_mod\n");
|
||||
return;
|
||||
}
|
||||
|
||||
pdev = omap_device_build("omap-dmic", -1, oh, NULL, 0, NULL, 0, 0);
|
||||
WARN(IS_ERR(pdev), "Can't build omap_device for omap-dmic.\n");
|
||||
}
|
||||
#else
|
||||
static inline void omap_init_dmic(void) {}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE)
|
||||
|
||||
#include <plat/mcspi.h>
|
||||
@ -681,6 +702,7 @@ static int __init omap2_init_devices(void)
|
||||
*/
|
||||
omap_init_audio();
|
||||
omap_init_mcpdm();
|
||||
omap_init_dmic();
|
||||
omap_init_camera();
|
||||
omap_init_mbox();
|
||||
omap_init_mcspi();
|
||||
|
@ -226,7 +226,7 @@ static void __init omap4_check_features(void)
|
||||
}
|
||||
}
|
||||
|
||||
static void __init ti816x_check_features(void)
|
||||
static void __init ti81xx_check_features(void)
|
||||
{
|
||||
omap_features = OMAP3_HAS_NEON;
|
||||
}
|
||||
@ -340,6 +340,29 @@ static void __init omap3_check_revision(const char **cpu_rev)
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 0xb944:
|
||||
omap_revision = AM335X_REV_ES1_0;
|
||||
*cpu_rev = "1.0";
|
||||
case 0xb8f2:
|
||||
switch (rev) {
|
||||
case 0:
|
||||
/* FALLTHROUGH */
|
||||
case 1:
|
||||
omap_revision = TI8148_REV_ES1_0;
|
||||
*cpu_rev = "1.0";
|
||||
break;
|
||||
case 2:
|
||||
omap_revision = TI8148_REV_ES2_0;
|
||||
*cpu_rev = "2.0";
|
||||
break;
|
||||
case 3:
|
||||
/* FALLTHROUGH */
|
||||
default:
|
||||
omap_revision = TI8148_REV_ES2_1;
|
||||
*cpu_rev = "2.1";
|
||||
break;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
/* Unknown default to latest silicon rev as default */
|
||||
omap_revision = OMAP3630_REV_ES1_2;
|
||||
@ -367,7 +390,7 @@ static void __init omap4_check_revision(void)
|
||||
* Few initial 4430 ES2.0 samples IDCODE is same as ES1.0
|
||||
* Use ARM register to detect the correct ES version
|
||||
*/
|
||||
if (!rev && (hawkeye != 0xb94e)) {
|
||||
if (!rev && (hawkeye != 0xb94e) && (hawkeye != 0xb975)) {
|
||||
idcode = read_cpuid(CPUID_ID);
|
||||
rev = (idcode & 0xf) - 1;
|
||||
}
|
||||
@ -389,8 +412,11 @@ static void __init omap4_check_revision(void)
|
||||
omap_revision = OMAP4430_REV_ES2_1;
|
||||
break;
|
||||
case 4:
|
||||
default:
|
||||
omap_revision = OMAP4430_REV_ES2_2;
|
||||
break;
|
||||
case 6:
|
||||
default:
|
||||
omap_revision = OMAP4430_REV_ES2_3;
|
||||
}
|
||||
break;
|
||||
case 0xb94e:
|
||||
@ -401,9 +427,17 @@ static void __init omap4_check_revision(void)
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 0xb975:
|
||||
switch (rev) {
|
||||
case 0:
|
||||
default:
|
||||
omap_revision = OMAP4470_REV_ES1_0;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
default:
|
||||
/* Unknown default to latest silicon rev as default */
|
||||
omap_revision = OMAP4430_REV_ES2_2;
|
||||
omap_revision = OMAP4430_REV_ES2_3;
|
||||
}
|
||||
|
||||
pr_info("OMAP%04x ES%d.%d\n", omap_rev() >> 16,
|
||||
@ -432,6 +466,10 @@ static void __init omap3_cpuinfo(const char *cpu_rev)
|
||||
cpu_name = (omap3_has_sgx()) ? "AM3517" : "AM3505";
|
||||
} else if (cpu_is_ti816x()) {
|
||||
cpu_name = "TI816X";
|
||||
} else if (cpu_is_am335x()) {
|
||||
cpu_name = "AM335X";
|
||||
} else if (cpu_is_ti814x()) {
|
||||
cpu_name = "TI814X";
|
||||
} else if (omap3_has_iva() && omap3_has_sgx()) {
|
||||
/* OMAP3430, OMAP3525, OMAP3515, OMAP3503 devices */
|
||||
cpu_name = "OMAP3430/3530";
|
||||
@ -472,11 +510,11 @@ void __init omap2_check_revision(void)
|
||||
} else if (cpu_is_omap34xx()) {
|
||||
omap3_check_revision(&cpu_rev);
|
||||
|
||||
/* TI816X doesn't have feature register */
|
||||
if (!cpu_is_ti816x())
|
||||
/* TI81XX doesn't have feature register */
|
||||
if (!cpu_is_ti81xx())
|
||||
omap3_check_features();
|
||||
else
|
||||
ti816x_check_features();
|
||||
ti81xx_check_features();
|
||||
|
||||
omap3_cpuinfo(cpu_rev);
|
||||
return;
|
||||
|
@ -66,11 +66,11 @@ omap_uart_lsr: .word 0
|
||||
beq 34f @ configure OMAP3UART4
|
||||
cmp \rp, #OMAP4UART4 @ only on 44xx
|
||||
beq 44f @ configure OMAP4UART4
|
||||
cmp \rp, #TI816XUART1 @ ti816x UART offsets different
|
||||
cmp \rp, #TI81XXUART1 @ ti81Xx UART offsets different
|
||||
beq 81f @ configure UART1
|
||||
cmp \rp, #TI816XUART2 @ ti816x UART offsets different
|
||||
cmp \rp, #TI81XXUART2 @ ti81Xx UART offsets different
|
||||
beq 82f @ configure UART2
|
||||
cmp \rp, #TI816XUART3 @ ti816x UART offsets different
|
||||
cmp \rp, #TI81XXUART3 @ ti81Xx UART offsets different
|
||||
beq 83f @ configure UART3
|
||||
cmp \rp, #ZOOM_UART @ only on zoom2/3
|
||||
beq 95f @ configure ZOOM_UART
|
||||
@ -94,11 +94,11 @@ omap_uart_lsr: .word 0
|
||||
b 98f
|
||||
44: mov \rp, #UART_OFFSET(OMAP4_UART4_BASE)
|
||||
b 98f
|
||||
81: mov \rp, #UART_OFFSET(TI816X_UART1_BASE)
|
||||
81: mov \rp, #UART_OFFSET(TI81XX_UART1_BASE)
|
||||
b 98f
|
||||
82: mov \rp, #UART_OFFSET(TI816X_UART2_BASE)
|
||||
82: mov \rp, #UART_OFFSET(TI81XX_UART2_BASE)
|
||||
b 98f
|
||||
83: mov \rp, #UART_OFFSET(TI816X_UART3_BASE)
|
||||
83: mov \rp, #UART_OFFSET(TI81XX_UART3_BASE)
|
||||
b 98f
|
||||
|
||||
95: ldr \rp, =ZOOM_UART_BASE
|
||||
|
@ -176,14 +176,31 @@ static struct map_desc omap34xx_io_desc[] __initdata = {
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SOC_OMAPTI816X
|
||||
static struct map_desc omapti816x_io_desc[] __initdata = {
|
||||
#ifdef CONFIG_SOC_OMAPTI81XX
|
||||
static struct map_desc omapti81xx_io_desc[] __initdata = {
|
||||
{
|
||||
.virtual = L4_34XX_VIRT,
|
||||
.pfn = __phys_to_pfn(L4_34XX_PHYS),
|
||||
.length = L4_34XX_SIZE,
|
||||
.type = MT_DEVICE
|
||||
}
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SOC_OMAPAM33XX
|
||||
static struct map_desc omapam33xx_io_desc[] __initdata = {
|
||||
{
|
||||
.virtual = L4_34XX_VIRT,
|
||||
.pfn = __phys_to_pfn(L4_34XX_PHYS),
|
||||
.length = L4_34XX_SIZE,
|
||||
.type = MT_DEVICE
|
||||
},
|
||||
{
|
||||
.virtual = L4_WK_AM33XX_VIRT,
|
||||
.pfn = __phys_to_pfn(L4_WK_AM33XX_PHYS),
|
||||
.length = L4_WK_AM33XX_SIZE,
|
||||
.type = MT_DEVICE
|
||||
}
|
||||
};
|
||||
#endif
|
||||
|
||||
@ -263,10 +280,17 @@ void __init omap34xx_map_common_io(void)
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SOC_OMAPTI816X
|
||||
void __init omapti816x_map_common_io(void)
|
||||
#ifdef CONFIG_SOC_OMAPTI81XX
|
||||
void __init omapti81xx_map_common_io(void)
|
||||
{
|
||||
iotable_init(omapti816x_io_desc, ARRAY_SIZE(omapti816x_io_desc));
|
||||
iotable_init(omapti81xx_io_desc, ARRAY_SIZE(omapti81xx_io_desc));
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SOC_OMAPAM33XX
|
||||
void __init omapam33xx_map_common_io(void)
|
||||
{
|
||||
iotable_init(omapam33xx_io_desc, ARRAY_SIZE(omapam33xx_io_desc));
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -418,9 +442,9 @@ void __init am35xx_init_early(void)
|
||||
omap3_init_early();
|
||||
}
|
||||
|
||||
void __init ti816x_init_early(void)
|
||||
void __init ti81xx_init_early(void)
|
||||
{
|
||||
omap2_set_globals_ti816x();
|
||||
omap2_set_globals_ti81xx();
|
||||
omap_common_init_early();
|
||||
omap3xxx_voltagedomains_init();
|
||||
omap3xxx_powerdomains_init();
|
||||
|
@ -193,7 +193,7 @@ void __init omap3_init_irq(void)
|
||||
omap_init_irq(OMAP34XX_IC_BASE, 96);
|
||||
}
|
||||
|
||||
void __init ti816x_init_irq(void)
|
||||
void __init ti81xx_init_irq(void)
|
||||
{
|
||||
omap_init_irq(OMAP34XX_IC_BASE, 128);
|
||||
}
|
||||
|
@ -51,7 +51,7 @@ struct prcm_config {
|
||||
unsigned long cm_clksel2_pll; /* dpllx1 or x2 out */
|
||||
unsigned long cm_clksel_mdm; /* modem dividers 2430 only */
|
||||
unsigned long base_sdrc_rfr; /* base refresh timing for a set */
|
||||
unsigned char flags;
|
||||
unsigned short flags;
|
||||
};
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
/*
|
||||
* SDRC register values for Nokia boards
|
||||
*
|
||||
* Copyright (C) 2008, 2010 Nokia Corporation
|
||||
* Copyright (C) 2008, 2010-2011 Nokia Corporation
|
||||
*
|
||||
* Lauri Leukkunen <lauri.leukkunen@nokia.com>
|
||||
*
|
||||
@ -107,14 +107,37 @@ static const struct sdram_timings nokia_195dot2mhz_timings[] = {
|
||||
},
|
||||
};
|
||||
|
||||
static const struct sdram_timings nokia_200mhz_timings[] = {
|
||||
{
|
||||
.casl = 3,
|
||||
.tDAL = 30000,
|
||||
.tDPL = 15000,
|
||||
.tRRD = 10000,
|
||||
.tRCD = 20000,
|
||||
.tRP = 15000,
|
||||
.tRAS = 40000,
|
||||
.tRC = 55000,
|
||||
.tRFC = 140000,
|
||||
.tXSR = 200000,
|
||||
|
||||
.tREF = 7800,
|
||||
|
||||
.tXP = 2,
|
||||
.tCKE = 4,
|
||||
.tWTR = 2
|
||||
},
|
||||
};
|
||||
|
||||
static const struct {
|
||||
long rate;
|
||||
struct sdram_timings const *data;
|
||||
} nokia_timings[] = {
|
||||
{ 83000000, nokia_166mhz_timings },
|
||||
{ 97600000, nokia_97dot6mhz_timings },
|
||||
{ 100000000, nokia_200mhz_timings },
|
||||
{ 166000000, nokia_166mhz_timings },
|
||||
{ 195200000, nokia_195dot2mhz_timings },
|
||||
{ 200000000, nokia_200mhz_timings },
|
||||
};
|
||||
static struct omap_sdrc_params nokia_sdrc_params[ARRAY_SIZE(nokia_timings) + 1];
|
||||
|
||||
|
@ -464,7 +464,7 @@ static void omap_uart_idle_init(struct omap_uart_state *uart)
|
||||
mod_timer(&uart->timer, jiffies + uart->timeout);
|
||||
omap_uart_smart_idle_enable(uart, 0);
|
||||
|
||||
if (cpu_is_omap34xx() && !cpu_is_ti816x()) {
|
||||
if (cpu_is_omap34xx() && !(cpu_is_ti81xx() || cpu_is_am33xx())) {
|
||||
u32 mod = (uart->num > 1) ? OMAP3430_PER_MOD : CORE_MOD;
|
||||
u32 wk_mask = 0;
|
||||
u32 padconf = 0;
|
||||
@ -746,7 +746,7 @@ void __init omap_serial_init_port(struct omap_board_data *bdata)
|
||||
*/
|
||||
uart->regshift = p->regshift;
|
||||
uart->membase = p->membase;
|
||||
if (cpu_is_omap44xx() || cpu_is_ti816x())
|
||||
if (cpu_is_omap44xx() || cpu_is_ti81xx())
|
||||
uart->errata |= UART_ERRATA_FIFO_FULL_ABORT;
|
||||
else if ((serial_read_reg(uart, UART_OMAP_MVER) & 0xFF)
|
||||
>= UART_OMAP_NO_EMPTY_FIFO_READ_IP_REV)
|
||||
@ -828,7 +828,7 @@ void __init omap_serial_init_port(struct omap_board_data *bdata)
|
||||
}
|
||||
|
||||
/* Enable the MDR1 errata for OMAP3 */
|
||||
if (cpu_is_omap34xx() && !cpu_is_ti816x())
|
||||
if (cpu_is_omap34xx() && !(cpu_is_ti81xx() || cpu_is_am33xx()))
|
||||
uart->errata |= UART_ERRATA_i202_MDR1_ACCESS;
|
||||
}
|
||||
|
||||
|
@ -19,7 +19,6 @@ obj-$(CONFIG_ARCH_OMAP4) += omap_device.o
|
||||
|
||||
obj-$(CONFIG_OMAP_MCBSP) += mcbsp.o
|
||||
|
||||
obj-$(CONFIG_CPU_FREQ) += cpu-omap.o
|
||||
obj-$(CONFIG_OMAP_DM_TIMER) += dmtimer.o
|
||||
obj-$(CONFIG_OMAP_DEBUG_DEVICES) += debug-devices.o
|
||||
obj-$(CONFIG_OMAP_DEBUG_LEDS) += debug-leds.o
|
||||
|
25
arch/arm/plat-omap/include/plat/am33xx.h
Normal file
25
arch/arm/plat-omap/include/plat/am33xx.h
Normal file
@ -0,0 +1,25 @@
|
||||
/*
|
||||
* This file contains the address info for various AM33XX modules.
|
||||
*
|
||||
* Copyright (C) 2011 Texas Instruments, Inc. - http://www.ti.com/
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* This program is distributed "as is" WITHOUT ANY WARRANTY of any
|
||||
* kind, whether express or implied; without even the implied warranty
|
||||
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#ifndef __ASM_ARCH_AM33XX_H
|
||||
#define __ASM_ARCH_AM33XX_H
|
||||
|
||||
#define L4_SLOW_AM33XX_BASE 0x48000000
|
||||
|
||||
#define AM33XX_SCM_BASE 0x44E10000
|
||||
#define AM33XX_CTRL_BASE AM33XX_SCM_BASE
|
||||
#define AM33XX_PRCM_BASE 0x44E00000
|
||||
|
||||
#endif /* __ASM_ARCH_AM33XX_H */
|
@ -59,6 +59,8 @@ struct clkops {
|
||||
#define RATE_IN_4430 (1 << 5)
|
||||
#define RATE_IN_TI816X (1 << 6)
|
||||
#define RATE_IN_4460 (1 << 7)
|
||||
#define RATE_IN_AM33XX (1 << 8)
|
||||
#define RATE_IN_TI814X (1 << 9)
|
||||
|
||||
#define RATE_IN_24XX (RATE_IN_242X | RATE_IN_243X)
|
||||
#define RATE_IN_34XX (RATE_IN_3430ES1 | RATE_IN_3430ES2PLUS)
|
||||
@ -84,7 +86,7 @@ struct clkops {
|
||||
struct clksel_rate {
|
||||
u32 val;
|
||||
u8 div;
|
||||
u8 flags;
|
||||
u16 flags;
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -69,6 +69,7 @@ unsigned int omap_rev(void);
|
||||
* cpu_is_omap343x(): True for OMAP3430
|
||||
* cpu_is_omap443x(): True for OMAP4430
|
||||
* cpu_is_omap446x(): True for OMAP4460
|
||||
* cpu_is_omap447x(): True for OMAP4470
|
||||
*/
|
||||
#define GET_OMAP_CLASS (omap_rev() & 0xff)
|
||||
|
||||
@ -78,6 +79,22 @@ static inline int is_omap ##class (void) \
|
||||
return (GET_OMAP_CLASS == (id)) ? 1 : 0; \
|
||||
}
|
||||
|
||||
#define GET_AM_CLASS ((omap_rev() >> 24) & 0xff)
|
||||
|
||||
#define IS_AM_CLASS(class, id) \
|
||||
static inline int is_am ##class (void) \
|
||||
{ \
|
||||
return (GET_AM_CLASS == (id)) ? 1 : 0; \
|
||||
}
|
||||
|
||||
#define GET_TI_CLASS ((omap_rev() >> 24) & 0xff)
|
||||
|
||||
#define IS_TI_CLASS(class, id) \
|
||||
static inline int is_ti ##class (void) \
|
||||
{ \
|
||||
return (GET_TI_CLASS == (id)) ? 1 : 0; \
|
||||
}
|
||||
|
||||
#define GET_OMAP_SUBCLASS ((omap_rev() >> 20) & 0x0fff)
|
||||
|
||||
#define IS_OMAP_SUBCLASS(subclass, id) \
|
||||
@ -92,12 +109,21 @@ static inline int is_ti ##subclass (void) \
|
||||
return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \
|
||||
}
|
||||
|
||||
#define IS_AM_SUBCLASS(subclass, id) \
|
||||
static inline int is_am ##subclass (void) \
|
||||
{ \
|
||||
return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \
|
||||
}
|
||||
|
||||
IS_OMAP_CLASS(7xx, 0x07)
|
||||
IS_OMAP_CLASS(15xx, 0x15)
|
||||
IS_OMAP_CLASS(16xx, 0x16)
|
||||
IS_OMAP_CLASS(24xx, 0x24)
|
||||
IS_OMAP_CLASS(34xx, 0x34)
|
||||
IS_OMAP_CLASS(44xx, 0x44)
|
||||
IS_AM_CLASS(33xx, 0x33)
|
||||
|
||||
IS_TI_CLASS(81xx, 0x81)
|
||||
|
||||
IS_OMAP_SUBCLASS(242x, 0x242)
|
||||
IS_OMAP_SUBCLASS(243x, 0x243)
|
||||
@ -105,8 +131,11 @@ IS_OMAP_SUBCLASS(343x, 0x343)
|
||||
IS_OMAP_SUBCLASS(363x, 0x363)
|
||||
IS_OMAP_SUBCLASS(443x, 0x443)
|
||||
IS_OMAP_SUBCLASS(446x, 0x446)
|
||||
IS_OMAP_SUBCLASS(447x, 0x447)
|
||||
|
||||
IS_TI_SUBCLASS(816x, 0x816)
|
||||
IS_TI_SUBCLASS(814x, 0x814)
|
||||
IS_AM_SUBCLASS(335x, 0x335)
|
||||
|
||||
#define cpu_is_omap7xx() 0
|
||||
#define cpu_is_omap15xx() 0
|
||||
@ -116,10 +145,15 @@ IS_TI_SUBCLASS(816x, 0x816)
|
||||
#define cpu_is_omap243x() 0
|
||||
#define cpu_is_omap34xx() 0
|
||||
#define cpu_is_omap343x() 0
|
||||
#define cpu_is_ti81xx() 0
|
||||
#define cpu_is_ti816x() 0
|
||||
#define cpu_is_ti814x() 0
|
||||
#define cpu_is_am33xx() 0
|
||||
#define cpu_is_am335x() 0
|
||||
#define cpu_is_omap44xx() 0
|
||||
#define cpu_is_omap443x() 0
|
||||
#define cpu_is_omap446x() 0
|
||||
#define cpu_is_omap447x() 0
|
||||
|
||||
#if defined(MULTI_OMAP1)
|
||||
# if defined(CONFIG_ARCH_OMAP730)
|
||||
@ -322,7 +356,11 @@ IS_OMAP_TYPE(3517, 0x3517)
|
||||
# undef cpu_is_omap3530
|
||||
# undef cpu_is_omap3505
|
||||
# undef cpu_is_omap3517
|
||||
# undef cpu_is_ti81xx
|
||||
# undef cpu_is_ti816x
|
||||
# undef cpu_is_ti814x
|
||||
# undef cpu_is_am33xx
|
||||
# undef cpu_is_am335x
|
||||
# define cpu_is_omap3430() is_omap3430()
|
||||
# define cpu_is_omap3503() (cpu_is_omap3430() && \
|
||||
(!omap3_has_iva()) && \
|
||||
@ -339,16 +377,22 @@ IS_OMAP_TYPE(3517, 0x3517)
|
||||
!omap3_has_sgx())
|
||||
# undef cpu_is_omap3630
|
||||
# define cpu_is_omap3630() is_omap363x()
|
||||
# define cpu_is_ti81xx() is_ti81xx()
|
||||
# define cpu_is_ti816x() is_ti816x()
|
||||
# define cpu_is_ti814x() is_ti814x()
|
||||
# define cpu_is_am33xx() is_am33xx()
|
||||
# define cpu_is_am335x() is_am335x()
|
||||
#endif
|
||||
|
||||
# if defined(CONFIG_ARCH_OMAP4)
|
||||
# undef cpu_is_omap44xx
|
||||
# undef cpu_is_omap443x
|
||||
# undef cpu_is_omap446x
|
||||
# undef cpu_is_omap447x
|
||||
# define cpu_is_omap44xx() is_omap44xx()
|
||||
# define cpu_is_omap443x() is_omap443x()
|
||||
# define cpu_is_omap446x() is_omap446x()
|
||||
# define cpu_is_omap447x() is_omap447x()
|
||||
# endif
|
||||
|
||||
/* Macros to detect if we have OMAP1 or OMAP2 */
|
||||
@ -386,15 +430,27 @@ IS_OMAP_TYPE(3517, 0x3517)
|
||||
#define TI8168_REV_ES1_0 TI816X_CLASS
|
||||
#define TI8168_REV_ES1_1 (TI816X_CLASS | (0x1 << 8))
|
||||
|
||||
#define TI814X_CLASS 0x81400034
|
||||
#define TI8148_REV_ES1_0 TI814X_CLASS
|
||||
#define TI8148_REV_ES2_0 (TI814X_CLASS | (0x1 << 8))
|
||||
#define TI8148_REV_ES2_1 (TI814X_CLASS | (0x2 << 8))
|
||||
|
||||
#define AM335X_CLASS 0x33500034
|
||||
#define AM335X_REV_ES1_0 AM335X_CLASS
|
||||
|
||||
#define OMAP443X_CLASS 0x44300044
|
||||
#define OMAP4430_REV_ES1_0 (OMAP443X_CLASS | (0x10 << 8))
|
||||
#define OMAP4430_REV_ES2_0 (OMAP443X_CLASS | (0x20 << 8))
|
||||
#define OMAP4430_REV_ES2_1 (OMAP443X_CLASS | (0x21 << 8))
|
||||
#define OMAP4430_REV_ES2_2 (OMAP443X_CLASS | (0x22 << 8))
|
||||
#define OMAP4430_REV_ES2_3 (OMAP443X_CLASS | (0x23 << 8))
|
||||
|
||||
#define OMAP446X_CLASS 0x44600044
|
||||
#define OMAP4460_REV_ES1_0 (OMAP446X_CLASS | (0x10 << 8))
|
||||
|
||||
#define OMAP447X_CLASS 0x44700044
|
||||
#define OMAP4470_REV_ES1_0 (OMAP447X_CLASS | (0x10 << 8))
|
||||
|
||||
void omap2_check_revision(void);
|
||||
|
||||
/*
|
||||
|
@ -286,6 +286,7 @@
|
||||
#include <plat/omap24xx.h>
|
||||
#include <plat/omap34xx.h>
|
||||
#include <plat/omap44xx.h>
|
||||
#include <plat/ti816x.h>
|
||||
#include <plat/ti81xx.h>
|
||||
#include <plat/am33xx.h>
|
||||
|
||||
#endif /* __ASM_ARCH_OMAP_HARDWARE_H */
|
||||
|
@ -73,6 +73,9 @@
|
||||
#define OMAP4_L3_IO_OFFSET 0xb4000000
|
||||
#define OMAP4_L3_IO_ADDRESS(pa) IOMEM((pa) + OMAP4_L3_IO_OFFSET) /* L3 */
|
||||
|
||||
#define AM33XX_L4_WK_IO_OFFSET 0xb5000000
|
||||
#define AM33XX_L4_WK_IO_ADDRESS(pa) IOMEM((pa) + AM33XX_L4_WK_IO_OFFSET)
|
||||
|
||||
#define OMAP4_L3_PER_IO_OFFSET 0xb1100000
|
||||
#define OMAP4_L3_PER_IO_ADDRESS(pa) IOMEM((pa) + OMAP4_L3_PER_IO_OFFSET)
|
||||
|
||||
@ -153,6 +156,15 @@
|
||||
#define L4_34XX_VIRT (L4_34XX_PHYS + OMAP2_L4_IO_OFFSET)
|
||||
#define L4_34XX_SIZE SZ_4M /* 1MB of 128MB used, want 1MB sect */
|
||||
|
||||
/*
|
||||
* ----------------------------------------------------------------------------
|
||||
* AM33XX specific IO mapping
|
||||
* ----------------------------------------------------------------------------
|
||||
*/
|
||||
#define L4_WK_AM33XX_PHYS L4_WK_AM33XX_BASE
|
||||
#define L4_WK_AM33XX_VIRT (L4_WK_AM33XX_PHYS + AM33XX_L4_WK_IO_OFFSET)
|
||||
#define L4_WK_AM33XX_SIZE SZ_4M /* 1MB of 128MB used, want 1MB sect */
|
||||
|
||||
/*
|
||||
* Need to look at the Size 4M for L4.
|
||||
* VPOM3430 was not working for Int controller
|
||||
|
@ -35,6 +35,8 @@
|
||||
#define L4_EMU_34XX_BASE 0x54000000
|
||||
#define L3_34XX_BASE 0x68000000
|
||||
|
||||
#define L4_WK_AM33XX_BASE 0x44C00000
|
||||
|
||||
#define OMAP3430_32KSYNCT_BASE 0x48320000
|
||||
#define OMAP3430_CM_BASE 0x48004800
|
||||
#define OMAP3430_PRM_BASE 0x48306800
|
||||
|
@ -51,10 +51,10 @@
|
||||
#define OMAP4_UART3_BASE 0x48020000
|
||||
#define OMAP4_UART4_BASE 0x4806e000
|
||||
|
||||
/* TI816X serial ports */
|
||||
#define TI816X_UART1_BASE 0x48020000
|
||||
#define TI816X_UART2_BASE 0x48022000
|
||||
#define TI816X_UART3_BASE 0x48024000
|
||||
/* TI81XX serial ports */
|
||||
#define TI81XX_UART1_BASE 0x48020000
|
||||
#define TI81XX_UART2_BASE 0x48022000
|
||||
#define TI81XX_UART3_BASE 0x48024000
|
||||
|
||||
/* AM3505/3517 UART4 */
|
||||
#define AM35XX_UART4_BASE 0x4809E000 /* Only on AM3505/3517 */
|
||||
@ -89,9 +89,9 @@
|
||||
#define OMAP4UART2 OMAP2UART2
|
||||
#define OMAP4UART3 43
|
||||
#define OMAP4UART4 44
|
||||
#define TI816XUART1 81
|
||||
#define TI816XUART2 82
|
||||
#define TI816XUART3 83
|
||||
#define TI81XXUART1 81
|
||||
#define TI81XXUART2 82
|
||||
#define TI81XXUART3 83
|
||||
#define ZOOM_UART 95 /* Only on zoom2/3 */
|
||||
|
||||
/* This is only used by 8250.c for omap1510 */
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* This file contains the address data for various TI816X modules.
|
||||
* This file contains the address data for various TI81XX modules.
|
||||
*
|
||||
* Copyright (C) 2010 Texas Instruments, Inc. - http://www.ti.com/
|
||||
*
|
||||
@ -13,15 +13,15 @@
|
||||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#ifndef __ASM_ARCH_TI816X_H
|
||||
#define __ASM_ARCH_TI816X_H
|
||||
#ifndef __ASM_ARCH_TI81XX_H
|
||||
#define __ASM_ARCH_TI81XX_H
|
||||
|
||||
#define L4_SLOW_TI816X_BASE 0x48000000
|
||||
#define L4_SLOW_TI81XX_BASE 0x48000000
|
||||
|
||||
#define TI816X_SCM_BASE 0x48140000
|
||||
#define TI816X_CTRL_BASE TI816X_SCM_BASE
|
||||
#define TI816X_PRCM_BASE 0x48180000
|
||||
#define TI81XX_SCM_BASE 0x48140000
|
||||
#define TI81XX_CTRL_BASE TI81XX_SCM_BASE
|
||||
#define TI81XX_PRCM_BASE 0x48180000
|
||||
|
||||
#define TI816X_ARM_INTC_BASE 0x48200000
|
||||
#define TI81XX_ARM_INTC_BASE 0x48200000
|
||||
|
||||
#endif /* __ASM_ARCH_TI816X_H */
|
||||
#endif /* __ASM_ARCH_TI81XX_H */
|
@ -99,9 +99,9 @@ static inline void flush(void)
|
||||
#define DEBUG_LL_ZOOM(mach) \
|
||||
_DEBUG_LL_ENTRY(mach, ZOOM_UART_BASE, ZOOM_PORT_SHIFT, ZOOM_UART)
|
||||
|
||||
#define DEBUG_LL_TI816X(p, mach) \
|
||||
_DEBUG_LL_ENTRY(mach, TI816X_UART##p##_BASE, OMAP_PORT_SHIFT, \
|
||||
TI816XUART##p)
|
||||
#define DEBUG_LL_TI81XX(p, mach) \
|
||||
_DEBUG_LL_ENTRY(mach, TI81XX_UART##p##_BASE, OMAP_PORT_SHIFT, \
|
||||
TI81XXUART##p)
|
||||
|
||||
static inline void __arch_decomp_setup(unsigned long arch_id)
|
||||
{
|
||||
@ -177,7 +177,10 @@ static inline void __arch_decomp_setup(unsigned long arch_id)
|
||||
DEBUG_LL_ZOOM(omap_zoom3);
|
||||
|
||||
/* TI8168 base boards using UART3 */
|
||||
DEBUG_LL_TI816X(3, ti8168evm);
|
||||
DEBUG_LL_TI81XX(3, ti8168evm);
|
||||
|
||||
/* TI8148 base boards using UART1 */
|
||||
DEBUG_LL_TI81XX(1, ti8148evm);
|
||||
|
||||
} while (0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user