diff options
| author | Sudhakar Rajashekhara <[email protected]> | 2010-11-11 15:38:01 +0100 |
|---|---|---|
| committer | Sandeep Paulraj <[email protected]> | 2010-11-28 20:17:30 -0500 |
| commit | a131148efe21e92528a146f600613a9b89abdfdc (patch) | |
| tree | 2cb55cfc1b96ab4b9361cfd85e97d04aa3bef847 | |
| parent | c87f6457bb9cb465e9630b00b4c824847a62c6c5 (diff) | |
da8xx: Add cpu_is_da8xx macros
Signed-off-by: Sudhakar Rajashekhara <[email protected]>
CC: Stefano Babic <[email protected]>
CC: Detlev Zundev <[email protected]>
CC: Ben Gardiner <[email protected]>
Signed-off-by: Sandeep Paulraj <[email protected]>
| -rw-r--r-- | arch/arm/include/asm/arch-davinci/hardware.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-davinci/hardware.h b/arch/arm/include/asm/arch-davinci/hardware.h index 3520cf88224..2a460b55db9 100644 --- a/arch/arm/include/asm/arch-davinci/hardware.h +++ b/arch/arm/include/asm/arch-davinci/hardware.h @@ -149,6 +149,7 @@ typedef volatile unsigned int * dv_reg_p; #define DAVINCI_DDR_EMIF_DATA_BASE 0xc0000000 #define DAVINCI_INTC_BASE 0xfffee000 #define DAVINCI_BOOTCFG_BASE 0x01c14000 +#define JTAG_ID_REG (DAVINCI_BOOTCFG_BASE + 0x18) #endif /* CONFIG_SOC_DA8XX */ @@ -442,6 +443,21 @@ struct davinci_uart_ctrl_regs { #define DAVINCI_UART_PWREMU_MGMT_URRST (1 << 13) #define DAVINCI_UART_PWREMU_MGMT_UTRST (1 << 14) +static inline int cpu_is_da830(void) +{ + unsigned int jtag_id = REG(JTAG_ID_REG); + unsigned short part_no = (jtag_id >> 12) & 0xffff; + + return ((part_no == 0xb7df) ? 1 : 0); +} +static inline int cpu_is_da850(void) +{ + unsigned int jtag_id = REG(JTAG_ID_REG); + unsigned short part_no = (jtag_id >> 12) & 0xffff; + + return ((part_no == 0xb7d1) ? 1 : 0); +} + #endif /* CONFIG_SOC_DA8XX */ #endif /* __ASM_ARCH_HARDWARE_H */ |
