1112158Sdas/*	$NetBSD: cpuctl.h,v 1.1 2008/05/05 17:54:14 ad Exp $	*/
2112158Sdas
3112158Sdas/*-
4112158Sdas * Copyright (c) 2008 The NetBSD Foundation, Inc.
5112158Sdas * All rights reserved.
6112158Sdas *
7112158Sdas * Redistribution and use in source and binary forms, with or without
8112158Sdas * modification, are permitted provided that the following conditions
9112158Sdas * are met:
10112158Sdas * 1. Redistributions of source code must retain the above copyright
11112158Sdas *    notice, this list of conditions and the following disclaimer.
12112158Sdas * 2. Redistributions in binary form must reproduce the above copyright
13112158Sdas *    notice, this list of conditions and the following disclaimer in the
14112158Sdas *    documentation and/or other materials provided with the distribution.
15112158Sdas *
16112158Sdas * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
17112158Sdas * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18112158Sdas * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19112158Sdas * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
20112158Sdas * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21112158Sdas * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22112158Sdas * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23112158Sdas * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24112158Sdas * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25112158Sdas * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26112158Sdas * POSSIBILITY OF SUCH DAMAGE.
27112158Sdas */
28112158Sdas
29165743Sdasint	aprint_normal(const char *, ...);
30165743Sdasint	aprint_verbose(const char *, ...);
31112158Sdasint	aprint_error(const char *, ...);
32112158Sdasint	aprint_normal_dev(const char *, const char *, ...);
33112158Sdasint	aprint_verbose_dev(const char *, const char *, ...);
34112158Sdasint	aprint_error_dev(const char *, const char *, ...);
35112158Sdas
36112158Sdasvoid	identifycpu(const char *);
37219557Sdas