summaryrefslogtreecommitdiff
path: root/sys/arch/socppc/include/autoconf.h
blob: ec4a12f85cbfcf49ebb86cba7c263e7ea9ce49e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*	$OpenBSD: autoconf.h,v 1.4 2009/09/02 20:29:39 kettenis Exp $	*/

/*
 * Copyright (c) 2008 Mark Kettenis
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifndef _MACHINE_AUTOCONF_H_
#define _MACHINE_AUTOCONF_H_

#include <machine/bus.h>

struct mainbus_attach_args {
	bus_space_tag_t	ma_iot;
	bus_dma_tag_t	ma_dmat;
	char		*ma_name;
	int		ma_node;
};

struct obio_attach_args {
	bus_space_tag_t	oa_iot;
	bus_dma_tag_t	oa_dmat;
	bus_addr_t	oa_offset;
	int		oa_ivec;
	int		oa_phy;
	char		*oa_name;
	int		oa_node;
};

#define cf_offset	cf_loc[0]
#define cf_ivec		cf_loc[1]
#define cf_phy		cf_loc[2]

typedef int (time_read_t)(time_t *sec);
typedef int (time_write_t)(time_t sec);

extern time_read_t *time_read;
extern time_write_t *time_write;

#endif /* _MACHINE_AUTOCONF_H_ */