1/* $NetBSD: puccn.h,v 1.7 2014/03/05 05:56:04 msaitoh Exp $ */
2
3/*
4 * Derived from pci.c
5 * Copyright (c) 2000 Geocast Networks Systems. All rights reserved.
6 *
7 * Copyright (c) 1995, 1996, 1997, 1998
8 * Christopher G. Demetriou. All rights reserved.
9 * Copyright (c) 1994 Charles M. Hannum. All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by Charles M. Hannum.
22 * 4. The name of the author may not be used to endorse or promote products
23 * derived from this software without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include <dev/cons.h>
38#include <dev/pci/pcivar.h>
39
40/*
41 * Machine independent support for PCI serial console support.
42 *
43 * Platform code should provide cpu_comcnprobe() that fills
44 * in the pci_attach_args. This allows the console can be
45 * used before the normal PCI bus initialization.
46 */
47
48void puc_cnprobe(struct consdev *);
49int puc_cninit(struct consdev *);
50int cpu_puc_cnprobe(struct consdev *, struct pci_attach_args *);
51void puc_gdbprobe(struct consdev *);
52void puc_gdbinit(struct consdev *);
53