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
|
/* $NetBSD: connector_fdt.c,v 1.5 2021/01/27 03:10:21 thorpej Exp $ */
/*-
* Copyright (c) 2018 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Manuel Bouyer.
*
* 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.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``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 FOUNDATION 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.
*/
/*
* connector driver.
* specified in linux/Documentation/devicetree/bindings/display/connector/
* basically it only register its endpoint.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(1, "$NetBSD: connector_fdt.c,v 1.5 2021/01/27 03:10:21 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/bus.h>
#include <sys/kmem.h>
#include <dev/fdt/fdtvar.h>
#include <dev/fdt/fdt_port.h>
#include <dev/fdt/connector_fdt.h>
static int fdt_connector_match(device_t, cfdata_t, void *);
static void fdt_connector_attach(device_t, device_t, void *);
static void *fdt_connector_get_data(device_t, struct fdt_endpoint *);
SLIST_HEAD(, fdt_connector_softc) fdt_connectors =
SLIST_HEAD_INITIALIZER(&fdt_connectors);
struct fdt_connector_softc {
device_t sc_dev;
int sc_phandle;
struct fdt_connector sc_con;
SLIST_ENTRY(fdt_connector_softc) sc_list;
struct fdt_device_ports sc_ports;
};
#define sc_type sc_con.con_type
CFATTACH_DECL_NEW(fdt_connector, sizeof(struct fdt_connector_softc),
fdt_connector_match, fdt_connector_attach, NULL, NULL);
static const struct device_compatible_entry compat_data[] = {
{ .compat = "composite-video-connector", .value = CON_TV},
{ .compat = "dvi-connector", .value = CON_DVI},
{ .compat = "hdmi-connector", .value = CON_HDMI},
{ .compat = "vga-connector", .value = CON_VGA},
DEVICE_COMPAT_EOL
};
static int
fdt_connector_match(device_t parent, cfdata_t cf, void *aux)
{
const struct fdt_attach_args *faa = aux;
return of_compatible_match(faa->faa_phandle, compat_data);
}
static void
fdt_connector_attach(device_t parent, device_t self, void *aux)
{
struct fdt_connector_softc *sc = device_private(self);
const struct fdt_attach_args * const faa = aux;
const int phandle = faa->faa_phandle;
sc->sc_dev = self;
sc->sc_phandle = phandle;
sc->sc_type = of_compatible_lookup(phandle, compat_data)->value;
SLIST_INSERT_HEAD(&fdt_connectors, sc, sc_list);
aprint_naive("\n");
switch(sc->sc_type) {
case CON_VGA:
aprint_normal(": VGA");
break;
case CON_DVI:
aprint_normal(": DVI");
break;
case CON_HDMI:
aprint_normal(": HDMI");
break;
case CON_TV:
aprint_normal(": composite");
break;
default:
panic("unknown connector type %d\n", sc->sc_type);
}
aprint_normal(" connector\n");
sc->sc_ports.dp_ep_get_data = fdt_connector_get_data;
fdt_ports_register(&sc->sc_ports, self, phandle, EP_CONNECTOR);
}
static void *
fdt_connector_get_data(device_t dev, struct fdt_endpoint *ep)
{
struct fdt_connector_softc *sc = device_private(dev);
return &sc->sc_con;
}
|