zynq_cemac.c revision 1.9 1 1.9 skrll /* $NetBSD: zynq_cemac.c,v 1.9 2024/08/25 07:25:00 skrll Exp $ */
2 1.1 skrll /*-
3 1.1 skrll * Copyright (c) 2015 Genetec Corporation. All rights reserved.
4 1.1 skrll * Written by Hashimoto Kenichi for Genetec Corporation.
5 1.1 skrll *
6 1.1 skrll * Redistribution and use in source and binary forms, with or without
7 1.1 skrll * modification, are permitted provided that the following conditions
8 1.1 skrll * are met:
9 1.1 skrll * 1. Redistributions of source code must retain the above copyright
10 1.1 skrll * notice, this list of conditions and the following disclaimer.
11 1.1 skrll * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 skrll * notice, this list of conditions and the following disclaimer in the
13 1.1 skrll * documentation and/or other materials provided with the distribution.
14 1.1 skrll *
15 1.1 skrll * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
16 1.1 skrll * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
17 1.1 skrll * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 1.1 skrll * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
19 1.1 skrll * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 1.1 skrll * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 1.1 skrll * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 1.1 skrll * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 1.1 skrll * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 1.1 skrll * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 1.1 skrll * POSSIBILITY OF SUCH DAMAGE.
26 1.1 skrll */
27 1.1 skrll
28 1.1 skrll #include <sys/cdefs.h>
29 1.9 skrll __KERNEL_RCSID(0, "$NetBSD: zynq_cemac.c,v 1.9 2024/08/25 07:25:00 skrll Exp $");
30 1.1 skrll
31 1.1 skrll #include <sys/param.h>
32 1.6 skrll
33 1.1 skrll #include <sys/bus.h>
34 1.1 skrll #include <sys/conf.h>
35 1.1 skrll #include <sys/device.h>
36 1.1 skrll #include <sys/intr.h>
37 1.1 skrll #include <sys/systm.h>
38 1.1 skrll
39 1.1 skrll #include <dev/cadence/if_cemacvar.h>
40 1.1 skrll
41 1.4 jmcneill #include <net/if_ether.h>
42 1.4 jmcneill
43 1.1 skrll #include <dev/fdt/fdtvar.h>
44 1.1 skrll
45 1.2 thorpej static const struct device_compatible_entry compat_data[] = {
46 1.2 thorpej { .compat = "cdns,zynq-gem" },
47 1.2 thorpej DEVICE_COMPAT_EOL
48 1.1 skrll };
49 1.1 skrll
50 1.9 skrll static int
51 1.1 skrll cemac_match(device_t parent, cfdata_t cfdata, void *aux)
52 1.1 skrll {
53 1.1 skrll struct fdt_attach_args * const faa = aux;
54 1.1 skrll
55 1.2 thorpej return of_compatible_match(faa->faa_phandle, compat_data);
56 1.1 skrll }
57 1.1 skrll
58 1.9 skrll static void
59 1.1 skrll cemac_attach(device_t parent, device_t self, void *aux)
60 1.1 skrll {
61 1.1 skrll struct fdt_attach_args * const faa = aux;
62 1.9 skrll struct cemac_softc *sc = device_private(self);
63 1.1 skrll const int phandle = faa->faa_phandle;
64 1.4 jmcneill prop_dictionary_t prop = device_properties(self);
65 1.1 skrll char intrstr[128];
66 1.4 jmcneill const char *macaddr;
67 1.1 skrll bus_addr_t addr;
68 1.1 skrll bus_size_t size;
69 1.4 jmcneill int error, len;
70 1.1 skrll
71 1.1 skrll if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
72 1.1 skrll aprint_error(": couldn't get registers\n");
73 1.1 skrll return;
74 1.1 skrll }
75 1.1 skrll
76 1.9 skrll error = bus_space_map(faa->faa_bst, addr, size, 0, &sc->sc_ioh);
77 1.1 skrll if (error) {
78 1.1 skrll aprint_error(": failed to map register %#lx@%#lx: %d\n",
79 1.1 skrll size, addr, error);
80 1.1 skrll return;
81 1.1 skrll }
82 1.1 skrll
83 1.1 skrll if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
84 1.1 skrll aprint_error(": failed to decode interrupt\n");
85 1.1 skrll return;
86 1.1 skrll }
87 1.1 skrll
88 1.1 skrll if (fdtbus_intr_establish(phandle, 0, IPL_NET, 0, cemac_intr,
89 1.3 jmcneill device_private(self)) == NULL) {
90 1.7 skrll aprint_error(": failed to establish interrupt on %s\n",
91 1.7 skrll intrstr);
92 1.1 skrll return;
93 1.1 skrll }
94 1.1 skrll
95 1.4 jmcneill macaddr = fdtbus_get_prop(phandle, "local-mac-address", &len);
96 1.4 jmcneill if (macaddr != NULL && len == ETHER_ADDR_LEN) {
97 1.4 jmcneill prop_dictionary_set_data(prop, "mac-address", macaddr, len);
98 1.4 jmcneill }
99 1.4 jmcneill
100 1.9 skrll sc->sc_dev = self;
101 1.9 skrll sc->sc_iot = faa->faa_bst;
102 1.9 skrll sc->sc_dmat = faa->faa_dmat;
103 1.9 skrll sc->cemac_flags = CEMAC_FLAG_GEM;
104 1.9 skrll
105 1.9 skrll cemac_attach_common(sc);
106 1.3 jmcneill aprint_normal_dev(self, "interrupting on %s\n", intrstr);
107 1.1 skrll }
108 1.1 skrll
109 1.9 skrll
110 1.9 skrll CFATTACH_DECL_NEW(cemac, sizeof(struct cemac_softc),
111 1.9 skrll cemac_match, cemac_attach, NULL, NULL);
112