1/*	$OpenBSD: fdt.h,v 1.2 2018/08/06 10:52:30 patrick Exp $	*/
2
3/*
4 * Copyright (c) 2016 Patrick Wildt <patrick@blueri.se>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19#ifndef __OCTEON_FDT_H__
20#define __OCTEON_FDT_H__
21
22#include <machine/bus.h>
23
24struct fdt_attach_args {
25	const char		*fa_name;
26	int			 fa_node;
27	bus_space_tag_t		 fa_iot;
28	bus_dma_tag_t		 fa_dmat;
29	struct fdt_reg		*fa_reg;
30	int			 fa_nreg;
31	uint32_t		*fa_intr;
32	int			 fa_nintr;
33	int			 fa_acells;
34	int			 fa_scells;
35};
36
37#define fdt_intr_establish octeon_intr_establish_fdt
38#define fdt_intr_disestablish octeon_intr_disestablish_fdt
39
40#endif /* __OCTEON_FDT_H__ */
41