1*1a59d1b8SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */ 2384740dcSRalf Baechle /* ********************************************************************* 3384740dcSRalf Baechle * SB1250 Board Support Package 4384740dcSRalf Baechle * 5384740dcSRalf Baechle * Global constants and macros File: sb1250_defs.h 6384740dcSRalf Baechle * 7384740dcSRalf Baechle * This file contains macros and definitions used by the other 8384740dcSRalf Baechle * include files. 9384740dcSRalf Baechle * 10384740dcSRalf Baechle * SB1250 specification level: User's manual 1/02/02 11384740dcSRalf Baechle * 12384740dcSRalf Baechle ********************************************************************* 13384740dcSRalf Baechle * 14384740dcSRalf Baechle * Copyright 2000,2001,2002,2003 15384740dcSRalf Baechle * Broadcom Corporation. All rights reserved. 16384740dcSRalf Baechle * 17384740dcSRalf Baechle ********************************************************************* */ 18384740dcSRalf Baechle 19384740dcSRalf Baechle #ifndef _SB1250_DEFS_H 20384740dcSRalf Baechle #define _SB1250_DEFS_H 21384740dcSRalf Baechle 22384740dcSRalf Baechle /* 23384740dcSRalf Baechle * These headers require ANSI C89 string concatenation, and GCC or other 24384740dcSRalf Baechle * 'long long' (64-bit integer) support. 25384740dcSRalf Baechle */ 26384740dcSRalf Baechle #if !defined(__STDC__) && !defined(_MSC_VER) 27384740dcSRalf Baechle #error SiByte headers require ANSI C89 support 28384740dcSRalf Baechle #endif 29384740dcSRalf Baechle 30384740dcSRalf Baechle 31384740dcSRalf Baechle /* ********************************************************************* 32384740dcSRalf Baechle * Macros for feature tests, used to enable include file features 33384740dcSRalf Baechle * for chip features only present in certain chip revisions. 34384740dcSRalf Baechle * 35384740dcSRalf Baechle * SIBYTE_HDR_FEATURES may be defined to be the mask value chip/revision 36384740dcSRalf Baechle * which is to be exposed by the headers. If undefined, it defaults to 37384740dcSRalf Baechle * "all features." 38384740dcSRalf Baechle * 39384740dcSRalf Baechle * Use like: 40384740dcSRalf Baechle * 41384740dcSRalf Baechle * #define SIBYTE_HDR_FEATURES SIBYTE_HDR_FMASK_112x_PASS1 42384740dcSRalf Baechle * 43384740dcSRalf Baechle * Generate defines only for that revision of chip. 44384740dcSRalf Baechle * 45384740dcSRalf Baechle * #if SIBYTE_HDR_FEATURE(chip,pass) 46384740dcSRalf Baechle * 47384740dcSRalf Baechle * True if header features for that revision or later of 48384740dcSRalf Baechle * that particular chip type are enabled in SIBYTE_HDR_FEATURES. 49384740dcSRalf Baechle * (Use this to bracket #defines for features present in a given 50384740dcSRalf Baechle * revision and later.) 51384740dcSRalf Baechle * 52384740dcSRalf Baechle * Note that there is no implied ordering between chip types. 53384740dcSRalf Baechle * 54384740dcSRalf Baechle * Note also that 'chip' and 'pass' must textually exactly 55384740dcSRalf Baechle * match the defines below. So, for example, 56384740dcSRalf Baechle * SIBYTE_HDR_FEATURE(112x, PASS1) is OK, but 57384740dcSRalf Baechle * SIBYTE_HDR_FEATURE(1120, pass1) is not (for two reasons). 58384740dcSRalf Baechle * 59384740dcSRalf Baechle * #if SIBYTE_HDR_FEATURE_UP_TO(chip,pass) 60384740dcSRalf Baechle * 61384740dcSRalf Baechle * Same as SIBYTE_HDR_FEATURE, but true for the named revision 62384740dcSRalf Baechle * and earlier revisions of the named chip type. 63384740dcSRalf Baechle * 64384740dcSRalf Baechle * #if SIBYTE_HDR_FEATURE_EXACT(chip,pass) 65384740dcSRalf Baechle * 66384740dcSRalf Baechle * Same as SIBYTE_HDR_FEATURE, but only true for the named 67384740dcSRalf Baechle * revision of the named chip type. (Note that this CANNOT 68384740dcSRalf Baechle * be used to verify that you're compiling only for that 69384740dcSRalf Baechle * particular chip/revision. It will be true any time this 70384740dcSRalf Baechle * chip/revision is included in SIBYTE_HDR_FEATURES.) 71384740dcSRalf Baechle * 72384740dcSRalf Baechle * #if SIBYTE_HDR_FEATURE_CHIP(chip) 73384740dcSRalf Baechle * 74384740dcSRalf Baechle * True if header features for (any revision of) that chip type 75384740dcSRalf Baechle * are enabled in SIBYTE_HDR_FEATURES. (Use this to bracket 76384740dcSRalf Baechle * #defines for features specific to a given chip type.) 77384740dcSRalf Baechle * 78384740dcSRalf Baechle * Mask values currently include room for additional revisions of each 79384740dcSRalf Baechle * chip type, but can be renumbered at will. Note that they MUST fit 80384740dcSRalf Baechle * into 31 bits and may not include C type constructs, for safe use in 81384740dcSRalf Baechle * CPP conditionals. Bit positions within chip types DO indicate 82384740dcSRalf Baechle * ordering, so be careful when adding support for new minor revs. 83384740dcSRalf Baechle ********************************************************************* */ 84384740dcSRalf Baechle 85384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_1250_ALL 0x000000ff 86384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_1250_PASS1 0x00000001 87384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_1250_PASS2 0x00000002 88384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_1250_PASS3 0x00000004 89384740dcSRalf Baechle 90384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_112x_ALL 0x00000f00 91384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_112x_PASS1 0x00000100 92384740dcSRalf Baechle 93384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_1480_ALL 0x0000f000 94384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_1480_PASS1 0x00001000 95384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_1480_PASS2 0x00002000 96384740dcSRalf Baechle 97384740dcSRalf Baechle /* Bit mask for chip/revision. (use _ALL for all revisions of a chip). */ 98384740dcSRalf Baechle #define SIBYTE_HDR_FMASK(chip, pass) \ 99384740dcSRalf Baechle (SIBYTE_HDR_FMASK_ ## chip ## _ ## pass) 100384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_ALLREVS(chip) \ 101384740dcSRalf Baechle (SIBYTE_HDR_FMASK_ ## chip ## _ALL) 102384740dcSRalf Baechle 103384740dcSRalf Baechle /* Default constant value for all chips, all revisions */ 104384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_ALL \ 105384740dcSRalf Baechle (SIBYTE_HDR_FMASK_1250_ALL | SIBYTE_HDR_FMASK_112x_ALL \ 106384740dcSRalf Baechle | SIBYTE_HDR_FMASK_1480_ALL) 107384740dcSRalf Baechle 108384740dcSRalf Baechle /* This one is used for the "original" BCM1250/BCM112x chips. We use this 109384740dcSRalf Baechle to weed out constants and macros that do not exist on later chips like 110384740dcSRalf Baechle the BCM1480 */ 111384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_1250_112x_ALL \ 112384740dcSRalf Baechle (SIBYTE_HDR_FMASK_1250_ALL | SIBYTE_HDR_FMASK_112x_ALL) 113384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_1250_112x SIBYTE_HDR_FMASK_1250_112x_ALL 114384740dcSRalf Baechle 115384740dcSRalf Baechle #ifndef SIBYTE_HDR_FEATURES 116384740dcSRalf Baechle #define SIBYTE_HDR_FEATURES SIBYTE_HDR_FMASK_ALL 117384740dcSRalf Baechle #endif 118384740dcSRalf Baechle 119384740dcSRalf Baechle 120384740dcSRalf Baechle /* Bit mask for revisions of chip exclusively before the named revision. */ 121384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_BEFORE(chip, pass) \ 122384740dcSRalf Baechle ((SIBYTE_HDR_FMASK(chip, pass) - 1) & SIBYTE_HDR_FMASK_ALLREVS(chip)) 123384740dcSRalf Baechle 124384740dcSRalf Baechle /* Bit mask for revisions of chip exclusively after the named revision. */ 125384740dcSRalf Baechle #define SIBYTE_HDR_FMASK_AFTER(chip, pass) \ 126384740dcSRalf Baechle (~(SIBYTE_HDR_FMASK(chip, pass) \ 127384740dcSRalf Baechle | (SIBYTE_HDR_FMASK(chip, pass) - 1)) & SIBYTE_HDR_FMASK_ALLREVS(chip)) 128384740dcSRalf Baechle 129384740dcSRalf Baechle 130384740dcSRalf Baechle /* True if header features enabled for (any revision of) that chip type. */ 131384740dcSRalf Baechle #define SIBYTE_HDR_FEATURE_CHIP(chip) \ 132384740dcSRalf Baechle (!! (SIBYTE_HDR_FMASK_ALLREVS(chip) & SIBYTE_HDR_FEATURES)) 133384740dcSRalf Baechle 134384740dcSRalf Baechle /* True for all versions of the BCM1250 and BCM1125, but not true for 135384740dcSRalf Baechle anything else */ 136384740dcSRalf Baechle #define SIBYTE_HDR_FEATURE_1250_112x \ 137384740dcSRalf Baechle (SIBYTE_HDR_FEATURE_CHIP(1250) || SIBYTE_HDR_FEATURE_CHIP(112x)) 138384740dcSRalf Baechle /* (!! (SIBYTE_HDR_FEATURES & SIBYHTE_HDR_FMASK_1250_112x)) */ 139384740dcSRalf Baechle 140384740dcSRalf Baechle /* True if header features enabled for that rev or later, inclusive. */ 141384740dcSRalf Baechle #define SIBYTE_HDR_FEATURE(chip, pass) \ 142384740dcSRalf Baechle (!! ((SIBYTE_HDR_FMASK(chip, pass) \ 143384740dcSRalf Baechle | SIBYTE_HDR_FMASK_AFTER(chip, pass)) & SIBYTE_HDR_FEATURES)) 144384740dcSRalf Baechle 145384740dcSRalf Baechle /* True if header features enabled for exactly that rev. */ 146384740dcSRalf Baechle #define SIBYTE_HDR_FEATURE_EXACT(chip, pass) \ 147384740dcSRalf Baechle (!! (SIBYTE_HDR_FMASK(chip, pass) & SIBYTE_HDR_FEATURES)) 148384740dcSRalf Baechle 149384740dcSRalf Baechle /* True if header features enabled for that rev or before, inclusive. */ 150384740dcSRalf Baechle #define SIBYTE_HDR_FEATURE_UP_TO(chip, pass) \ 151384740dcSRalf Baechle (!! ((SIBYTE_HDR_FMASK(chip, pass) \ 152384740dcSRalf Baechle | SIBYTE_HDR_FMASK_BEFORE(chip, pass)) & SIBYTE_HDR_FEATURES)) 153384740dcSRalf Baechle 154384740dcSRalf Baechle 155384740dcSRalf Baechle /* ********************************************************************* 156384740dcSRalf Baechle * Naming schemes for constants in these files: 157384740dcSRalf Baechle * 158384740dcSRalf Baechle * M_xxx MASK constant (identifies bits in a register). 159384740dcSRalf Baechle * For multi-bit fields, all bits in the field will 160384740dcSRalf Baechle * be set. 161384740dcSRalf Baechle * 162384740dcSRalf Baechle * K_xxx "Code" constant (value for data in a multi-bit 163384740dcSRalf Baechle * field). The value is right justified. 164384740dcSRalf Baechle * 165384740dcSRalf Baechle * V_xxx "Value" constant. This is the same as the 166384740dcSRalf Baechle * corresponding "K_xxx" constant, except it is 167384740dcSRalf Baechle * shifted to the correct position in the register. 168384740dcSRalf Baechle * 169384740dcSRalf Baechle * S_xxx SHIFT constant. This is the number of bits that 170384740dcSRalf Baechle * a field value (code) needs to be shifted 171384740dcSRalf Baechle * (towards the left) to put the value in the right 172384740dcSRalf Baechle * position for the register. 173384740dcSRalf Baechle * 174384740dcSRalf Baechle * A_xxx ADDRESS constant. This will be a physical 175384740dcSRalf Baechle * address. Use the PHYS_TO_K1 macro to generate 176384740dcSRalf Baechle * a K1SEG address. 177384740dcSRalf Baechle * 178384740dcSRalf Baechle * R_xxx RELATIVE offset constant. This is an offset from 179384740dcSRalf Baechle * an A_xxx constant (usually the first register in 180384740dcSRalf Baechle * a group). 181384740dcSRalf Baechle * 182384740dcSRalf Baechle * G_xxx(X) GET value. This macro obtains a multi-bit field 183384740dcSRalf Baechle * from a register, masks it, and shifts it to 184384740dcSRalf Baechle * the bottom of the register (retrieving a K_xxx 185384740dcSRalf Baechle * value, for example). 186384740dcSRalf Baechle * 187384740dcSRalf Baechle * V_xxx(X) VALUE. This macro computes the value of a 188384740dcSRalf Baechle * K_xxx constant shifted to the correct position 189384740dcSRalf Baechle * in the register. 190384740dcSRalf Baechle ********************************************************************* */ 191384740dcSRalf Baechle 192384740dcSRalf Baechle 193384740dcSRalf Baechle 194384740dcSRalf Baechle 195384740dcSRalf Baechle /* 196384740dcSRalf Baechle * Cast to 64-bit number. Presumably the syntax is different in 197384740dcSRalf Baechle * assembly language. 198384740dcSRalf Baechle * 199384740dcSRalf Baechle * Note: you'll need to define uint32_t and uint64_t in your headers. 200384740dcSRalf Baechle */ 201384740dcSRalf Baechle 202384740dcSRalf Baechle #if !defined(__ASSEMBLY__) 203384740dcSRalf Baechle #define _SB_MAKE64(x) ((uint64_t)(x)) 204384740dcSRalf Baechle #define _SB_MAKE32(x) ((uint32_t)(x)) 205384740dcSRalf Baechle #else 206384740dcSRalf Baechle #define _SB_MAKE64(x) (x) 207384740dcSRalf Baechle #define _SB_MAKE32(x) (x) 208384740dcSRalf Baechle #endif 209384740dcSRalf Baechle 210384740dcSRalf Baechle 211384740dcSRalf Baechle /* 212384740dcSRalf Baechle * Make a mask for 1 bit at position 'n' 213384740dcSRalf Baechle */ 214384740dcSRalf Baechle 215384740dcSRalf Baechle #define _SB_MAKEMASK1(n) (_SB_MAKE64(1) << _SB_MAKE64(n)) 216384740dcSRalf Baechle #define _SB_MAKEMASK1_32(n) (_SB_MAKE32(1) << _SB_MAKE32(n)) 217384740dcSRalf Baechle 218384740dcSRalf Baechle /* 219384740dcSRalf Baechle * Make a mask for 'v' bits at position 'n' 220384740dcSRalf Baechle */ 221384740dcSRalf Baechle 222384740dcSRalf Baechle #define _SB_MAKEMASK(v, n) (_SB_MAKE64((_SB_MAKE64(1)<<(v))-1) << _SB_MAKE64(n)) 223384740dcSRalf Baechle #define _SB_MAKEMASK_32(v, n) (_SB_MAKE32((_SB_MAKE32(1)<<(v))-1) << _SB_MAKE32(n)) 224384740dcSRalf Baechle 225384740dcSRalf Baechle /* 226384740dcSRalf Baechle * Make a value at 'v' at bit position 'n' 227384740dcSRalf Baechle */ 228384740dcSRalf Baechle 229384740dcSRalf Baechle #define _SB_MAKEVALUE(v, n) (_SB_MAKE64(v) << _SB_MAKE64(n)) 230384740dcSRalf Baechle #define _SB_MAKEVALUE_32(v, n) (_SB_MAKE32(v) << _SB_MAKE32(n)) 231384740dcSRalf Baechle 232384740dcSRalf Baechle #define _SB_GETVALUE(v, n, m) ((_SB_MAKE64(v) & _SB_MAKE64(m)) >> _SB_MAKE64(n)) 233384740dcSRalf Baechle #define _SB_GETVALUE_32(v, n, m) ((_SB_MAKE32(v) & _SB_MAKE32(m)) >> _SB_MAKE32(n)) 234384740dcSRalf Baechle 235384740dcSRalf Baechle /* 236384740dcSRalf Baechle * Macros to read/write on-chip registers 237384740dcSRalf Baechle * XXX should we do the PHYS_TO_K1 here? 238384740dcSRalf Baechle */ 239384740dcSRalf Baechle 240384740dcSRalf Baechle 241384740dcSRalf Baechle #if defined(__mips64) && !defined(__ASSEMBLY__) 242384740dcSRalf Baechle #define SBWRITECSR(csr, val) *((volatile uint64_t *) PHYS_TO_K1(csr)) = (val) 243384740dcSRalf Baechle #define SBREADCSR(csr) (*((volatile uint64_t *) PHYS_TO_K1(csr))) 244384740dcSRalf Baechle #endif /* __ASSEMBLY__ */ 245384740dcSRalf Baechle 246384740dcSRalf Baechle #endif 247