1 /* Common Blackfin device stuff.
3 Copyright (C) 2010-2020 Free Software Foundation, Inc.
4 Contributed by Analog Devices, Inc.
6 This file is part of simulators.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
26 #include "hw-device.h"
29 /* We keep the same inital structure layout with DMA enabled devices. */
32 struct hw
*dma_master
;
36 #define BFIN_MMR_16(mmr) mmr, __pad_##mmr
38 /* Most peripherals have either one interrupt or these three. */
41 #define DV_PORT_STAT 2
43 unsigned int dv_get_bus_num (struct hw
*);
45 static inline bu8
dv_load_1 (const void *ptr
)
47 const unsigned char *c
= ptr
;
51 static inline void dv_store_1 (void *ptr
, bu8 val
)
53 unsigned char *c
= ptr
;
57 static inline bu16
dv_load_2 (const void *ptr
)
59 const unsigned char *c
= ptr
;
60 return (c
[1] << 8) | dv_load_1 (ptr
);
63 static inline void dv_store_2 (void *ptr
, bu16 val
)
65 unsigned char *c
= ptr
;
67 dv_store_1 (ptr
, val
);
70 static inline bu32
dv_load_4 (const void *ptr
)
72 const unsigned char *c
= ptr
;
73 return (c
[3] << 24) | (c
[2] << 16) | dv_load_2 (ptr
);
76 static inline void dv_store_4 (void *ptr
, bu32 val
)
78 unsigned char *c
= ptr
;
81 dv_store_2 (ptr
, val
);
84 /* Helpers for MMRs where only the specified bits are W1C. The
85 rest are left unmodified. */
86 #define dv_w1c(ptr, val, bits) (*(ptr) &= ~((val) & (bits)))
87 static inline void dv_w1c_2 (bu16
*ptr
, bu16 val
, bu16 bits
)
89 dv_w1c (ptr
, val
, bits
);
91 static inline void dv_w1c_4 (bu32
*ptr
, bu32 val
, bu32 bits
)
93 dv_w1c (ptr
, val
, bits
);
96 /* Helpers for MMRs where all bits are RW except for the specified
97 bits -- those ones are W1C. */
98 #define dv_w1c_partial(ptr, val, bits) \
99 (*(ptr) = ((val) | (*(ptr) & (bits))) & ~((val) & (bits)))
100 static inline void dv_w1c_2_partial (bu16
*ptr
, bu16 val
, bu16 bits
)
102 dv_w1c_partial (ptr
, val
, bits
);
104 static inline void dv_w1c_4_partial (bu32
*ptr
, bu32 val
, bu32 bits
)
106 dv_w1c_partial (ptr
, val
, bits
);
109 /* XXX: Grubbing around in device internals is probably wrong, but
110 until someone shows me what's right ... */
111 static inline struct hw
*
112 dv_get_device (SIM_CPU
*cpu
, const char *device_name
)
114 SIM_DESC sd
= CPU_STATE (cpu
);
115 void *root
= STATE_HW (sd
);
116 return hw_tree_find_device (root
, device_name
);
120 dv_get_state (SIM_CPU
*cpu
, const char *device_name
)
122 return hw_data (dv_get_device (cpu
, device_name
));
125 #define DV_STATE(cpu, dv) dv_get_state (cpu, "/core/bfin_"#dv)
127 #define DV_STATE_CACHED(cpu, dv) \
129 struct bfin_##dv *__##dv = BFIN_CPU_STATE.dv##_cache; \
131 BFIN_CPU_STATE.dv##_cache = __##dv = dv_get_state (cpu, "/core/bfin_"#dv); \
135 void dv_bfin_mmr_invalid (struct hw
*, address_word
, unsigned nr_bytes
, bool write
);
136 bool dv_bfin_mmr_require (struct hw
*, address_word
, unsigned nr_bytes
, unsigned size
, bool write
);
137 /* For 32-bit memory mapped registers that allow 16-bit or 32-bit access. */
138 bool dv_bfin_mmr_require_16_32 (struct hw
*, address_word
, unsigned nr_bytes
, bool write
);
139 /* For 32-bit memory mapped registers that only allow 16-bit access. */
140 #define dv_bfin_mmr_require_16(hw, addr, nr_bytes, write) dv_bfin_mmr_require (hw, addr, nr_bytes, 2, write)
141 /* For 32-bit memory mapped registers that only allow 32-bit access. */
142 #define dv_bfin_mmr_require_32(hw, addr, nr_bytes, write) dv_bfin_mmr_require (hw, addr, nr_bytes, 4, write)
144 #define HW_TRACE_WRITE() \
145 HW_TRACE ((me, "write 0x%08lx (%s) length %u with 0x%x", \
146 (unsigned long) addr, mmr_name (mmr_off), nr_bytes, value))
147 #define HW_TRACE_READ() \
148 HW_TRACE ((me, "read 0x%08lx (%s) length %u", \
149 (unsigned long) addr, mmr_name (mmr_off), nr_bytes))
151 #define HW_TRACE_DMA_WRITE() \
152 HW_TRACE ((me, "dma write 0x%08lx length %u", \
153 (unsigned long) addr, nr_bytes))
154 #define HW_TRACE_DMA_READ() \
155 HW_TRACE ((me, "dma read 0x%08lx length %u", \
156 (unsigned long) addr, nr_bytes))