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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
.\" $OpenBSD: pxaip.4,v 1.3 2005/01/15 17:30:39 miod Exp $
.\"
.\" Copyright (c) 2005, Miodrag Vallat.
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
.\" DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
.\" INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
.\" (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
.\" SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
.\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
.\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd January 4, 2005
.Dt PXAIP 4 zaurus
.Os
.Sh NAME
.Nm pxaip
.Nd PXA2x0 Integrated Peripheral Bus
.Sh SYNOPSIS
.Cd "pxaip0 at mainbus?"
.Pp
.Cd "pxaintc0 at pxaip?"
.Cd "pxagpio0 at pxaip?"
.Cd "com0 at pxaip? addr 0x40100000 intr 22"
.Cd "com1 at pxaip? addr 0x40200000 intr 21"
.Cd "saost0 at pxaip? addr 0x40a00000 size 0x20"
.Cd "ohci0 at pxaip? addr 0x4c000000 size 0x70 intr 3"
.Cd "pxapcic0 at pxaip?"
.Cd "lcd0 at pxaip?"
.Cd "zkbd0 at pxaip?"
.Sh DESCRIPTION
The
.Nm
driver provides a generic interface to the integrated perpiheral bus found
on the Intel PXA210, PXA250, PXA260 and PXA270 processors.
.Pp
Companion drivers provide access to the various resources:
.Pp
.Bl -tag -compact -width tenletters -offset indent
.It Xr com 4
NS16550-compatible asynchronous serial ports.
.It Xr lcd 4
On-board LCD display.
.It Xr ohci 4
OHCI USB controller.
.It Xr pxagpio 4
GPIO controller.
.It Xr pxaintc 4
INTC interrupt controller.
.It Xr pxapcic 4
PCMCIA controller.
.It Xr saost 4
Built-in timer, compatible with the SA-1110 processor timer.
.It Xr zkbd 4
System keyboard.
.El
.Sh SEE ALSO
.Xr autoconf 4 ,
.Xr com 4 ,
.Xr lcd 4 ,
.Xr ohci 4 ,
.Xr pxagpio 4 ,
.Xr pxaintc 4 ,
.Xr pxapcic 4 ,
.Xr saost 4 ,
.Xr zkbd 4 ,
.Xr config 8
.Sh HISTORY
Support for the PXA2x0 family appeared in
.Ox 3.7 .
|