xref: /netbsd-src/sys/arch/mips/cavium/dev/octeon_asxvar.h (revision 09773f5b6cac6063a8c1c99a8f5e689bb0478168)
1*09773f5bSsimonb /*	$NetBSD: octeon_asxvar.h,v 1.4 2020/06/22 02:26:19 simonb Exp $	*/
2f693c922Shikaru 
3f693c922Shikaru /*
4f693c922Shikaru  * Copyright (c) 2007 Internet Initiative Japan, Inc.
5f693c922Shikaru  * All rights reserved.
6f693c922Shikaru  *
7f693c922Shikaru  * Redistribution and use in source and binary forms, with or without
8f693c922Shikaru  * modification, are permitted provided that the following conditions
9f693c922Shikaru  * are met:
10f693c922Shikaru  * 1. Redistributions of source code must retain the above copyright
11f693c922Shikaru  *    notice, this list of conditions and the following disclaimer.
12f693c922Shikaru  * 2. Redistributions in binary form must reproduce the above copyright
13f693c922Shikaru  *    notice, this list of conditions and the following disclaimer in the
14f693c922Shikaru  *    documentation and/or other materials provided with the distribution.
15f693c922Shikaru  *
16f693c922Shikaru  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17f693c922Shikaru  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18f693c922Shikaru  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19f693c922Shikaru  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20f693c922Shikaru  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21f693c922Shikaru  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22f693c922Shikaru  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23f693c922Shikaru  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24f693c922Shikaru  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25f693c922Shikaru  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26f693c922Shikaru  * SUCH DAMAGE.
27f693c922Shikaru  */
28f693c922Shikaru 
29f693c922Shikaru #ifndef _OCTEON_ASXVAR_H_
30f693c922Shikaru #define _OCTEON_ASXVAR_H_
31f693c922Shikaru 
32f693c922Shikaru /* XXX */
333f508e4dSsimonb struct octasx_softc {
34f693c922Shikaru 	int			sc_port;
35f693c922Shikaru 	bus_space_tag_t		sc_regt;
36f693c922Shikaru 	bus_space_handle_t	sc_regh;
37f693c922Shikaru };
38f693c922Shikaru 
39f693c922Shikaru /* XXX */
403f508e4dSsimonb struct octasx_attach_args {
41f693c922Shikaru 	int			aa_port;
42f693c922Shikaru 	bus_space_tag_t		aa_regt;
43f693c922Shikaru };
44f693c922Shikaru 
453f508e4dSsimonb void			octasx_init(struct octasx_attach_args *,
463f508e4dSsimonb 			    struct octasx_softc **);
473f508e4dSsimonb int			octasx_enable(struct octasx_softc *, int);
483f508e4dSsimonb int			octasx_clk_set(struct octasx_softc *, int, int);
493f508e4dSsimonb uint64_t		octasx_int_summary(struct octasx_softc *sc);
50f693c922Shikaru 
51b9fcd28bSsimonb #endif /* _OCTEON_ASXVAR_H_ */
52