blob: 92133f0bafec33df717451f7dc619306dcf9b4a1 [file] [log] [blame]
stroese771e05b2004-12-16 18:21:17 +00001/*
2 * (C) Copyright 2003
3 * Ingo Assmus <ingo.assmus@keymile.com>
4 * for cpci750 Reinhard Arlt
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
stroese771e05b2004-12-16 18:21:17 +00007 */
8
9/*
10 * main board support/init for the cpci750.
11 */
12
13#ifndef __64360_H__
14#define __64360_H__
15
16/* CPU Configuration bits */
17#define CPU_CONF_ADDR_MISS_EN (1 << 8)
18#define CPU_CONF_SINGLE_CPU (1 << 11)
19#define CPU_CONF_ENDIANESS (1 << 12)
20#define CPU_CONF_PIPELINE (1 << 13)
21#define CPU_CONF_STOP_RETRY (1 << 17)
22#define CPU_CONF_MULTI_DECODE (1 << 18)
23#define CPU_CONF_DP_VALID (1 << 19)
24#define CPU_CONF_PERR_PROP (1 << 22)
25#define CPU_CONF_AACK_DELAY_2 (1 << 25)
26#define CPU_CONF_AP_VALID (1 << 26)
27#define CPU_CONF_REMAP_WR_DIS (1 << 27)
28
29/* CPU Master Control bits */
30#define CPU_MAST_CTL_ARB_EN (1 << 8)
31#define CPU_MAST_CTL_MASK_BR_1 (1 << 9)
32#define CPU_MAST_CTL_M_WR_TRIG (1 << 10)
33#define CPU_MAST_CTL_M_RD_TRIG (1 << 11)
34#define CPU_MAST_CTL_CLEAN_BLK (1 << 12)
35#define CPU_MAST_CTL_FLUSH_BLK (1 << 13)
36
37#endif /* __64360_H__ */