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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
/* $OpenBSD: cortex.c,v 1.7 2022/03/12 14:40:41 mpi Exp $ */
/* $NetBSD: mainbus.c,v 1.3 2001/06/13 17:52:43 nathanw Exp $ */
/*
* Copyright (c) 1994,1995 Mark Brinicombe.
* Copyright (c) 1994 Brini.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Brini.
* 4. The name of the company nor the name of the author may be used to
* endorse or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL BRINI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* RiscBSD kernel project
*
* mainbus.c
*
* mainbus configuration
*
* Created : 15/12/94
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/device.h>
#define _ARM32_BUS_DMA_PRIVATE
#include <machine/bus.h>
#include <arm/cpufunc.h>
#include <arm/armv7/armv7var.h>
#include <arm/cortex/cortex.h>
#include <arm/mainbus/mainbus.h>
struct arm32_bus_dma_tag cortex_bus_dma_tag = {
NULL,
_bus_dmamap_create,
_bus_dmamap_destroy,
_bus_dmamap_load,
_bus_dmamap_load_mbuf,
_bus_dmamap_load_uio,
_bus_dmamap_load_raw,
_bus_dmamap_load_buffer,
_bus_dmamap_unload,
_bus_dmamap_sync,
_bus_dmamem_alloc,
_bus_dmamem_free,
_bus_dmamem_map,
_bus_dmamem_unmap,
_bus_dmamem_mmap,
};
/* Prototypes for functions provided */
int cortexmatch(struct device *, void *, void *);
void cortexattach(struct device *, struct device *, void *);
int cortexprint(void *aux, const char *cortex);
int cortexsearch(struct device *, void *, void *);
/* attach and device structures for the device */
const struct cfattach cortex_ca = {
sizeof(struct device), cortexmatch, cortexattach, NULL,
config_activate_children
};
struct cfdriver cortex_cd = {
NULL, "cortex", DV_DULL
};
/*
* int cortexmatch(struct device *parent, struct cfdata *cf, void *aux)
*/
int
cortexmatch(struct device *parent, void *cfdata, void *aux)
{
union mainbus_attach_args *ma = aux;
struct cfdata *cf = (struct cfdata *)cfdata;
int cputype = cpufunc_id();
if (strcmp(cf->cf_driver->cd_name, ma->ma_name) != 0)
return (0);
if ((cputype & CPU_ID_CORTEX_A7_MASK) == CPU_ID_CORTEX_A7 ||
(cputype & CPU_ID_CORTEX_A9_MASK) == CPU_ID_CORTEX_A9 ||
(cputype & CPU_ID_CORTEX_A15_MASK) == CPU_ID_CORTEX_A15 ||
(cputype & CPU_ID_CORTEX_A17_MASK) == CPU_ID_CORTEX_A17) {
if (armv7_periphbase())
return (1);
}
return (0);
}
/*
* void cortexattach(struct device *parent, struct device *self, void *aux)
*
* probe and attach all children
*/
void
cortexattach(struct device *parent, struct device *self, void *aux)
{
printf("\n");
config_search(cortexsearch, self, aux);
}
int
cortexsearch(struct device *parent, void *vcf, void *aux)
{
struct cortex_attach_args ca;
struct cfdata *cf = vcf;
ca.ca_name = cf->cf_driver->cd_name;
ca.ca_iot = &armv7_bs_tag;
ca.ca_dmat = &cortex_bus_dma_tag;
ca.ca_periphbase = armv7_periphbase();
/* allow for devices to be disabled in UKC */
if ((*cf->cf_attach->ca_match)(parent, cf, &ca) == 0)
return 0;
config_attach(parent, cf, &ca, cortexprint);
return 1;
}
/*
* int cortexprint(void *aux, const char *cortex)
*
* print routine used during config of children
*/
int
cortexprint(void *aux, const char *cortex)
{
struct cortex_attach_args *ca = aux;
if (cortex != NULL)
printf("%s at %s", ca->ca_name, cortex);
return (UNCONF);
}
|