1/*-
2 * Copyright (c) 2012 Semihalf.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD$");
29
30#include <sys/param.h>
31#include <sys/systm.h>
32#include <sys/kernel.h>
33#include <sys/bus.h>
34#include <sys/module.h>
35
36#include <dev/ofw/ofw_bus.h>
37#include <dev/ofw/ofw_bus_subr.h>
38
39#include <contrib/ncsw/inc/ncsw_ext.h>
40#include <contrib/ncsw/inc/enet_ext.h>
41
42#include "fman.h"
43
44#define	FFMAN_DEVSTR	"Freescale Frame Manager"
45
46static int	fman_fdt_probe(device_t dev);
47
48static device_method_t fman_methods[] = {
49	/* Device interface */
50	DEVMETHOD(device_probe,		fman_fdt_probe),
51	DEVMETHOD(device_attach,	fman_attach),
52	DEVMETHOD(device_detach,	fman_detach),
53
54	DEVMETHOD(device_shutdown,	fman_shutdown),
55	DEVMETHOD(device_suspend,	fman_suspend),
56	DEVMETHOD(device_resume,	fman_resume),
57
58	{ 0, 0 }
59};
60
61static driver_t fman_driver = {
62	"fman",
63	fman_methods,
64	sizeof(struct fman_softc),
65};
66
67static devclass_t fman_devclass;
68EARLY_DRIVER_MODULE(fman, simplebus, fman_driver, fman_devclass, 0, 0,
69    BUS_PASS_BUS + BUS_PASS_ORDER_MIDDLE);
70
71
72static int
73fman_fdt_probe(device_t dev)
74{
75
76	if (!ofw_bus_is_compatible(dev, "fsl,fman"))
77		return (ENXIO);
78
79	device_set_desc(dev, FFMAN_DEVSTR);
80
81	return (BUS_PROBE_DEFAULT);
82}
83
84uint32_t
85fman_get_clock(struct fman_softc *sc)
86{
87	device_t dev;
88	phandle_t node;
89	pcell_t fman_clock;
90
91	dev = sc->dev;
92	node = ofw_bus_get_node(dev);
93
94	if ((OF_getprop(node, "clock-frequency", &fman_clock,
95	    sizeof(fman_clock)) <= 0) || (fman_clock == 0)) {
96		device_printf(dev, "could not acquire correct frequency "
97		    "from DTS\n");
98
99		return (0);
100	}
101
102	return ((uint32_t)fman_clock);
103}
104
105