File: amcc5920.h

package info (click to toggle)
linux 6.19.2-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,759,612 kB
  • sloc: ansic: 27,004,852; asm: 273,402; sh: 151,313; python: 81,277; makefile: 58,544; perl: 34,311; xml: 21,064; cpp: 5,984; yacc: 4,841; lex: 2,901; awk: 1,707; sed: 30; ruby: 25
file content (49 lines) | stat: -rw-r--r-- 1,258 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* SPDX-License-Identifier: GPL-2.0 */

/***************************************************************************
 *  Header for amcc5920 pci chip
 *
 *   copyright		  : (C) 2002 by Frank Mori Hess
 ***************************************************************************/

// plx pci chip registers and bits
enum amcc_registers {
	AMCC_INTCS_REG = 0x38,
	AMCC_PASS_THRU_REG	= 0x60,
};

enum amcc_incsr_bits {
	AMCC_ADDON_INTR_ENABLE_BIT = 0x2000,
	AMCC_ADDON_INTR_ACTIVE_BIT = 0x400000,
	AMCC_INTR_ACTIVE_BIT = 0x800000,
};

static const int bits_per_region = 8;

static inline uint32_t amcc_wait_state_bits(unsigned int region, unsigned int num_wait_states)
{
	return (num_wait_states & 0x7) << (--region * bits_per_region);
};

enum amcc_prefetch_bits {
	PREFETCH_DISABLED = 0x0,
	PREFETCH_SMALL = 0x8,
	PREFETCH_MEDIUM = 0x10,
	PREFETCH_LARGE = 0x18,
};

static inline uint32_t amcc_prefetch_bits(unsigned int region, enum amcc_prefetch_bits prefetch)
{
	return prefetch << (--region * bits_per_region);
};

static inline uint32_t amcc_PTADR_mode_bit(unsigned int region)
{
	return 0x80 << (--region * bits_per_region);
};

static inline uint32_t amcc_disable_write_fifo_bit(unsigned int region)
{
	return 0x20 << (--region * bits_per_region);
};