1 // SPDX-License-Identifier: GPL-2.0-only
3 * This file is part of wl12xx
5 * Copyright (C) 2008 Nokia Corporation
12 /* FIXME: this is static data nowadays and the table can be removed */
13 static enum wl12xx_acx_int_reg wl1251_io_reg_table
[ACX_REG_TABLE_LEN
] = {
14 [ACX_REG_INTERRUPT_TRIG
] = (REGISTERS_BASE
+ 0x0474),
15 [ACX_REG_INTERRUPT_TRIG_H
] = (REGISTERS_BASE
+ 0x0478),
16 [ACX_REG_INTERRUPT_MASK
] = (REGISTERS_BASE
+ 0x0494),
17 [ACX_REG_HINT_MASK_SET
] = (REGISTERS_BASE
+ 0x0498),
18 [ACX_REG_HINT_MASK_CLR
] = (REGISTERS_BASE
+ 0x049C),
19 [ACX_REG_INTERRUPT_NO_CLEAR
] = (REGISTERS_BASE
+ 0x04B0),
20 [ACX_REG_INTERRUPT_CLEAR
] = (REGISTERS_BASE
+ 0x04A4),
21 [ACX_REG_INTERRUPT_ACK
] = (REGISTERS_BASE
+ 0x04A8),
22 [ACX_REG_SLV_SOFT_RESET
] = (REGISTERS_BASE
+ 0x0000),
23 [ACX_REG_EE_START
] = (REGISTERS_BASE
+ 0x080C),
24 [ACX_REG_ECPU_CONTROL
] = (REGISTERS_BASE
+ 0x0804)
27 static int wl1251_translate_reg_addr(struct wl1251
*wl
, int addr
)
29 /* If the address is lower than REGISTERS_BASE, it means that this is
30 * a chip-specific register address, so look it up in the registers
32 if (addr
< REGISTERS_BASE
) {
33 /* Make sure we don't go over the table */
34 if (addr
>= ACX_REG_TABLE_LEN
) {
35 wl1251_error("address out of range (%d)", addr
);
38 addr
= wl1251_io_reg_table
[addr
];
41 return addr
- wl
->physical_reg_addr
+ wl
->virtual_reg_addr
;
44 static int wl1251_translate_mem_addr(struct wl1251
*wl
, int addr
)
46 return addr
- wl
->physical_mem_addr
+ wl
->virtual_mem_addr
;
49 void wl1251_mem_read(struct wl1251
*wl
, int addr
, void *buf
, size_t len
)
53 physical
= wl1251_translate_mem_addr(wl
, addr
);
55 wl
->if_ops
->read(wl
, physical
, buf
, len
);
58 void wl1251_mem_write(struct wl1251
*wl
, int addr
, void *buf
, size_t len
)
62 physical
= wl1251_translate_mem_addr(wl
, addr
);
64 wl
->if_ops
->write(wl
, physical
, buf
, len
);
67 u32
wl1251_mem_read32(struct wl1251
*wl
, int addr
)
69 return wl1251_read32(wl
, wl1251_translate_mem_addr(wl
, addr
));
72 void wl1251_mem_write32(struct wl1251
*wl
, int addr
, u32 val
)
74 wl1251_write32(wl
, wl1251_translate_mem_addr(wl
, addr
), val
);
77 u32
wl1251_reg_read32(struct wl1251
*wl
, int addr
)
79 return wl1251_read32(wl
, wl1251_translate_reg_addr(wl
, addr
));
82 void wl1251_reg_write32(struct wl1251
*wl
, int addr
, u32 val
)
84 wl1251_write32(wl
, wl1251_translate_reg_addr(wl
, addr
), val
);
87 /* Set the partitions to access the chip addresses.
89 * There are two VIRTUAL partitions (the memory partition and the
90 * registers partition), which are mapped to two different areas of the
91 * PHYSICAL (hardware) memory. This function also makes other checks to
92 * ensure that the partitions are not overlapping. In the diagram below, the
93 * memory partition comes before the register partition, but the opposite is
100 * ...+----+--> mem_start
101 * VIRTUAL address ... | |
102 * space ... | | [PART_0]
104 * 0x00000000 <--+----+... ...+----+--> mem_start + mem_size
108 * part_size <--+----+... | | {unused area)
111 * part_size | | ... | |
112 * + <--+----+... ...+----+--> reg_start
116 * ...+----+--> reg_start + reg_size
120 void wl1251_set_partition(struct wl1251
*wl
,
121 u32 mem_start
, u32 mem_size
,
122 u32 reg_start
, u32 reg_size
)
124 struct wl1251_partition partition
[2];
126 wl1251_debug(DEBUG_SPI
, "mem_start %08X mem_size %08X",
127 mem_start
, mem_size
);
128 wl1251_debug(DEBUG_SPI
, "reg_start %08X reg_size %08X",
129 reg_start
, reg_size
);
131 /* Make sure that the two partitions together don't exceed the
133 if ((mem_size
+ reg_size
) > HW_ACCESS_MEMORY_MAX_RANGE
) {
134 wl1251_debug(DEBUG_SPI
, "Total size exceeds maximum virtual"
135 " address range. Truncating partition[0].");
136 mem_size
= HW_ACCESS_MEMORY_MAX_RANGE
- reg_size
;
137 wl1251_debug(DEBUG_SPI
, "mem_start %08X mem_size %08X",
138 mem_start
, mem_size
);
139 wl1251_debug(DEBUG_SPI
, "reg_start %08X reg_size %08X",
140 reg_start
, reg_size
);
143 if ((mem_start
< reg_start
) &&
144 ((mem_start
+ mem_size
) > reg_start
)) {
145 /* Guarantee that the memory partition doesn't overlap the
146 * registers partition */
147 wl1251_debug(DEBUG_SPI
, "End of partition[0] is "
148 "overlapping partition[1]. Adjusted.");
149 mem_size
= reg_start
- mem_start
;
150 wl1251_debug(DEBUG_SPI
, "mem_start %08X mem_size %08X",
151 mem_start
, mem_size
);
152 wl1251_debug(DEBUG_SPI
, "reg_start %08X reg_size %08X",
153 reg_start
, reg_size
);
154 } else if ((reg_start
< mem_start
) &&
155 ((reg_start
+ reg_size
) > mem_start
)) {
156 /* Guarantee that the register partition doesn't overlap the
157 * memory partition */
158 wl1251_debug(DEBUG_SPI
, "End of partition[1] is"
159 " overlapping partition[0]. Adjusted.");
160 reg_size
= mem_start
- reg_start
;
161 wl1251_debug(DEBUG_SPI
, "mem_start %08X mem_size %08X",
162 mem_start
, mem_size
);
163 wl1251_debug(DEBUG_SPI
, "reg_start %08X reg_size %08X",
164 reg_start
, reg_size
);
167 partition
[0].start
= mem_start
;
168 partition
[0].size
= mem_size
;
169 partition
[1].start
= reg_start
;
170 partition
[1].size
= reg_size
;
172 wl
->physical_mem_addr
= mem_start
;
173 wl
->physical_reg_addr
= reg_start
;
175 wl
->virtual_mem_addr
= 0;
176 wl
->virtual_reg_addr
= mem_size
;
178 wl
->if_ops
->write(wl
, HW_ACCESS_PART0_SIZE_ADDR
, partition
,