2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2007-09-22 17:12:30 +00:00
|
|
|
/*
|
2008-03-05 05:23:26 +00:00
|
|
|
* (C) Copyright 2007,2008 Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
|
2007-09-22 17:12:30 +00:00
|
|
|
*/
|
|
|
|
|
2007-05-13 11:58:00 +00:00
|
|
|
#ifndef _ASM_CPU_SH4_H_
|
|
|
|
#define _ASM_CPU_SH4_H_
|
2007-09-22 17:12:30 +00:00
|
|
|
|
|
|
|
/* cache control */
|
|
|
|
#define CCR_CACHE_STOP 0x00000808
|
|
|
|
#define CCR_CACHE_ENABLE 0x00000101
|
|
|
|
#define CCR_CACHE_ICI 0x00000800
|
|
|
|
|
|
|
|
#define CACHE_OC_ADDRESS_ARRAY 0xf4000000
|
2008-11-25 02:05:19 +00:00
|
|
|
|
|
|
|
#if defined (CONFIG_CPU_SH7750) || \
|
|
|
|
defined(CONFIG_CPU_SH7751)
|
2007-09-22 17:12:30 +00:00
|
|
|
#define CACHE_OC_WAY_SHIFT 14
|
|
|
|
#define CACHE_OC_NUM_ENTRIES 512
|
2008-11-25 02:05:19 +00:00
|
|
|
#else
|
|
|
|
#define CACHE_OC_WAY_SHIFT 13
|
|
|
|
#define CACHE_OC_NUM_ENTRIES 256
|
|
|
|
#endif
|
2007-09-22 17:12:30 +00:00
|
|
|
#define CACHE_OC_ENTRY_SHIFT 5
|
|
|
|
|
2008-03-12 03:10:28 +00:00
|
|
|
#if defined (CONFIG_CPU_SH7750) || \
|
|
|
|
defined(CONFIG_CPU_SH7751)
|
|
|
|
# include <asm/cpu_sh7750.h>
|
2007-09-22 17:12:30 +00:00
|
|
|
#elif defined (CONFIG_CPU_SH7722)
|
2008-03-12 03:10:28 +00:00
|
|
|
# include <asm/cpu_sh7722.h>
|
2008-08-22 08:48:51 +00:00
|
|
|
#elif defined (CONFIG_CPU_SH7723)
|
|
|
|
# include <asm/cpu_sh7723.h>
|
2012-01-11 01:45:01 +00:00
|
|
|
#elif defined (CONFIG_CPU_SH7734)
|
|
|
|
# include <asm/cpu_sh7734.h>
|
2012-11-04 15:53:22 +00:00
|
|
|
#elif defined (CONFIG_CPU_SH7752)
|
|
|
|
# include <asm/cpu_sh7752.h>
|
2013-12-18 07:03:44 +00:00
|
|
|
#elif defined (CONFIG_CPU_SH7753)
|
|
|
|
# include <asm/cpu_sh7753.h>
|
2011-02-02 01:05:36 +00:00
|
|
|
#elif defined (CONFIG_CPU_SH7757)
|
|
|
|
# include <asm/cpu_sh7757.h>
|
2008-06-06 07:24:13 +00:00
|
|
|
#elif defined (CONFIG_CPU_SH7763)
|
|
|
|
# include <asm/cpu_sh7763.h>
|
2008-03-05 05:23:26 +00:00
|
|
|
#elif defined (CONFIG_CPU_SH7780)
|
2008-03-12 03:10:28 +00:00
|
|
|
# include <asm/cpu_sh7780.h>
|
2007-05-13 11:58:00 +00:00
|
|
|
#else
|
2008-03-12 03:10:28 +00:00
|
|
|
# error "Unknown SH4 variant"
|
2007-05-13 11:58:00 +00:00
|
|
|
#endif
|
2007-09-22 17:12:30 +00:00
|
|
|
|
2009-03-03 06:11:08 +00:00
|
|
|
#if defined(CONFIG_SH_32BIT)
|
|
|
|
#define PMB_ADDR_ARRAY 0xf6100000
|
|
|
|
#define PMB_ADDR_ENTRY 8
|
|
|
|
#define PMB_VPN 24
|
|
|
|
|
|
|
|
#define PMB_DATA_ARRAY 0xf7100000
|
|
|
|
#define PMB_DATA_ENTRY 8
|
|
|
|
#define PMB_PPN 24
|
|
|
|
#define PMB_UB 9 /* Buffered write */
|
|
|
|
#define PMB_V 8 /* Valid */
|
|
|
|
#define PMB_SZ1 7 /* Page size (upper bit) */
|
|
|
|
#define PMB_SZ0 4 /* Page size (lower bit) */
|
|
|
|
#define PMB_C 3 /* Cacheability */
|
|
|
|
#define PMB_WT 0 /* Write-through */
|
|
|
|
|
|
|
|
#define PMB_ADDR_BASE(entry) (PMB_ADDR_ARRAY + (entry << PMB_ADDR_ENTRY))
|
|
|
|
#define PMB_DATA_BASE(entry) (PMB_DATA_ARRAY + (entry << PMB_DATA_ENTRY))
|
|
|
|
#define mk_pmb_addr_val(vpn) ((vpn << PMB_VPN))
|
|
|
|
#define mk_pmb_data_val(ppn, ub, v, sz1, sz0, c, wt) \
|
|
|
|
((ppn << PMB_PPN) | (ub << PMB_UB) | \
|
|
|
|
(v << PMB_V) | (sz1 << PMB_SZ1) | \
|
|
|
|
(sz0 << PMB_SZ0) | (c << PMB_C) | \
|
|
|
|
(wt << PMB_WT))
|
|
|
|
#endif
|
|
|
|
|
2007-09-22 17:12:30 +00:00
|
|
|
#endif /* _ASM_CPU_SH4_H_ */
|