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
|
/* $NetBSD: vidc20.c,v 1.19 2021/08/07 16:18:44 thorpej Exp $ */
/*
* Copyright (c) 1997 Mark Brinicombe
* Copyright (c) 1997 Causality Limited
* 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 Mark Brinicombe
* 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 THE AUTHOR ``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 THE AUTHORS 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
*
* vidc20.c
*
* VIDC20 driver
*
* Created : 22/02/97
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: vidc20.c,v 1.19 2021/08/07 16:18:44 thorpej Exp $");
#include <sys/types.h>
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/bus.h>
#include <arm/iomd/vidc.h>
#include <machine/io.h>
#include <arm/iomd/iomdreg.h>
#include <arm/iomd/iomdvar.h>
#include <arm/mainbus/mainbus.h>
#include "locators.h"
struct vidc20_softc {
device_t sc_dev;
bus_space_tag_t sc_iot;
};
static int vidcmatch(device_t , cfdata_t , void *);
static void vidcattach(device_t , device_t , void *);
static int vidcsearch(device_t , cfdata_t , const int *, void *);
/*
* vidc_base gives the base of the VIDC chip in memory; this is for
* the rest isnt busspaceified yet. Initialised with VIDC_BASE for
* backwards compatibility.
*/
int *vidc_base = (int *)VIDC_BASE;
/*
* vidc_fref is the reference frequency in MHz of the detected VIDC
* (dependent on IOMD/IOC)
* XXX default is RPC600 ?
*/
int vidc_fref = 24000000;
CFATTACH_DECL_NEW(vidc, sizeof (struct vidc20_softc),
vidcmatch, vidcattach, NULL, NULL);
/*
* vidcmatch()
*
* VIDC20 is a write only device so we cannot probe it
* We must assume things are ok.
*/
static int
vidcmatch(device_t parent, cfdata_t cf, void *aux)
{
return 1;
}
/*
* vidcsearch()
*
* search routine used during the config of children
*/
static int
vidcsearch(device_t parent, cfdata_t cf, const int *ldesc, void *aux)
{
if (config_probe(parent, cf, NULL))
config_attach(parent, cf, NULL, NULL, CFARGS_NONE);
return 0;
}
/*
* vidcattach()
*
* Configure all the child devices of the VIDC
*/
static void
vidcattach(device_t parent, device_t self, void *aux)
{
struct vidc20_softc *sc = device_private(self);
struct mainbus_attach_args *mb = aux;
sc->sc_dev = self;
sc->sc_iot = mb->mb_iot;
/*
* Since the VIDC is write-only, infer the type of VIDC from the
* type of IOMD.
*/
switch (IOMD_ID) {
case ARM7500_IOC_ID:
aprint_normal(": ARM7500 video and sound macrocell\n");
vidc_fref = 32000000;
break;
case ARM7500FE_IOC_ID:
aprint_normal(": ARM7500FE video and sound macrocell\n");
vidc_fref = 32000000;
break;
default: /* XXX default? */
case RPC600_IOMD_ID:
aprint_normal(": VIDC20\n");
vidc_fref = 24000000;
break;
}
config_search(self, NULL,
CFARGS(.search = vidcsearch));
}
/* End of vidc20.c */
|