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
|
|
|
|
|
|
|
#endif /* _ASM_CPU_SH4_H_ */
|