blob: b805fb9ab7b0c0eae9c443cdf5ad87fb4f5befc8 (
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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# $OpenBSD: files.zaurus,v 1.32 2016/01/08 15:54:13 jcs Exp $
#
# First try for arm-specific configuration info
#
maxpartitions 16
maxusers 2 8 64
major {wd = 16}
major {sd = 24}
major {cd = 26}
major {rd = 18}
file arch/arm/arm/conf.c
file arch/zaurus/zaurus/zaurus_machdep.c
#
# Machine-independent SCSI drivers
#
include "scsi/files.scsi"
include "dev/atapiscsi/files.atapiscsi"
# CPU support and integrated peripherals
include "arch/arm/xscale/files.pxa2x0"
# LCD frame buffer
attach lcd at pxaip with lcd_pxaip
file arch/zaurus/zaurus/zaurus_lcd.c lcd_pxaip
# GPIO keyboard
device zkbd: wskbddev
attach zkbd at pxaip
file arch/zaurus/dev/zaurus_kbd.c zkbd
# 16-bit GPIO controller
device scoop
attach scoop at pxaip
file arch/zaurus/dev/zaurus_scoop.c scoop
# PCMCIA/CF socket controller
attach pxapcic at pxaip with pxapcic_scoop
file arch/zaurus/dev/scoop_pcic.c pxapcic_scoop
# SD/MMC socket controller
attach pxammc at pxaip with pxammc_scoop
file arch/zaurus/dev/scoop_mmc.c pxammc_scoop
# Dedicated SSP unit for ADC, touch screen, and backlight
device zssp
attach zssp at pxaip
file arch/zaurus/dev/zaurus_ssp.c zssp
# Power manager and APM emulation
attach apm at pxaip with apm_pxaip
file arch/zaurus/dev/zaurus_apm.c apm_pxaip
# Zaurus touchpad
device zts: wsmousedev
attach zts at pxaip
file arch/zaurus/dev/zts.c zts
# Zaurus sound
device zaudio: audio, i2s, i2c
attach zaudio at pxaip
file arch/zaurus/dev/zaurus_audio.c zaudio
# Zaurus remote control
device zrc: wskbddev
attach zrc at pxaip
file arch/zaurus/dev/zaurus_remote.c zrc
# NAND flash pseudo-disk device (Xilinx NAND flash controller)
device flash: disk
attach flash at pxaip with flash_pxaip
file arch/zaurus/dev/zaurus_flash.c flash_pxaip
#
# Machine-independent ATA drivers
#
include "dev/ata/files.ata"
# Generic MD files
file arch/zaurus/zaurus/autoconf.c
file arch/arm/arm/disksubr.c disk
# ARM FPE
file arch/arm/fpe-arm/armfpe_glue.S armfpe
file arch/arm/fpe-arm/armfpe_init.c armfpe
file arch/arm/fpe-arm/armfpe.s armfpe
# Include WSCONS stuff
include "dev/wscons/files.wscons"
include "dev/rasops/files.rasops"
include "dev/wsfont/files.wsfont"
#
# Machine-independent HID support
#
include "dev/hid/files.hid"
# Include USB stuff
include "dev/usb/files.usb"
attach pxaudc at pxaip with pxaudc_zaurus
file arch/zaurus/dev/zaurus_udc.c pxaudc_zaurus
# Media Independent Interface (mii)
include "dev/mii/files.mii"
#
# Machine-independent SD/MMC drivers
#
include "dev/sdmmc/files.sdmmc"
#
# Machine-independent 1-Wire drivers
#
include "dev/onewire/files.onewire"
|