diff options
Diffstat (limited to 'arch/mips')
| -rw-r--r-- | arch/mips/Kconfig | 7 | ||||
| -rw-r--r-- | arch/mips/Makefile | 35 | ||||
| -rw-r--r-- | arch/mips/configs/tb0287_defconfig | 1041 | ||||
| -rw-r--r-- | arch/mips/kernel/genrtc.c | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/i8259.c | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/irixioctl.c | 5 | ||||
| -rw-r--r-- | arch/mips/kernel/irixsig.c | 17 | ||||
| -rw-r--r-- | arch/mips/kernel/r2300_fpu.S | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/r2300_switch.S | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/r4k_fpu.S | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/r4k_switch.S | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/r6000_fpu.S | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/scall32-o32.S | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/scall64-64.S | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/syscall.c | 2 | ||||
| -rw-r--r-- | arch/mips/kernel/sysirix.c | 3 | ||||
| -rw-r--r-- | arch/mips/lib-32/memset.S | 2 | ||||
| -rw-r--r-- | arch/mips/lib-64/memset.S | 2 | ||||
| -rw-r--r-- | arch/mips/lib/dec_and_lock.c | 8 | ||||
| -rw-r--r-- | arch/mips/lib/memcpy.S | 2 | ||||
| -rw-r--r-- | arch/mips/lib/strlen_user.S | 2 | ||||
| -rw-r--r-- | arch/mips/lib/strncpy_user.S | 2 | ||||
| -rw-r--r-- | arch/mips/lib/strnlen_user.S | 2 | ||||
| -rw-r--r-- | arch/mips/pci/Makefile | 1 | ||||
| -rw-r--r-- | arch/mips/pci/fixup-tb0287.c | 65 |
25 files changed, 1138 insertions, 76 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 8d76eb1ff291..0eb71ac303af 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig | |||
| @@ -154,6 +154,13 @@ config TANBAC_TB0226 | |||
| 154 | The TANBAC Mbase(TB0226) is a MIPS-based platform manufactured by TANBAC. | 154 | The TANBAC Mbase(TB0226) is a MIPS-based platform manufactured by TANBAC. |
| 155 | Please refer to <http://www.tanbac.co.jp/> about Mbase. | 155 | Please refer to <http://www.tanbac.co.jp/> about Mbase. |
| 156 | 156 | ||
| 157 | config TANBAC_TB0287 | ||
| 158 | bool "Support for TANBAC Mini-ITX DIMM base(TB0287)" | ||
| 159 | depends on TANBAC_TB022X | ||
| 160 | help | ||
| 161 | The TANBAC Mini-ITX DIMM base(TB0287) is a MIPS-based platform manufactured by TANBAC. | ||
| 162 | Please refer to <http://www.tanbac.co.jp/> about Mini-ITX DIMM base. | ||
| 163 | |||
| 157 | config VICTOR_MPC30X | 164 | config VICTOR_MPC30X |
| 158 | bool "Support for Victor MP-C303/304" | 165 | bool "Support for Victor MP-C303/304" |
| 159 | depends on MACH_VR41XX | 166 | depends on MACH_VR41XX |
diff --git a/arch/mips/Makefile b/arch/mips/Makefile index b0fdaee8d8d9..346e803f153b 100644 --- a/arch/mips/Makefile +++ b/arch/mips/Makefile | |||
| @@ -720,38 +720,7 @@ archclean: | |||
| 720 | @$(MAKE) $(clean)=arch/mips/boot | 720 | @$(MAKE) $(clean)=arch/mips/boot |
| 721 | @$(MAKE) $(clean)=arch/mips/lasat | 721 | @$(MAKE) $(clean)=arch/mips/lasat |
| 722 | 722 | ||
| 723 | # Generate <asm/offset.h | 723 | |
| 724 | # | 724 | CLEAN_FILES += vmlinux.32 \ |
| 725 | # The default rule is suffering from funny problems on MIPS so we using our | ||
| 726 | # own ... | ||
| 727 | # | ||
| 728 | # --------------------------------------------------------------------------- | ||
| 729 | |||
| 730 | define filechk_gen-asm-offset.h | ||
| 731 | (set -e; \ | ||
| 732 | echo "#ifndef _ASM_OFFSET_H"; \ | ||
| 733 | echo "#define _ASM_OFFSET_H"; \ | ||
| 734 | echo "/*"; \ | ||
| 735 | echo " * DO NOT MODIFY."; \ | ||
| 736 | echo " *"; \ | ||
| 737 | echo " * This file was generated by arch/$(ARCH)/Makefile"; \ | ||
| 738 | echo " *"; \ | ||
| 739 | echo " */"; \ | ||
| 740 | echo ""; \ | ||
| 741 | sed -ne "/^@@@/s///p"; \ | ||
| 742 | echo "#endif /* _ASM_OFFSET_H */" ) | ||
| 743 | endef | ||
| 744 | |||
| 745 | prepare: include/asm-$(ARCH)/offset.h | ||
| 746 | |||
| 747 | arch/$(ARCH)/kernel/offset.s: include/asm include/linux/version.h \ | ||
| 748 | include/config/MARKER | ||
| 749 | |||
| 750 | include/asm-$(ARCH)/offset.h: arch/$(ARCH)/kernel/offset.s | ||
| 751 | $(call filechk,gen-asm-offset.h) | ||
| 752 | |||
| 753 | CLEAN_FILES += include/asm-$(ARCH)/offset.h.tmp \ | ||
| 754 | include/asm-$(ARCH)/offset.h \ | ||
| 755 | vmlinux.32 \ | ||
| 756 | vmlinux.64 \ | 725 | vmlinux.64 \ |
| 757 | vmlinux.ecoff | 726 | vmlinux.ecoff |
diff --git a/arch/mips/configs/tb0287_defconfig b/arch/mips/configs/tb0287_defconfig new file mode 100644 index 000000000000..17b9f2f65ba0 --- /dev/null +++ b/arch/mips/configs/tb0287_defconfig | |||
| @@ -0,0 +1,1041 @@ | |||
| 1 | # | ||
| 2 | # Automatically generated make config: don't edit | ||
| 3 | # Linux kernel version: 2.6.13-mm1 | ||
| 4 | # Thu Sep 1 22:58:34 2005 | ||
| 5 | # | ||
| 6 | CONFIG_MIPS=y | ||
| 7 | |||
| 8 | # | ||
| 9 | # Code maturity level options | ||
| 10 | # | ||
| 11 | CONFIG_EXPERIMENTAL=y | ||
| 12 | CONFIG_CLEAN_COMPILE=y | ||
| 13 | CONFIG_BROKEN_ON_SMP=y | ||
| 14 | CONFIG_INIT_ENV_ARG_LIMIT=32 | ||
| 15 | |||
| 16 | # | ||
| 17 | # General setup | ||
| 18 | # | ||
| 19 | CONFIG_LOCALVERSION="" | ||
| 20 | CONFIG_LOCALVERSION_AUTO=y | ||
| 21 | CONFIG_SWAP=y | ||
| 22 | CONFIG_SYSVIPC=y | ||
| 23 | # CONFIG_POSIX_MQUEUE is not set | ||
| 24 | # CONFIG_BSD_PROCESS_ACCT is not set | ||
| 25 | CONFIG_SYSCTL=y | ||
| 26 | # CONFIG_AUDIT is not set | ||
| 27 | # CONFIG_HOTPLUG is not set | ||
| 28 | CONFIG_KOBJECT_UEVENT=y | ||
| 29 | # CONFIG_IKCONFIG is not set | ||
| 30 | CONFIG_INITRAMFS_SOURCE="" | ||
| 31 | CONFIG_EMBEDDED=y | ||
| 32 | CONFIG_KALLSYMS=y | ||
| 33 | # CONFIG_KALLSYMS_EXTRA_PASS is not set | ||
| 34 | CONFIG_PRINTK=y | ||
| 35 | CONFIG_BUG=y | ||
| 36 | CONFIG_BASE_FULL=y | ||
| 37 | CONFIG_FUTEX=y | ||
| 38 | CONFIG_EPOLL=y | ||
| 39 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
| 40 | CONFIG_SHMEM=y | ||
| 41 | CONFIG_CC_ALIGN_FUNCTIONS=0 | ||
| 42 | CONFIG_CC_ALIGN_LABELS=0 | ||
| 43 | CONFIG_CC_ALIGN_LOOPS=0 | ||
| 44 | CONFIG_CC_ALIGN_JUMPS=0 | ||
| 45 | # CONFIG_TINY_SHMEM is not set | ||
| 46 | CONFIG_BASE_SMALL=0 | ||
| 47 | |||
| 48 | # | ||
| 49 | # Loadable module support | ||
| 50 | # | ||
| 51 | CONFIG_MODULES=y | ||
| 52 | CONFIG_MODULE_UNLOAD=y | ||
| 53 | # CONFIG_MODULE_FORCE_UNLOAD is not set | ||
| 54 | CONFIG_OBSOLETE_MODPARM=y | ||
| 55 | CONFIG_MODVERSIONS=y | ||
| 56 | CONFIG_MODULE_SRCVERSION_ALL=y | ||
| 57 | CONFIG_KMOD=y | ||
| 58 | CONFIG_SYS_SUPPORTS_32BIT_KERNEL=y | ||
| 59 | CONFIG_SYS_SUPPORTS_64BIT_KERNEL=y | ||
| 60 | CONFIG_CPU_SUPPORTS_32BIT_KERNEL=y | ||
| 61 | CONFIG_CPU_SUPPORTS_64BIT_KERNEL=y | ||
| 62 | |||
| 63 | # | ||
| 64 | # Kernel type | ||
| 65 | # | ||
| 66 | CONFIG_32BIT=y | ||
| 67 | # CONFIG_64BIT is not set | ||
| 68 | |||
| 69 | # | ||
| 70 | # Machine selection | ||
| 71 | # | ||
| 72 | # CONFIG_MACH_JAZZ is not set | ||
| 73 | CONFIG_MACH_VR41XX=y | ||
| 74 | # CONFIG_NEC_CMBVR4133 is not set | ||
| 75 | # CONFIG_CASIO_E55 is not set | ||
| 76 | # CONFIG_IBM_WORKPAD is not set | ||
| 77 | CONFIG_TANBAC_TB022X=y | ||
| 78 | # CONFIG_TANBAC_TB0226 is not set | ||
| 79 | CONFIG_TANBAC_TB0287=y | ||
| 80 | # CONFIG_VICTOR_MPC30X is not set | ||
| 81 | # CONFIG_ZAO_CAPCELLA is not set | ||
| 82 | CONFIG_PCI_VR41XX=y | ||
| 83 | # CONFIG_VRC4173 is not set | ||
| 84 | # CONFIG_TOSHIBA_JMR3927 is not set | ||
| 85 | # CONFIG_MIPS_COBALT is not set | ||
| 86 | # CONFIG_MACH_DECSTATION is not set | ||
| 87 | # CONFIG_MIPS_EV64120 is not set | ||
| 88 | # CONFIG_MIPS_EV96100 is not set | ||
| 89 | # CONFIG_MIPS_IVR is not set | ||
| 90 | # CONFIG_LASAT is not set | ||
| 91 | # CONFIG_MIPS_ITE8172 is not set | ||
| 92 | # CONFIG_MIPS_ATLAS is not set | ||
| 93 | # CONFIG_MIPS_MALTA is not set | ||
| 94 | # CONFIG_MIPS_SEAD is not set | ||
| 95 | # CONFIG_MOMENCO_OCELOT is not set | ||
| 96 | # CONFIG_MOMENCO_OCELOT_G is not set | ||
| 97 | # CONFIG_MOMENCO_OCELOT_C is not set | ||
| 98 | # CONFIG_MOMENCO_OCELOT_3 is not set | ||
| 99 | # CONFIG_MOMENCO_JAGUAR_ATX is not set | ||
| 100 | # CONFIG_PMC_YOSEMITE is not set | ||
| 101 | # CONFIG_DDB5074 is not set | ||
| 102 | # CONFIG_DDB5476 is not set | ||
| 103 | # CONFIG_DDB5477 is not set | ||
| 104 | # CONFIG_QEMU is not set | ||
| 105 | # CONFIG_SGI_IP22 is not set | ||
| 106 | # CONFIG_SGI_IP27 is not set | ||
| 107 | # CONFIG_SGI_IP32 is not set | ||
| 108 | # CONFIG_SOC_AU1X00 is not set | ||
| 109 | # CONFIG_SIBYTE_SB1xxx_SOC is not set | ||
| 110 | # CONFIG_SNI_RM200_PCI is not set | ||
| 111 | # CONFIG_TOSHIBA_RBTX4927 is not set | ||
| 112 | CONFIG_RWSEM_GENERIC_SPINLOCK=y | ||
| 113 | CONFIG_GENERIC_CALIBRATE_DELAY=y | ||
| 114 | CONFIG_HAVE_DEC_LOCK=y | ||
| 115 | CONFIG_DMA_NONCOHERENT=y | ||
| 116 | CONFIG_DMA_NEED_PCI_MAP_STATE=y | ||
| 117 | CONFIG_CPU_LITTLE_ENDIAN=y | ||
| 118 | CONFIG_IRQ_CPU=y | ||
| 119 | CONFIG_MIPS_L1_CACHE_SHIFT=5 | ||
| 120 | |||
| 121 | # | ||
| 122 | # CPU selection | ||
| 123 | # | ||
| 124 | # CONFIG_CPU_MIPS32 is not set | ||
| 125 | # CONFIG_CPU_MIPS64 is not set | ||
| 126 | # CONFIG_CPU_R3000 is not set | ||
| 127 | # CONFIG_CPU_TX39XX is not set | ||
| 128 | CONFIG_CPU_VR41XX=y | ||
| 129 | # CONFIG_CPU_R4300 is not set | ||
| 130 | # CONFIG_CPU_R4X00 is not set | ||
| 131 | # CONFIG_CPU_TX49XX is not set | ||
| 132 | # CONFIG_CPU_R5000 is not set | ||
| 133 | # CONFIG_CPU_R5432 is not set | ||
| 134 | # CONFIG_CPU_R6000 is not set | ||
| 135 | # CONFIG_CPU_NEVADA is not set | ||
| 136 | # CONFIG_CPU_R8000 is not set | ||
| 137 | # CONFIG_CPU_R10000 is not set | ||
| 138 | # CONFIG_CPU_RM7000 is not set | ||
| 139 | # CONFIG_CPU_RM9000 is not set | ||
| 140 | # CONFIG_CPU_SB1 is not set | ||
| 141 | CONFIG_PAGE_SIZE_4KB=y | ||
| 142 | # CONFIG_PAGE_SIZE_8KB is not set | ||
| 143 | # CONFIG_PAGE_SIZE_16KB is not set | ||
| 144 | # CONFIG_PAGE_SIZE_64KB is not set | ||
| 145 | # CONFIG_CPU_ADVANCED is not set | ||
| 146 | CONFIG_CPU_HAS_SYNC=y | ||
| 147 | CONFIG_ARCH_FLATMEM_ENABLE=y | ||
| 148 | CONFIG_SELECT_MEMORY_MODEL=y | ||
| 149 | CONFIG_FLATMEM_MANUAL=y | ||
| 150 | # CONFIG_DISCONTIGMEM_MANUAL is not set | ||
| 151 | # CONFIG_SPARSEMEM_MANUAL is not set | ||
| 152 | CONFIG_FLATMEM=y | ||
| 153 | CONFIG_FLAT_NODE_MEM_MAP=y | ||
| 154 | # CONFIG_SPARSEMEM_STATIC is not set | ||
| 155 | # CONFIG_PREEMPT is not set | ||
| 156 | |||
| 157 | # | ||
| 158 | # Bus options (PCI, PCMCIA, EISA, ISA, TC) | ||
| 159 | # | ||
| 160 | CONFIG_HW_HAS_PCI=y | ||
| 161 | CONFIG_PCI=y | ||
| 162 | # CONFIG_PCI_LEGACY_PROC is not set | ||
| 163 | CONFIG_MMU=y | ||
| 164 | |||
| 165 | # | ||
| 166 | # PCCARD (PCMCIA/CardBus) support | ||
| 167 | # | ||
| 168 | # CONFIG_PCCARD is not set | ||
| 169 | |||
| 170 | # | ||
| 171 | # PCI Hotplug Support | ||
| 172 | # | ||
| 173 | # CONFIG_HOTPLUG_PCI is not set | ||
| 174 | |||
| 175 | # | ||
| 176 | # Executable file formats | ||
| 177 | # | ||
| 178 | CONFIG_BINFMT_ELF=y | ||
| 179 | # CONFIG_BINFMT_MISC is not set | ||
| 180 | CONFIG_TRAD_SIGNALS=y | ||
| 181 | |||
| 182 | # | ||
| 183 | # Networking | ||
| 184 | # | ||
| 185 | CONFIG_NET=y | ||
| 186 | |||
| 187 | # | ||
| 188 | # Networking options | ||
| 189 | # | ||
| 190 | CONFIG_PACKET=y | ||
| 191 | # CONFIG_PACKET_MMAP is not set | ||
| 192 | CONFIG_UNIX=y | ||
| 193 | CONFIG_XFRM=y | ||
| 194 | CONFIG_XFRM_USER=m | ||
| 195 | # CONFIG_NET_KEY is not set | ||
| 196 | CONFIG_INET=y | ||
| 197 | CONFIG_IP_MULTICAST=y | ||
| 198 | CONFIG_IP_ADVANCED_ROUTER=y | ||
| 199 | CONFIG_ASK_IP_FIB_HASH=y | ||
| 200 | # CONFIG_IP_FIB_TRIE is not set | ||
| 201 | CONFIG_IP_FIB_HASH=y | ||
| 202 | CONFIG_IP_MULTIPLE_TABLES=y | ||
| 203 | CONFIG_IP_ROUTE_MULTIPATH=y | ||
| 204 | # CONFIG_IP_ROUTE_MULTIPATH_CACHED is not set | ||
| 205 | CONFIG_IP_ROUTE_VERBOSE=y | ||
| 206 | CONFIG_IP_PNP=y | ||
| 207 | # CONFIG_IP_PNP_DHCP is not set | ||
| 208 | CONFIG_IP_PNP_BOOTP=y | ||
| 209 | # CONFIG_IP_PNP_RARP is not set | ||
| 210 | CONFIG_NET_IPIP=m | ||
| 211 | CONFIG_NET_IPGRE=m | ||
| 212 | # CONFIG_NET_IPGRE_BROADCAST is not set | ||
| 213 | # CONFIG_IP_MROUTE is not set | ||
| 214 | # CONFIG_ARPD is not set | ||
| 215 | CONFIG_SYN_COOKIES=y | ||
| 216 | # CONFIG_INET_AH is not set | ||
| 217 | # CONFIG_INET_ESP is not set | ||
| 218 | # CONFIG_INET_IPCOMP is not set | ||
| 219 | CONFIG_INET_TUNNEL=m | ||
| 220 | CONFIG_INET_DIAG=y | ||
| 221 | CONFIG_INET_TCP_DIAG=y | ||
| 222 | CONFIG_TCP_CONG_ADVANCED=y | ||
| 223 | |||
| 224 | # | ||
| 225 | # TCP congestion control | ||
| 226 | # | ||
| 227 | CONFIG_TCP_CONG_BIC=y | ||
| 228 | CONFIG_TCP_CONG_WESTWOOD=m | ||
| 229 | CONFIG_TCP_CONG_HTCP=m | ||
| 230 | # CONFIG_TCP_CONG_HSTCP is not set | ||
| 231 | # CONFIG_TCP_CONG_HYBLA is not set | ||
| 232 | # CONFIG_TCP_CONG_VEGAS is not set | ||
| 233 | # CONFIG_TCP_CONG_SCALABLE is not set | ||
| 234 | # CONFIG_IPV6 is not set | ||
| 235 | # CONFIG_NETFILTER is not set | ||
| 236 | |||
| 237 | # | ||
| 238 | # DCCP Configuration (EXPERIMENTAL) | ||
| 239 | # | ||
| 240 | # CONFIG_IP_DCCP is not set | ||
| 241 | |||
| 242 | # | ||
| 243 | # SCTP Configuration (EXPERIMENTAL) | ||
| 244 | # | ||
| 245 | # CONFIG_IP_SCTP is not set | ||
| 246 | # CONFIG_ATM is not set | ||
| 247 | # CONFIG_BRIDGE is not set | ||
| 248 | # CONFIG_VLAN_8021Q is not set | ||
| 249 | # CONFIG_DECNET is not set | ||
| 250 | # CONFIG_LLC2 is not set | ||
| 251 | # CONFIG_IPX is not set | ||
| 252 | # CONFIG_ATALK is not set | ||
| 253 | # CONFIG_X25 is not set | ||
| 254 | # CONFIG_LAPB is not set | ||
| 255 | # CONFIG_NET_DIVERT is not set | ||
| 256 | # CONFIG_ECONET is not set | ||
| 257 | # CONFIG_WAN_ROUTER is not set | ||
| 258 | # CONFIG_NET_SCHED is not set | ||
| 259 | # CONFIG_NET_CLS_ROUTE is not set | ||
| 260 | |||
| 261 | # | ||
| 262 | # Network testing | ||
| 263 | # | ||
| 264 | # CONFIG_NET_PKTGEN is not set | ||
| 265 | # CONFIG_NETFILTER_NETLINK is not set | ||
| 266 | # CONFIG_HAMRADIO is not set | ||
| 267 | # CONFIG_IRDA is not set | ||
| 268 | # CONFIG_BT is not set | ||
| 269 | # CONFIG_IEEE80211 is not set | ||
| 270 | |||
| 271 | # | ||
| 272 | # Device Drivers | ||
| 273 | # | ||
| 274 | |||
| 275 | # | ||
| 276 | # Generic Driver Options | ||
| 277 | # | ||
| 278 | CONFIG_STANDALONE=y | ||
| 279 | CONFIG_PREVENT_FIRMWARE_BUILD=y | ||
| 280 | # CONFIG_FW_LOADER is not set | ||
| 281 | |||
| 282 | # | ||
| 283 | # Memory Technology Devices (MTD) | ||
| 284 | # | ||
| 285 | # CONFIG_MTD is not set | ||
| 286 | |||
| 287 | # | ||
| 288 | # Parallel port support | ||
| 289 | # | ||
| 290 | # CONFIG_PARPORT is not set | ||
| 291 | |||
| 292 | # | ||
| 293 | # Plug and Play support | ||
| 294 | # | ||
| 295 | |||
| 296 | # | ||
| 297 | # Block devices | ||
| 298 | # | ||
| 299 | # CONFIG_BLK_DEV_FD is not set | ||
| 300 | # CONFIG_BLK_CPQ_DA is not set | ||
| 301 | # CONFIG_BLK_CPQ_CISS_DA is not set | ||
| 302 | # CONFIG_BLK_DEV_DAC960 is not set | ||
| 303 | # CONFIG_BLK_DEV_UMEM is not set | ||
| 304 | # CONFIG_BLK_DEV_COW_COMMON is not set | ||
| 305 | CONFIG_BLK_DEV_LOOP=m | ||
| 306 | # CONFIG_BLK_DEV_CRYPTOLOOP is not set | ||
| 307 | CONFIG_BLK_DEV_NBD=m | ||
| 308 | # CONFIG_BLK_DEV_SX8 is not set | ||
| 309 | # CONFIG_BLK_DEV_UB is not set | ||
| 310 | CONFIG_BLK_DEV_RAM=y | ||
| 311 | CONFIG_BLK_DEV_RAM_COUNT=16 | ||
| 312 | CONFIG_BLK_DEV_RAM_SIZE=4096 | ||
| 313 | # CONFIG_BLK_DEV_INITRD is not set | ||
| 314 | # CONFIG_LBD is not set | ||
| 315 | # CONFIG_CDROM_PKTCDVD is not set | ||
| 316 | |||
| 317 | # | ||
| 318 | # IO Schedulers | ||
| 319 | # | ||
| 320 | CONFIG_IOSCHED_NOOP=y | ||
| 321 | CONFIG_IOSCHED_AS=y | ||
| 322 | CONFIG_IOSCHED_DEADLINE=y | ||
| 323 | CONFIG_IOSCHED_CFQ=y | ||
| 324 | # CONFIG_ATA_OVER_ETH is not set | ||
| 325 | |||
| 326 | # | ||
| 327 | # ATA/ATAPI/MFM/RLL support | ||
| 328 | # | ||
| 329 | CONFIG_IDE=y | ||
| 330 | CONFIG_BLK_DEV_IDE=y | ||
| 331 | |||
| 332 | # | ||
| 333 | # Please see Documentation/ide.txt for help/info on IDE drives | ||
| 334 | # | ||
| 335 | # CONFIG_BLK_DEV_IDE_SATA is not set | ||
| 336 | CONFIG_BLK_DEV_IDEDISK=y | ||
| 337 | # CONFIG_IDEDISK_MULTI_MODE is not set | ||
| 338 | # CONFIG_BLK_DEV_IDECD is not set | ||
| 339 | # CONFIG_BLK_DEV_IDETAPE is not set | ||
| 340 | # CONFIG_BLK_DEV_IDEFLOPPY is not set | ||
| 341 | # CONFIG_BLK_DEV_IDESCSI is not set | ||
| 342 | # CONFIG_IDE_TASK_IOCTL is not set | ||
| 343 | |||
| 344 | # | ||
| 345 | # IDE chipset support/bugfixes | ||
| 346 | # | ||
| 347 | CONFIG_IDE_GENERIC=y | ||
| 348 | CONFIG_BLK_DEV_IDEPCI=y | ||
| 349 | # CONFIG_IDEPCI_SHARE_IRQ is not set | ||
| 350 | # CONFIG_BLK_DEV_OFFBOARD is not set | ||
| 351 | # CONFIG_BLK_DEV_GENERIC is not set | ||
| 352 | # CONFIG_BLK_DEV_OPTI621 is not set | ||
| 353 | CONFIG_BLK_DEV_IDEDMA_PCI=y | ||
| 354 | # CONFIG_BLK_DEV_IDEDMA_FORCED is not set | ||
| 355 | # CONFIG_IDEDMA_PCI_AUTO is not set | ||
| 356 | # CONFIG_BLK_DEV_AEC62XX is not set | ||
| 357 | # CONFIG_BLK_DEV_ALI15X3 is not set | ||
| 358 | # CONFIG_BLK_DEV_AMD74XX is not set | ||
| 359 | # CONFIG_BLK_DEV_CMD64X is not set | ||
| 360 | # CONFIG_BLK_DEV_TRIFLEX is not set | ||
| 361 | # CONFIG_BLK_DEV_CY82C693 is not set | ||
| 362 | # CONFIG_BLK_DEV_CS5520 is not set | ||
| 363 | # CONFIG_BLK_DEV_CS5530 is not set | ||
| 364 | # CONFIG_BLK_DEV_HPT34X is not set | ||
| 365 | # CONFIG_BLK_DEV_HPT366 is not set | ||
| 366 | # CONFIG_BLK_DEV_SC1200 is not set | ||
| 367 | # CONFIG_BLK_DEV_PIIX is not set | ||
| 368 | # CONFIG_BLK_DEV_IT821X is not set | ||
| 369 | # CONFIG_BLK_DEV_NS87415 is not set | ||
| 370 | # CONFIG_BLK_DEV_PDC202XX_OLD is not set | ||
| 371 | # CONFIG_BLK_DEV_PDC202XX_NEW is not set | ||
| 372 | # CONFIG_BLK_DEV_SVWKS is not set | ||
| 373 | CONFIG_BLK_DEV_SIIMAGE=y | ||
| 374 | # CONFIG_BLK_DEV_SLC90E66 is not set | ||
| 375 | # CONFIG_BLK_DEV_TRM290 is not set | ||
| 376 | # CONFIG_BLK_DEV_VIA82CXXX is not set | ||
| 377 | # CONFIG_IDE_ARM is not set | ||
| 378 | CONFIG_BLK_DEV_IDEDMA=y | ||
| 379 | # CONFIG_IDEDMA_IVB is not set | ||
| 380 | # CONFIG_IDEDMA_AUTO is not set | ||
| 381 | # CONFIG_BLK_DEV_HD is not set | ||
| 382 | |||
| 383 | # | ||
| 384 | # SCSI device support | ||
| 385 | # | ||
| 386 | # CONFIG_RAID_ATTRS is not set | ||
| 387 | CONFIG_SCSI=y | ||
| 388 | CONFIG_SCSI_PROC_FS=y | ||
| 389 | |||
| 390 | # | ||
| 391 | # SCSI support type (disk, tape, CD-ROM) | ||
| 392 | # | ||
| 393 | CONFIG_BLK_DEV_SD=y | ||
| 394 | # CONFIG_CHR_DEV_ST is not set | ||
| 395 | # CONFIG_CHR_DEV_OSST is not set | ||
| 396 | # CONFIG_BLK_DEV_SR is not set | ||
| 397 | # CONFIG_CHR_DEV_SG is not set | ||
| 398 | # CONFIG_CHR_DEV_SCH is not set | ||
| 399 | |||
| 400 | # | ||
| 401 | # Some SCSI devices (e.g. CD jukebox) support multiple LUNs | ||
| 402 | # | ||
| 403 | # CONFIG_SCSI_MULTI_LUN is not set | ||
| 404 | # CONFIG_SCSI_CONSTANTS is not set | ||
| 405 | # CONFIG_SCSI_LOGGING is not set | ||
| 406 | |||
| 407 | # | ||
| 408 | # SCSI Transport Attributes | ||
| 409 | # | ||
| 410 | # CONFIG_SCSI_SPI_ATTRS is not set | ||
| 411 | # CONFIG_SCSI_FC_ATTRS is not set | ||
| 412 | # CONFIG_SCSI_ISCSI_ATTRS is not set | ||
| 413 | |||
| 414 | # | ||
| 415 | # SCSI low-level drivers | ||
| 416 | # | ||
| 417 | # CONFIG_BLK_DEV_3W_XXXX_RAID is not set | ||
| 418 | # CONFIG_SCSI_3W_9XXX is not set | ||
| 419 | # CONFIG_SCSI_ARCMSR is not set | ||
| 420 | # CONFIG_SCSI_ACARD is not set | ||
| 421 | # CONFIG_SCSI_AACRAID is not set | ||
| 422 | # CONFIG_SCSI_AIC7XXX is not set | ||
| 423 | # CONFIG_SCSI_AIC7XXX_OLD is not set | ||
| 424 | # CONFIG_SCSI_AIC79XX is not set | ||
| 425 | # CONFIG_SCSI_DPT_I2O is not set | ||
| 426 | # CONFIG_MEGARAID_NEWGEN is not set | ||
| 427 | # CONFIG_MEGARAID_LEGACY is not set | ||
| 428 | # CONFIG_SCSI_SATA is not set | ||
| 429 | # CONFIG_SCSI_BUSLOGIC is not set | ||
| 430 | # CONFIG_SCSI_DMX3191D is not set | ||
| 431 | # CONFIG_SCSI_EATA is not set | ||
| 432 | # CONFIG_SCSI_FUTURE_DOMAIN is not set | ||
| 433 | # CONFIG_SCSI_GDTH is not set | ||
| 434 | # CONFIG_SCSI_IPS is not set | ||
| 435 | # CONFIG_SCSI_INITIO is not set | ||
| 436 | # CONFIG_SCSI_INIA100 is not set | ||
| 437 | # CONFIG_SCSI_SYM53C8XX_2 is not set | ||
| 438 | # CONFIG_SCSI_IPR is not set | ||
| 439 | # CONFIG_SCSI_QLOGIC_FC is not set | ||
| 440 | # CONFIG_SCSI_QLOGIC_1280 is not set | ||
| 441 | CONFIG_SCSI_QLA2XXX=y | ||
| 442 | # CONFIG_SCSI_QLA21XX is not set | ||
| 443 | # CONFIG_SCSI_QLA22XX is not set | ||
| 444 | # CONFIG_SCSI_QLA2300 is not set | ||
| 445 | # CONFIG_SCSI_QLA2322 is not set | ||
| 446 | # CONFIG_SCSI_QLA6312 is not set | ||
| 447 | # CONFIG_SCSI_QLA24XX is not set | ||
| 448 | # CONFIG_SCSI_LPFC is not set | ||
| 449 | # CONFIG_SCSI_DC395x is not set | ||
| 450 | # CONFIG_SCSI_DC390T is not set | ||
| 451 | # CONFIG_SCSI_NSP32 is not set | ||
| 452 | # CONFIG_SCSI_DEBUG is not set | ||
| 453 | |||
| 454 | # | ||
| 455 | # Multi-device support (RAID and LVM) | ||
| 456 | # | ||
| 457 | # CONFIG_MD is not set | ||
| 458 | |||
| 459 | # | ||
| 460 | # Fusion MPT device support | ||
| 461 | # | ||
| 462 | # CONFIG_FUSION is not set | ||
| 463 | # CONFIG_FUSION_SPI is not set | ||
| 464 | # CONFIG_FUSION_FC is not set | ||
| 465 | |||
| 466 | # | ||
| 467 | # IEEE 1394 (FireWire) support | ||
| 468 | # | ||
| 469 | CONFIG_IEEE1394=m | ||
| 470 | |||
| 471 | # | ||
| 472 | # Subsystem Options | ||
| 473 | # | ||
| 474 | # CONFIG_IEEE1394_VERBOSEDEBUG is not set | ||
| 475 | # CONFIG_IEEE1394_OUI_DB is not set | ||
| 476 | CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y | ||
| 477 | CONFIG_IEEE1394_CONFIG_ROM_IP1394=y | ||
| 478 | # CONFIG_IEEE1394_EXPORT_FULL_API is not set | ||
| 479 | |||
| 480 | # | ||
| 481 | # Device Drivers | ||
| 482 | # | ||
| 483 | |||
| 484 | # | ||
| 485 | # Texas Instruments PCILynx requires I2C | ||
| 486 | # | ||
| 487 | CONFIG_IEEE1394_OHCI1394=m | ||
| 488 | |||
| 489 | # | ||
| 490 | # Protocol Drivers | ||
| 491 | # | ||
| 492 | CONFIG_IEEE1394_VIDEO1394=m | ||
| 493 | CONFIG_IEEE1394_SBP2=m | ||
| 494 | # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set | ||
| 495 | CONFIG_IEEE1394_ETH1394=m | ||
| 496 | CONFIG_IEEE1394_DV1394=m | ||
| 497 | CONFIG_IEEE1394_RAWIO=m | ||
| 498 | CONFIG_IEEE1394_CMP=m | ||
| 499 | CONFIG_IEEE1394_AMDTP=m | ||
| 500 | |||
| 501 | # | ||
| 502 | # I2O device support | ||
| 503 | # | ||
| 504 | # CONFIG_I2O is not set | ||
| 505 | |||
| 506 | # | ||
| 507 | # Network device support | ||
| 508 | # | ||
| 509 | CONFIG_NETDEVICES=y | ||
| 510 | CONFIG_DUMMY=m | ||
| 511 | # CONFIG_BONDING is not set | ||
| 512 | # CONFIG_EQUALIZER is not set | ||
| 513 | # CONFIG_TUN is not set | ||
| 514 | |||
| 515 | # | ||
| 516 | # ARCnet devices | ||
| 517 | # | ||
| 518 | # CONFIG_ARCNET is not set | ||
| 519 | |||
| 520 | # | ||
| 521 | # PHY device support | ||
| 522 | # | ||
| 523 | # CONFIG_PHYLIB is not set | ||
| 524 | |||
| 525 | # | ||
| 526 | # Ethernet (10 or 100Mbit) | ||
| 527 | # | ||
| 528 | CONFIG_NET_ETHERNET=y | ||
| 529 | CONFIG_MII=y | ||
| 530 | # CONFIG_HAPPYMEAL is not set | ||
| 531 | # CONFIG_SUNGEM is not set | ||
| 532 | # CONFIG_NET_VENDOR_3COM is not set | ||
| 533 | |||
| 534 | # | ||
| 535 | # Tulip family network device support | ||
| 536 | # | ||
| 537 | # CONFIG_NET_TULIP is not set | ||
| 538 | # CONFIG_HP100 is not set | ||
| 539 | # CONFIG_NET_PCI is not set | ||
| 540 | |||
| 541 | # | ||
| 542 | # Ethernet (1000 Mbit) | ||
| 543 | # | ||
| 544 | # CONFIG_ACENIC is not set | ||
| 545 | # CONFIG_DL2K is not set | ||
| 546 | # CONFIG_E1000 is not set | ||
| 547 | # CONFIG_NS83820 is not set | ||
| 548 | # CONFIG_HAMACHI is not set | ||
| 549 | # CONFIG_YELLOWFIN is not set | ||
| 550 | CONFIG_R8169=y | ||
| 551 | # CONFIG_R8169_NAPI is not set | ||
| 552 | # CONFIG_SIS190 is not set | ||
| 553 | # CONFIG_SKGE is not set | ||
| 554 | # CONFIG_SKY2 is not set | ||
| 555 | # CONFIG_SK98LIN is not set | ||
| 556 | # CONFIG_TIGON3 is not set | ||
| 557 | # CONFIG_BNX2 is not set | ||
| 558 | |||
| 559 | # | ||
| 560 | # Ethernet (10000 Mbit) | ||
| 561 | # | ||
| 562 | # CONFIG_CHELSIO_T1 is not set | ||
| 563 | # CONFIG_IXGB is not set | ||
| 564 | # CONFIG_S2IO is not set | ||
| 565 | |||
| 566 | # | ||
| 567 | # Token Ring devices | ||
| 568 | # | ||
| 569 | # CONFIG_TR is not set | ||
| 570 | |||
| 571 | # | ||
| 572 | # Wireless LAN (non-hamradio) | ||
| 573 | # | ||
| 574 | # CONFIG_NET_RADIO is not set | ||
| 575 | |||
| 576 | # | ||
| 577 | # Wan interfaces | ||
| 578 | # | ||
| 579 | # CONFIG_WAN is not set | ||
| 580 | # CONFIG_FDDI is not set | ||
| 581 | # CONFIG_HIPPI is not set | ||
| 582 | # CONFIG_PPP is not set | ||
| 583 | # CONFIG_SLIP is not set | ||
| 584 | # CONFIG_NET_FC is not set | ||
| 585 | # CONFIG_SHAPER is not set | ||
| 586 | # CONFIG_NETCONSOLE is not set | ||
| 587 | # CONFIG_KGDBOE is not set | ||
| 588 | # CONFIG_NETPOLL is not set | ||
| 589 | # CONFIG_NETPOLL_RX is not set | ||
| 590 | # CONFIG_NETPOLL_TRAP is not set | ||
| 591 | # CONFIG_NET_POLL_CONTROLLER is not set | ||
| 592 | |||
| 593 | # | ||
| 594 | # ISDN subsystem | ||
| 595 | # | ||
| 596 | # CONFIG_ISDN is not set | ||
| 597 | |||
| 598 | # | ||
| 599 | # Telephony Support | ||
| 600 | # | ||
| 601 | # CONFIG_PHONE is not set | ||
| 602 | |||
| 603 | # | ||
| 604 | # Input device support | ||
| 605 | # | ||
| 606 | CONFIG_INPUT=y | ||
| 607 | |||
| 608 | # | ||
| 609 | # Userland interfaces | ||
| 610 | # | ||
| 611 | # CONFIG_INPUT_MOUSEDEV is not set | ||
| 612 | # CONFIG_INPUT_JOYDEV is not set | ||
| 613 | # CONFIG_INPUT_TSDEV is not set | ||
| 614 | # CONFIG_INPUT_EVDEV is not set | ||
| 615 | # CONFIG_INPUT_EVBUG is not set | ||
| 616 | |||
| 617 | # | ||
| 618 | # Input Device Drivers | ||
| 619 | # | ||
| 620 | # CONFIG_INPUT_KEYBOARD is not set | ||
| 621 | # CONFIG_INPUT_MOUSE is not set | ||
| 622 | # CONFIG_INPUT_JOYSTICK is not set | ||
| 623 | # CONFIG_INPUT_TOUCHSCREEN is not set | ||
| 624 | # CONFIG_INPUT_MISC is not set | ||
| 625 | |||
| 626 | # | ||
| 627 | # Hardware I/O ports | ||
| 628 | # | ||
| 629 | # CONFIG_SERIO is not set | ||
| 630 | # CONFIG_GAMEPORT is not set | ||
| 631 | |||
| 632 | # | ||
| 633 | # Character devices | ||
| 634 | # | ||
| 635 | CONFIG_VT=y | ||
| 636 | CONFIG_VT_CONSOLE=y | ||
| 637 | CONFIG_HW_CONSOLE=y | ||
| 638 | # CONFIG_SERIAL_NONSTANDARD is not set | ||
| 639 | |||
| 640 | # | ||
| 641 | # Serial drivers | ||
| 642 | # | ||
| 643 | # CONFIG_SERIAL_8250 is not set | ||
| 644 | |||
| 645 | # | ||
| 646 | # Non-8250 serial port support | ||
| 647 | # | ||
| 648 | CONFIG_SERIAL_CORE=y | ||
| 649 | CONFIG_SERIAL_CORE_CONSOLE=y | ||
| 650 | CONFIG_SERIAL_VR41XX=y | ||
| 651 | CONFIG_SERIAL_VR41XX_CONSOLE=y | ||
| 652 | # CONFIG_SERIAL_JSM is not set | ||
| 653 | CONFIG_UNIX98_PTYS=y | ||
| 654 | CONFIG_LEGACY_PTYS=y | ||
| 655 | CONFIG_LEGACY_PTY_COUNT=256 | ||
| 656 | |||
| 657 | # | ||
| 658 | # IPMI | ||
| 659 | # | ||
| 660 | # CONFIG_IPMI_HANDLER is not set | ||
| 661 | |||
| 662 | # | ||
| 663 | # Watchdog Cards | ||
| 664 | # | ||
| 665 | # CONFIG_WATCHDOG is not set | ||
| 666 | # CONFIG_RTC is not set | ||
| 667 | # CONFIG_GEN_RTC is not set | ||
| 668 | # CONFIG_RTC_VR41XX is not set | ||
| 669 | # CONFIG_DTLK is not set | ||
| 670 | # CONFIG_R3964 is not set | ||
| 671 | # CONFIG_APPLICOM is not set | ||
| 672 | # CONFIG_TANBAC_TB0219 is not set | ||
| 673 | |||
| 674 | # | ||
| 675 | # Ftape, the floppy tape device driver | ||
| 676 | # | ||
| 677 | # CONFIG_DRM is not set | ||
| 678 | CONFIG_GPIO_VR41XX=y | ||
| 679 | # CONFIG_RAW_DRIVER is not set | ||
| 680 | |||
| 681 | # | ||
| 682 | # TPM devices | ||
| 683 | # | ||
| 684 | # CONFIG_TCG_TPM is not set | ||
| 685 | |||
| 686 | # | ||
| 687 | # I2C support | ||
| 688 | # | ||
| 689 | # CONFIG_I2C is not set | ||
| 690 | |||
| 691 | # | ||
| 692 | # Dallas's 1-wire bus | ||
| 693 | # | ||
| 694 | # CONFIG_W1 is not set | ||
| 695 | |||
| 696 | # | ||
| 697 | # Hardware Monitoring support | ||
| 698 | # | ||
| 699 | # CONFIG_HWMON is not set | ||
| 700 | # CONFIG_HWMON_VID is not set | ||
| 701 | |||
| 702 | # | ||
| 703 | # Misc devices | ||
| 704 | # | ||
| 705 | |||
| 706 | # | ||
| 707 | # Multimedia Capabilities Port drivers | ||
| 708 | # | ||
| 709 | |||
| 710 | # | ||
| 711 | # Multimedia devices | ||
| 712 | # | ||
| 713 | # CONFIG_VIDEO_DEV is not set | ||
| 714 | |||
| 715 | # | ||
| 716 | # Digital Video Broadcasting Devices | ||
| 717 | # | ||
| 718 | # CONFIG_DVB is not set | ||
| 719 | |||
| 720 | # | ||
| 721 | # Graphics support | ||
| 722 | # | ||
| 723 | # CONFIG_FB is not set | ||
| 724 | |||
| 725 | # | ||
| 726 | # Console display driver support | ||
| 727 | # | ||
| 728 | # CONFIG_VGA_CONSOLE is not set | ||
| 729 | CONFIG_DUMMY_CONSOLE=y | ||
| 730 | |||
| 731 | # | ||
| 732 | # Speakup console speech | ||
| 733 | # | ||
| 734 | # CONFIG_SPEAKUP is not set | ||
| 735 | |||
| 736 | # | ||
| 737 | # Sound | ||
| 738 | # | ||
| 739 | # CONFIG_SOUND is not set | ||
| 740 | |||
| 741 | # | ||
| 742 | # USB support | ||
| 743 | # | ||
| 744 | CONFIG_USB_ARCH_HAS_HCD=y | ||
| 745 | CONFIG_USB_ARCH_HAS_OHCI=y | ||
| 746 | CONFIG_USB=m | ||
| 747 | # CONFIG_USB_DEBUG is not set | ||
| 748 | |||
| 749 | # | ||
| 750 | # Miscellaneous USB options | ||
| 751 | # | ||
| 752 | # CONFIG_USB_DEVICEFS is not set | ||
| 753 | # CONFIG_USB_BANDWIDTH is not set | ||
| 754 | # CONFIG_USB_DYNAMIC_MINORS is not set | ||
| 755 | # CONFIG_USB_OTG is not set | ||
| 756 | |||
| 757 | # | ||
| 758 | # USB Host Controller Drivers | ||
| 759 | # | ||
| 760 | CONFIG_USB_EHCI_HCD=m | ||
| 761 | # CONFIG_USB_EHCI_SPLIT_ISO is not set | ||
| 762 | # CONFIG_USB_EHCI_ROOT_HUB_TT is not set | ||
| 763 | # CONFIG_USB_ISP116X_HCD is not set | ||
| 764 | CONFIG_USB_OHCI_HCD=m | ||
| 765 | # CONFIG_USB_OHCI_BIG_ENDIAN is not set | ||
| 766 | CONFIG_USB_OHCI_LITTLE_ENDIAN=y | ||
| 767 | # CONFIG_USB_UHCI_HCD is not set | ||
| 768 | # CONFIG_USB_SL811_HCD is not set | ||
| 769 | |||
| 770 | # | ||
| 771 | # USB Device Class drivers | ||
| 772 | # | ||
| 773 | # CONFIG_USB_BLUETOOTH_TTY is not set | ||
| 774 | # CONFIG_USB_ACM is not set | ||
| 775 | # CONFIG_USB_PRINTER is not set | ||
| 776 | |||
| 777 | # | ||
| 778 | # NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' may also be needed; see USB_STORAGE Help for more information | ||
| 779 | # | ||
| 780 | CONFIG_USB_STORAGE=m | ||
| 781 | # CONFIG_USB_STORAGE_DEBUG is not set | ||
| 782 | # CONFIG_USB_STORAGE_DATAFAB is not set | ||
| 783 | # CONFIG_USB_STORAGE_FREECOM is not set | ||
| 784 | # CONFIG_USB_STORAGE_ISD200 is not set | ||
| 785 | # CONFIG_USB_STORAGE_DPCM is not set | ||
| 786 | # CONFIG_USB_STORAGE_USBAT is not set | ||
| 787 | # CONFIG_USB_STORAGE_SDDR09 is not set | ||
| 788 | # CONFIG_USB_STORAGE_SDDR55 is not set | ||
| 789 | # CONFIG_USB_STORAGE_JUMPSHOT is not set | ||
| 790 | |||
| 791 | # | ||
| 792 | # USB Input Devices | ||
| 793 | # | ||
| 794 | CONFIG_USB_HID=m | ||
| 795 | CONFIG_USB_HIDINPUT=y | ||
| 796 | # CONFIG_HID_FF is not set | ||
| 797 | # CONFIG_USB_HIDDEV is not set | ||
| 798 | |||
| 799 | # | ||
| 800 | # USB HID Boot Protocol drivers | ||
| 801 | # | ||
| 802 | # CONFIG_USB_KBD is not set | ||
| 803 | # CONFIG_USB_MOUSE is not set | ||
| 804 | # CONFIG_USB_AIPTEK is not set | ||
| 805 | # CONFIG_USB_WACOM is not set | ||
| 806 | # CONFIG_USB_ACECAD is not set | ||
| 807 | # CONFIG_USB_KBTAB is not set | ||
| 808 | # CONFIG_USB_POWERMATE is not set | ||
| 809 | # CONFIG_USB_MTOUCH is not set | ||
| 810 | # CONFIG_USB_ITMTOUCH is not set | ||
| 811 | # CONFIG_USB_EGALAX is not set | ||
| 812 | # CONFIG_USB_YEALINK is not set | ||
| 813 | # CONFIG_USB_XPAD is not set | ||
| 814 | # CONFIG_USB_ATI_REMOTE is not set | ||
| 815 | # CONFIG_USB_KEYSPAN_REMOTE is not set | ||
| 816 | # CONFIG_USB_APPLETOUCH is not set | ||
| 817 | |||
| 818 | # | ||
| 819 | # USB Imaging devices | ||
| 820 | # | ||
| 821 | # CONFIG_USB_MDC800 is not set | ||
| 822 | # CONFIG_USB_MICROTEK is not set | ||
| 823 | |||
| 824 | # | ||
| 825 | # USB Multimedia devices | ||
| 826 | # | ||
| 827 | # CONFIG_USB_DABUSB is not set | ||
| 828 | |||
| 829 | # | ||
| 830 | # Video4Linux support is needed for USB Multimedia device support | ||
| 831 | # | ||
| 832 | |||
| 833 | # | ||
| 834 | # USB Network Adapters | ||
| 835 | # | ||
| 836 | # CONFIG_USB_CATC is not set | ||
| 837 | # CONFIG_USB_KAWETH is not set | ||
| 838 | # CONFIG_USB_PEGASUS is not set | ||
| 839 | # CONFIG_USB_RTL8150 is not set | ||
| 840 | # CONFIG_USB_USBNET is not set | ||
| 841 | CONFIG_USB_MON=y | ||
| 842 | |||
| 843 | # | ||
| 844 | # USB port drivers | ||
| 845 | # | ||
| 846 | |||
| 847 | # | ||
| 848 | # USB Serial Converter support | ||
| 849 | # | ||
| 850 | # CONFIG_USB_SERIAL is not set | ||
| 851 | |||
| 852 | # | ||
| 853 | # USB Miscellaneous drivers | ||
| 854 | # | ||
| 855 | # CONFIG_USB_EMI62 is not set | ||
| 856 | # CONFIG_USB_EMI26 is not set | ||
| 857 | # CONFIG_USB_AUERSWALD is not set | ||
| 858 | # CONFIG_USB_RIO500 is not set | ||
| 859 | # CONFIG_USB_LEGOTOWER is not set | ||
| 860 | # CONFIG_USB_LCD is not set | ||
| 861 | # CONFIG_USB_LED is not set | ||
| 862 | # CONFIG_USB_CYTHERM is not set | ||
| 863 | # CONFIG_USB_GOTEMP is not set | ||
| 864 | # CONFIG_USB_PHIDGETKIT is not set | ||
| 865 | # CONFIG_USB_PHIDGETSERVO is not set | ||
| 866 | # CONFIG_USB_IDMOUSE is not set | ||
| 867 | # CONFIG_USB_SISUSBVGA is not set | ||
| 868 | # CONFIG_USB_LD is not set | ||
| 869 | |||
| 870 | # | ||
| 871 | # USB DSL modem support | ||
| 872 | # | ||
| 873 | |||
| 874 | # | ||
| 875 | # USB Gadget Support | ||
| 876 | # | ||
| 877 | # CONFIG_USB_GADGET is not set | ||
| 878 | |||
| 879 | # | ||
| 880 | # MMC/SD Card support | ||
| 881 | # | ||
| 882 | # CONFIG_MMC is not set | ||
| 883 | |||
| 884 | # | ||
| 885 | # InfiniBand support | ||
| 886 | # | ||
| 887 | # CONFIG_INFINIBAND is not set | ||
| 888 | |||
| 889 | # | ||
| 890 | # SN Devices | ||
| 891 | # | ||
| 892 | |||
| 893 | # | ||
| 894 | # Distributed Lock Manager | ||
| 895 | # | ||
| 896 | # CONFIG_DLM is not set | ||
| 897 | |||
| 898 | # | ||
| 899 | # File systems | ||
| 900 | # | ||
| 901 | CONFIG_EXT2_FS=y | ||
| 902 | # CONFIG_EXT2_FS_XATTR is not set | ||
| 903 | # CONFIG_EXT2_FS_XIP is not set | ||
| 904 | # CONFIG_EXT3_FS is not set | ||
| 905 | # CONFIG_REISER4_FS is not set | ||
| 906 | # CONFIG_REISERFS_FS is not set | ||
| 907 | # CONFIG_JFS_FS is not set | ||
| 908 | # CONFIG_FS_POSIX_ACL is not set | ||
| 909 | |||
| 910 | # | ||
| 911 | # XFS support | ||
| 912 | # | ||
| 913 | CONFIG_XFS_FS=y | ||
| 914 | # CONFIG_XFS_RT is not set | ||
| 915 | CONFIG_XFS_QUOTA=y | ||
| 916 | # CONFIG_XFS_SECURITY is not set | ||
| 917 | CONFIG_XFS_POSIX_ACL=y | ||
| 918 | # CONFIG_OCFS2_FS is not set | ||
| 919 | # CONFIG_MINIX_FS is not set | ||
| 920 | CONFIG_ROMFS_FS=m | ||
| 921 | CONFIG_INOTIFY=y | ||
| 922 | # CONFIG_QUOTA is not set | ||
| 923 | CONFIG_QUOTACTL=y | ||
| 924 | # CONFIG_DNOTIFY is not set | ||
| 925 | # CONFIG_AUTOFS_FS is not set | ||
| 926 | CONFIG_AUTOFS4_FS=y | ||
| 927 | # CONFIG_FUSE_FS is not set | ||
| 928 | |||
| 929 | # | ||
| 930 | # CD-ROM/DVD Filesystems | ||
| 931 | # | ||
| 932 | # CONFIG_ISO9660_FS is not set | ||
| 933 | # CONFIG_UDF_FS is not set | ||
| 934 | |||
| 935 | # | ||
| 936 | # DOS/FAT/NT Filesystems | ||
| 937 | # | ||
| 938 | # CONFIG_MSDOS_FS is not set | ||
| 939 | # CONFIG_VFAT_FS is not set | ||
| 940 | # CONFIG_NTFS_FS is not set | ||
| 941 | |||
| 942 | # | ||
| 943 | # Pseudo filesystems | ||
| 944 | # | ||
| 945 | CONFIG_PROC_FS=y | ||
| 946 | CONFIG_PROC_KCORE=y | ||
| 947 | CONFIG_SYSFS=y | ||
| 948 | CONFIG_TMPFS=y | ||
| 949 | # CONFIG_HUGETLB_PAGE is not set | ||
| 950 | CONFIG_RAMFS=y | ||
| 951 | # CONFIG_CONFIGFS_FS is not set | ||
| 952 | # CONFIG_RELAYFS_FS is not set | ||
| 953 | |||
| 954 | # | ||
| 955 | # Miscellaneous filesystems | ||
| 956 | # | ||
| 957 | # CONFIG_ADFS_FS is not set | ||
| 958 | # CONFIG_AFFS_FS is not set | ||
| 959 | # CONFIG_ASFS_FS is not set | ||
| 960 | # CONFIG_HFS_FS is not set | ||
| 961 | # CONFIG_HFSPLUS_FS is not set | ||
| 962 | # CONFIG_BEFS_FS is not set | ||
| 963 | # CONFIG_BFS_FS is not set | ||
| 964 | # CONFIG_EFS_FS is not set | ||
| 965 | CONFIG_CRAMFS=m | ||
| 966 | # CONFIG_VXFS_FS is not set | ||
| 967 | # CONFIG_HPFS_FS is not set | ||
| 968 | # CONFIG_QNX4FS_FS is not set | ||
| 969 | # CONFIG_SYSV_FS is not set | ||
| 970 | # CONFIG_UFS_FS is not set | ||
| 971 | |||
| 972 | # | ||
| 973 | # Network File Systems | ||
| 974 | # | ||
| 975 | CONFIG_NFS_FS=y | ||
| 976 | CONFIG_NFS_V3=y | ||
| 977 | # CONFIG_NFS_V3_ACL is not set | ||
| 978 | # CONFIG_NFS_V4 is not set | ||
| 979 | # CONFIG_NFS_DIRECTIO is not set | ||
| 980 | # CONFIG_NFSD is not set | ||
| 981 | CONFIG_ROOT_NFS=y | ||
| 982 | CONFIG_LOCKD=y | ||
| 983 | CONFIG_LOCKD_V4=y | ||
| 984 | CONFIG_NFS_COMMON=y | ||
| 985 | CONFIG_SUNRPC=y | ||
| 986 | # CONFIG_RPCSEC_GSS_KRB5 is not set | ||
| 987 | # CONFIG_RPCSEC_GSS_SPKM3 is not set | ||
| 988 | # CONFIG_SMB_FS is not set | ||
| 989 | # CONFIG_CIFS is not set | ||
| 990 | # CONFIG_NCP_FS is not set | ||
| 991 | # CONFIG_CODA_FS is not set | ||
| 992 | # CONFIG_AFS_FS is not set | ||
| 993 | # CONFIG_9P_FS is not set | ||
| 994 | |||
| 995 | # | ||
| 996 | # Partition Types | ||
| 997 | # | ||
| 998 | # CONFIG_PARTITION_ADVANCED is not set | ||
| 999 | CONFIG_MSDOS_PARTITION=y | ||
| 1000 | |||
| 1001 | # | ||
| 1002 | # Native Language Support | ||
| 1003 | # | ||
| 1004 | # CONFIG_NLS is not set | ||
| 1005 | |||
| 1006 | # | ||
| 1007 | # Kernel hacking | ||
| 1008 | # | ||
| 1009 | # CONFIG_PRINTK_TIME is not set | ||
| 1010 | # CONFIG_DEBUG_KERNEL is not set | ||
| 1011 | CONFIG_LOG_BUF_SHIFT=14 | ||
| 1012 | CONFIG_CROSSCOMPILE=y | ||
| 1013 | CONFIG_CMDLINE="mem=64M console=ttyVR0,115200 ip=any root=/dev/nfs" | ||
| 1014 | |||
| 1015 | # | ||
| 1016 | # Security options | ||
| 1017 | # | ||
| 1018 | CONFIG_KEYS=y | ||
| 1019 | CONFIG_KEYS_DEBUG_PROC_KEYS=y | ||
| 1020 | # CONFIG_SECURITY is not set | ||
| 1021 | |||
| 1022 | # | ||
| 1023 | # Cryptographic options | ||
| 1024 | # | ||
| 1025 | # CONFIG_CRYPTO is not set | ||
| 1026 | |||
| 1027 | # | ||
| 1028 | # Hardware crypto devices | ||
| 1029 | # | ||
| 1030 | |||
| 1031 | # | ||
| 1032 | # Library routines | ||
| 1033 | # | ||
| 1034 | # CONFIG_CRC_CCITT is not set | ||
| 1035 | # CONFIG_CRC16 is not set | ||
| 1036 | CONFIG_CRC32=y | ||
| 1037 | # CONFIG_LIBCRC32C is not set | ||
| 1038 | CONFIG_ZLIB_INFLATE=m | ||
| 1039 | CONFIG_GENERIC_HARDIRQS=y | ||
| 1040 | CONFIG_GENERIC_IRQ_PROBE=y | ||
| 1041 | CONFIG_ISA_DMA_API=y | ||
diff --git a/arch/mips/kernel/genrtc.c b/arch/mips/kernel/genrtc.c index 288bf51ad4ec..71416e7bbbaa 100644 --- a/arch/mips/kernel/genrtc.c +++ b/arch/mips/kernel/genrtc.c | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | #include <asm/rtc.h> | 14 | #include <asm/rtc.h> |
| 15 | #include <asm/time.h> | 15 | #include <asm/time.h> |
| 16 | 16 | ||
| 17 | static spinlock_t mips_rtc_lock = SPIN_LOCK_UNLOCKED; | 17 | static DEFINE_SPINLOCK(mips_rtc_lock); |
| 18 | 18 | ||
| 19 | unsigned int get_rtc_time(struct rtc_time *time) | 19 | unsigned int get_rtc_time(struct rtc_time *time) |
| 20 | { | 20 | { |
diff --git a/arch/mips/kernel/i8259.c b/arch/mips/kernel/i8259.c index 7eec7568bfea..447759201d1d 100644 --- a/arch/mips/kernel/i8259.c +++ b/arch/mips/kernel/i8259.c | |||
| @@ -31,7 +31,7 @@ void disable_8259A_irq(unsigned int irq); | |||
| 31 | * moves to arch independent land | 31 | * moves to arch independent land |
| 32 | */ | 32 | */ |
| 33 | 33 | ||
| 34 | spinlock_t i8259A_lock = SPIN_LOCK_UNLOCKED; | 34 | spinlock_t DEFINE_SPINLOCK(i8259A_lock); |
| 35 | 35 | ||
| 36 | static void end_8259A_irq (unsigned int irq) | 36 | static void end_8259A_irq (unsigned int irq) |
| 37 | { | 37 | { |
diff --git a/arch/mips/kernel/irixioctl.c b/arch/mips/kernel/irixioctl.c index 4cd3d38a22c2..3cdc22346f4c 100644 --- a/arch/mips/kernel/irixioctl.c +++ b/arch/mips/kernel/irixioctl.c | |||
| @@ -14,6 +14,7 @@ | |||
| 14 | #include <linux/syscalls.h> | 14 | #include <linux/syscalls.h> |
| 15 | #include <linux/tty.h> | 15 | #include <linux/tty.h> |
| 16 | #include <linux/file.h> | 16 | #include <linux/file.h> |
| 17 | #include <linux/rcupdate.h> | ||
| 17 | 18 | ||
| 18 | #include <asm/uaccess.h> | 19 | #include <asm/uaccess.h> |
| 19 | #include <asm/ioctl.h> | 20 | #include <asm/ioctl.h> |
| @@ -33,7 +34,7 @@ static struct tty_struct *get_tty(int fd) | |||
| 33 | struct file *filp; | 34 | struct file *filp; |
| 34 | struct tty_struct *ttyp = NULL; | 35 | struct tty_struct *ttyp = NULL; |
| 35 | 36 | ||
| 36 | spin_lock(¤t->files->file_lock); | 37 | rcu_read_lock(); |
| 37 | filp = fcheck(fd); | 38 | filp = fcheck(fd); |
| 38 | if(filp && filp->private_data) { | 39 | if(filp && filp->private_data) { |
| 39 | ttyp = (struct tty_struct *) filp->private_data; | 40 | ttyp = (struct tty_struct *) filp->private_data; |
| @@ -41,7 +42,7 @@ static struct tty_struct *get_tty(int fd) | |||
| 41 | if(ttyp->magic != TTY_MAGIC) | 42 | if(ttyp->magic != TTY_MAGIC) |
| 42 | ttyp =NULL; | 43 | ttyp =NULL; |
| 43 | } | 44 | } |
| 44 | spin_unlock(¤t->files->file_lock); | 45 | rcu_read_unlock(); |
| 45 | return ttyp; | 46 | return ttyp; |
| 46 | } | 47 | } |
| 47 | 48 | ||
diff --git a/arch/mips/kernel/irixsig.c b/arch/mips/kernel/irixsig.c index 4c114ae21793..eff89322ba50 100644 --- a/arch/mips/kernel/irixsig.c +++ b/arch/mips/kernel/irixsig.c | |||
| @@ -440,18 +440,6 @@ struct irix5_siginfo { | |||
| 440 | } stuff; | 440 | } stuff; |
| 441 | }; | 441 | }; |
| 442 | 442 | ||
| 443 | static inline unsigned long timespectojiffies(struct timespec *value) | ||
| 444 | { | ||
| 445 | unsigned long sec = (unsigned) value->tv_sec; | ||
| 446 | long nsec = value->tv_nsec; | ||
| 447 | |||
| 448 | if (sec > (LONG_MAX / HZ)) | ||
| 449 | return LONG_MAX; | ||
| 450 | nsec += 1000000000L / HZ - 1; | ||
| 451 | nsec /= 1000000000L / HZ; | ||
| 452 | return HZ * sec + nsec; | ||
| 453 | } | ||
| 454 | |||
| 455 | asmlinkage int irix_sigpoll_sys(unsigned long *set, struct irix5_siginfo *info, | 443 | asmlinkage int irix_sigpoll_sys(unsigned long *set, struct irix5_siginfo *info, |
| 456 | struct timespec *tp) | 444 | struct timespec *tp) |
| 457 | { | 445 | { |
| @@ -489,14 +477,13 @@ asmlinkage int irix_sigpoll_sys(unsigned long *set, struct irix5_siginfo *info, | |||
| 489 | error = -EINVAL; | 477 | error = -EINVAL; |
| 490 | goto out; | 478 | goto out; |
| 491 | } | 479 | } |
| 492 | expire = timespectojiffies(tp)+(tp->tv_sec||tp->tv_nsec); | 480 | expire = timespec_to_jiffies(tp) + (tp->tv_sec||tp->tv_nsec); |
| 493 | } | 481 | } |
| 494 | 482 | ||
| 495 | while(1) { | 483 | while(1) { |
| 496 | long tmp = 0; | 484 | long tmp = 0; |
| 497 | 485 | ||
| 498 | current->state = TASK_INTERRUPTIBLE; | 486 | expire = schedule_timeout_interruptible(expire); |
| 499 | expire = schedule_timeout(expire); | ||
| 500 | 487 | ||
| 501 | for (i=0; i<=4; i++) | 488 | for (i=0; i<=4; i++) |
| 502 | tmp |= (current->pending.signal.sig[i] & kset.sig[i]); | 489 | tmp |= (current->pending.signal.sig[i] & kset.sig[i]); |
diff --git a/arch/mips/kernel/r2300_fpu.S b/arch/mips/kernel/r2300_fpu.S index f83c31f720c4..ac68e68339db 100644 --- a/arch/mips/kernel/r2300_fpu.S +++ b/arch/mips/kernel/r2300_fpu.S | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | #include <asm/errno.h> | 15 | #include <asm/errno.h> |
| 16 | #include <asm/fpregdef.h> | 16 | #include <asm/fpregdef.h> |
| 17 | #include <asm/mipsregs.h> | 17 | #include <asm/mipsregs.h> |
| 18 | #include <asm/offset.h> | 18 | #include <asm/asm-offsets.h> |
| 19 | #include <asm/regdef.h> | 19 | #include <asm/regdef.h> |
| 20 | 20 | ||
| 21 | #define EX(a,b) \ | 21 | #define EX(a,b) \ |
diff --git a/arch/mips/kernel/r2300_switch.S b/arch/mips/kernel/r2300_switch.S index f10019640ee9..0d9c4a32a9c2 100644 --- a/arch/mips/kernel/r2300_switch.S +++ b/arch/mips/kernel/r2300_switch.S | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | #include <asm/cachectl.h> | 15 | #include <asm/cachectl.h> |
| 16 | #include <asm/fpregdef.h> | 16 | #include <asm/fpregdef.h> |
| 17 | #include <asm/mipsregs.h> | 17 | #include <asm/mipsregs.h> |
| 18 | #include <asm/offset.h> | 18 | #include <asm/asm-offsets.h> |
| 19 | #include <asm/page.h> | 19 | #include <asm/page.h> |
| 20 | #include <asm/regdef.h> | 20 | #include <asm/regdef.h> |
| 21 | #include <asm/stackframe.h> | 21 | #include <asm/stackframe.h> |
diff --git a/arch/mips/kernel/r4k_fpu.S b/arch/mips/kernel/r4k_fpu.S index aba665bcb386..1a14c6b18829 100644 --- a/arch/mips/kernel/r4k_fpu.S +++ b/arch/mips/kernel/r4k_fpu.S | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | #include <asm/errno.h> | 17 | #include <asm/errno.h> |
| 18 | #include <asm/fpregdef.h> | 18 | #include <asm/fpregdef.h> |
| 19 | #include <asm/mipsregs.h> | 19 | #include <asm/mipsregs.h> |
| 20 | #include <asm/offset.h> | 20 | #include <asm/asm-offsets.h> |
| 21 | #include <asm/regdef.h> | 21 | #include <asm/regdef.h> |
| 22 | 22 | ||
| 23 | .macro EX insn, reg, src | 23 | .macro EX insn, reg, src |
diff --git a/arch/mips/kernel/r4k_switch.S b/arch/mips/kernel/r4k_switch.S index e02b7722ccb8..d2afbd19a9c8 100644 --- a/arch/mips/kernel/r4k_switch.S +++ b/arch/mips/kernel/r4k_switch.S | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | #include <asm/cachectl.h> | 15 | #include <asm/cachectl.h> |
| 16 | #include <asm/fpregdef.h> | 16 | #include <asm/fpregdef.h> |
| 17 | #include <asm/mipsregs.h> | 17 | #include <asm/mipsregs.h> |
| 18 | #include <asm/offset.h> | 18 | #include <asm/asm-offsets.h> |
| 19 | #include <asm/page.h> | 19 | #include <asm/page.h> |
| 20 | #include <asm/pgtable-bits.h> | 20 | #include <asm/pgtable-bits.h> |
| 21 | #include <asm/regdef.h> | 21 | #include <asm/regdef.h> |
diff --git a/arch/mips/kernel/r6000_fpu.S b/arch/mips/kernel/r6000_fpu.S index d8d3b13fe57f..43cda53f5af6 100644 --- a/arch/mips/kernel/r6000_fpu.S +++ b/arch/mips/kernel/r6000_fpu.S | |||
| @@ -13,7 +13,7 @@ | |||
| 13 | #include <asm/asm.h> | 13 | #include <asm/asm.h> |
| 14 | #include <asm/fpregdef.h> | 14 | #include <asm/fpregdef.h> |
| 15 | #include <asm/mipsregs.h> | 15 | #include <asm/mipsregs.h> |
| 16 | #include <asm/offset.h> | 16 | #include <asm/asm-offsets.h> |
| 17 | #include <asm/regdef.h> | 17 | #include <asm/regdef.h> |
| 18 | 18 | ||
| 19 | .set noreorder | 19 | .set noreorder |
diff --git a/arch/mips/kernel/scall32-o32.S b/arch/mips/kernel/scall32-o32.S index 344f2e29eb61..17b5030fb6ea 100644 --- a/arch/mips/kernel/scall32-o32.S +++ b/arch/mips/kernel/scall32-o32.S | |||
| @@ -19,7 +19,7 @@ | |||
| 19 | #include <asm/thread_info.h> | 19 | #include <asm/thread_info.h> |
| 20 | #include <asm/unistd.h> | 20 | #include <asm/unistd.h> |
| 21 | #include <asm/war.h> | 21 | #include <asm/war.h> |
| 22 | #include <asm/offset.h> | 22 | #include <asm/asm-offsets.h> |
| 23 | 23 | ||
| 24 | /* Highest syscall used of any syscall flavour */ | 24 | /* Highest syscall used of any syscall flavour */ |
| 25 | #define MAX_SYSCALL_NO __NR_O32_Linux + __NR_O32_Linux_syscalls | 25 | #define MAX_SYSCALL_NO __NR_O32_Linux + __NR_O32_Linux_syscalls |
diff --git a/arch/mips/kernel/scall64-64.S b/arch/mips/kernel/scall64-64.S index 32efb888160a..ffb22a2068bf 100644 --- a/arch/mips/kernel/scall64-64.S +++ b/arch/mips/kernel/scall64-64.S | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | #include <asm/mipsregs.h> | 14 | #include <asm/mipsregs.h> |
| 15 | #include <asm/regdef.h> | 15 | #include <asm/regdef.h> |
| 16 | #include <asm/stackframe.h> | 16 | #include <asm/stackframe.h> |
| 17 | #include <asm/offset.h> | 17 | #include <asm/asm-offsets.h> |
| 18 | #include <asm/sysmips.h> | 18 | #include <asm/sysmips.h> |
| 19 | #include <asm/thread_info.h> | 19 | #include <asm/thread_info.h> |
| 20 | #include <asm/unistd.h> | 20 | #include <asm/unistd.h> |
diff --git a/arch/mips/kernel/syscall.c b/arch/mips/kernel/syscall.c index ae2a1312d4ef..21e3e13a4b44 100644 --- a/arch/mips/kernel/syscall.c +++ b/arch/mips/kernel/syscall.c | |||
| @@ -31,7 +31,7 @@ | |||
| 31 | #include <asm/cachectl.h> | 31 | #include <asm/cachectl.h> |
| 32 | #include <asm/cacheflush.h> | 32 | #include <asm/cacheflush.h> |
| 33 | #include <asm/ipc.h> | 33 | #include <asm/ipc.h> |
| 34 | #include <asm/offset.h> | 34 | #include <asm/asm-offsets.h> |
| 35 | #include <asm/signal.h> | 35 | #include <asm/signal.h> |
| 36 | #include <asm/sim.h> | 36 | #include <asm/sim.h> |
| 37 | #include <asm/shmparam.h> | 37 | #include <asm/shmparam.h> |
diff --git a/arch/mips/kernel/sysirix.c b/arch/mips/kernel/sysirix.c index b46595462717..4de155699c4f 100644 --- a/arch/mips/kernel/sysirix.c +++ b/arch/mips/kernel/sysirix.c | |||
| @@ -1032,8 +1032,7 @@ bad: | |||
| 1032 | 1032 | ||
| 1033 | asmlinkage int irix_sginap(int ticks) | 1033 | asmlinkage int irix_sginap(int ticks) |
| 1034 | { | 1034 | { |
| 1035 | current->state = TASK_INTERRUPTIBLE; | 1035 | schedule_timeout_interruptible(ticks); |
| 1036 | schedule_timeout(ticks); | ||
| 1037 | return 0; | 1036 | return 0; |
| 1038 | } | 1037 | } |
| 1039 | 1038 | ||
diff --git a/arch/mips/lib-32/memset.S b/arch/mips/lib-32/memset.S index ad9ff4071ce9..1981485bd48b 100644 --- a/arch/mips/lib-32/memset.S +++ b/arch/mips/lib-32/memset.S | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | * Copyright (C) 1999, 2000 Silicon Graphics, Inc. | 7 | * Copyright (C) 1999, 2000 Silicon Graphics, Inc. |
| 8 | */ | 8 | */ |
| 9 | #include <asm/asm.h> | 9 | #include <asm/asm.h> |
| 10 | #include <asm/offset.h> | 10 | #include <asm/asm-offsets.h> |
| 11 | #include <asm/regdef.h> | 11 | #include <asm/regdef.h> |
| 12 | 12 | ||
| 13 | #define EX(insn,reg,addr,handler) \ | 13 | #define EX(insn,reg,addr,handler) \ |
diff --git a/arch/mips/lib-64/memset.S b/arch/mips/lib-64/memset.S index 242f1976cfaf..e2c42c85113b 100644 --- a/arch/mips/lib-64/memset.S +++ b/arch/mips/lib-64/memset.S | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | * Copyright (C) 1999, 2000 Silicon Graphics, Inc. | 7 | * Copyright (C) 1999, 2000 Silicon Graphics, Inc. |
| 8 | */ | 8 | */ |
| 9 | #include <asm/asm.h> | 9 | #include <asm/asm.h> |
| 10 | #include <asm/offset.h> | 10 | #include <asm/asm-offsets.h> |
| 11 | #include <asm/regdef.h> | 11 | #include <asm/regdef.h> |
| 12 | 12 | ||
| 13 | #define EX(insn,reg,addr,handler) \ | 13 | #define EX(insn,reg,addr,handler) \ |
diff --git a/arch/mips/lib/dec_and_lock.c b/arch/mips/lib/dec_and_lock.c index e44e9579bd36..fd82c84a93b7 100644 --- a/arch/mips/lib/dec_and_lock.c +++ b/arch/mips/lib/dec_and_lock.c | |||
| @@ -20,14 +20,7 @@ | |||
| 20 | * has a cmpxchg, and where atomic->value is an int holding | 20 | * has a cmpxchg, and where atomic->value is an int holding |
| 21 | * the value of the atomic (i.e. the high bits aren't used | 21 | * the value of the atomic (i.e. the high bits aren't used |
| 22 | * for a lock or anything like that). | 22 | * for a lock or anything like that). |
| 23 | * | ||
| 24 | * N.B. ATOMIC_DEC_AND_LOCK gets defined in include/linux/spinlock.h | ||
| 25 | * if spinlocks are empty and thus atomic_dec_and_lock is defined | ||
| 26 | * to be atomic_dec_and_test - in that case we don't need it | ||
| 27 | * defined here as well. | ||
| 28 | */ | 23 | */ |
| 29 | |||
| 30 | #ifndef ATOMIC_DEC_AND_LOCK | ||
| 31 | int _atomic_dec_and_lock(atomic_t *atomic, spinlock_t *lock) | 24 | int _atomic_dec_and_lock(atomic_t *atomic, spinlock_t *lock) |
| 32 | { | 25 | { |
| 33 | int counter; | 26 | int counter; |
| @@ -52,4 +45,3 @@ int _atomic_dec_and_lock(atomic_t *atomic, spinlock_t *lock) | |||
| 52 | } | 45 | } |
| 53 | 46 | ||
| 54 | EXPORT_SYMBOL(_atomic_dec_and_lock); | 47 | EXPORT_SYMBOL(_atomic_dec_and_lock); |
| 55 | #endif /* ATOMIC_DEC_AND_LOCK */ | ||
diff --git a/arch/mips/lib/memcpy.S b/arch/mips/lib/memcpy.S index 90ee8d43261f..a78865f76547 100644 --- a/arch/mips/lib/memcpy.S +++ b/arch/mips/lib/memcpy.S | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | */ | 14 | */ |
| 15 | #include <linux/config.h> | 15 | #include <linux/config.h> |
| 16 | #include <asm/asm.h> | 16 | #include <asm/asm.h> |
| 17 | #include <asm/offset.h> | 17 | #include <asm/asm-offsets.h> |
| 18 | #include <asm/regdef.h> | 18 | #include <asm/regdef.h> |
| 19 | 19 | ||
| 20 | #define dst a0 | 20 | #define dst a0 |
diff --git a/arch/mips/lib/strlen_user.S b/arch/mips/lib/strlen_user.S index 07660e86c99d..eca558d83a37 100644 --- a/arch/mips/lib/strlen_user.S +++ b/arch/mips/lib/strlen_user.S | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | * Copyright (c) 1999 Silicon Graphics, Inc. | 7 | * Copyright (c) 1999 Silicon Graphics, Inc. |
| 8 | */ | 8 | */ |
| 9 | #include <asm/asm.h> | 9 | #include <asm/asm.h> |
| 10 | #include <asm/offset.h> | 10 | #include <asm/asm-offsets.h> |
| 11 | #include <asm/regdef.h> | 11 | #include <asm/regdef.h> |
| 12 | 12 | ||
| 13 | #define EX(insn,reg,addr,handler) \ | 13 | #define EX(insn,reg,addr,handler) \ |
diff --git a/arch/mips/lib/strncpy_user.S b/arch/mips/lib/strncpy_user.S index 14bed17c1648..d16c76fbfac7 100644 --- a/arch/mips/lib/strncpy_user.S +++ b/arch/mips/lib/strncpy_user.S | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | */ | 7 | */ |
| 8 | #include <linux/errno.h> | 8 | #include <linux/errno.h> |
| 9 | #include <asm/asm.h> | 9 | #include <asm/asm.h> |
| 10 | #include <asm/offset.h> | 10 | #include <asm/asm-offsets.h> |
| 11 | #include <asm/regdef.h> | 11 | #include <asm/regdef.h> |
| 12 | 12 | ||
| 13 | #define EX(insn,reg,addr,handler) \ | 13 | #define EX(insn,reg,addr,handler) \ |
diff --git a/arch/mips/lib/strnlen_user.S b/arch/mips/lib/strnlen_user.S index 6e7a8eed4de8..c0ea15194a0e 100644 --- a/arch/mips/lib/strnlen_user.S +++ b/arch/mips/lib/strnlen_user.S | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | * Copyright (c) 1999 Silicon Graphics, Inc. | 7 | * Copyright (c) 1999 Silicon Graphics, Inc. |
| 8 | */ | 8 | */ |
| 9 | #include <asm/asm.h> | 9 | #include <asm/asm.h> |
| 10 | #include <asm/offset.h> | 10 | #include <asm/asm-offsets.h> |
| 11 | #include <asm/regdef.h> | 11 | #include <asm/regdef.h> |
| 12 | 12 | ||
| 13 | #define EX(insn,reg,addr,handler) \ | 13 | #define EX(insn,reg,addr,handler) \ |
diff --git a/arch/mips/pci/Makefile b/arch/mips/pci/Makefile index c53e4cb359ba..83d81c9cdc2b 100644 --- a/arch/mips/pci/Makefile +++ b/arch/mips/pci/Makefile | |||
| @@ -48,6 +48,7 @@ obj-$(CONFIG_SIBYTE_SB1250) += fixup-sb1250.o pci-sb1250.o | |||
| 48 | obj-$(CONFIG_SNI_RM200_PCI) += fixup-sni.o ops-sni.o | 48 | obj-$(CONFIG_SNI_RM200_PCI) += fixup-sni.o ops-sni.o |
| 49 | obj-$(CONFIG_TANBAC_TB0219) += fixup-tb0219.o | 49 | obj-$(CONFIG_TANBAC_TB0219) += fixup-tb0219.o |
| 50 | obj-$(CONFIG_TANBAC_TB0226) += fixup-tb0226.o | 50 | obj-$(CONFIG_TANBAC_TB0226) += fixup-tb0226.o |
| 51 | obj-$(CONFIG_TANBAC_TB0287) += fixup-tb0287.o | ||
| 51 | obj-$(CONFIG_TOSHIBA_JMR3927) += fixup-jmr3927.o pci-jmr3927.o | 52 | obj-$(CONFIG_TOSHIBA_JMR3927) += fixup-jmr3927.o pci-jmr3927.o |
| 52 | obj-$(CONFIG_TOSHIBA_RBTX4927) += fixup-rbtx4927.o ops-tx4927.o | 53 | obj-$(CONFIG_TOSHIBA_RBTX4927) += fixup-rbtx4927.o ops-tx4927.o |
| 53 | obj-$(CONFIG_VICTOR_MPC30X) += fixup-mpc30x.o | 54 | obj-$(CONFIG_VICTOR_MPC30X) += fixup-mpc30x.o |
diff --git a/arch/mips/pci/fixup-tb0287.c b/arch/mips/pci/fixup-tb0287.c new file mode 100644 index 000000000000..8436d7f1fdb2 --- /dev/null +++ b/arch/mips/pci/fixup-tb0287.c | |||
| @@ -0,0 +1,65 @@ | |||
| 1 | /* | ||
| 2 | * fixup-tb0287.c, The TANBAC TB0287 specific PCI fixups. | ||
| 3 | * | ||
| 4 | * Copyright (C) 2005 Yoichi Yuasa <yuasa@hh.iij4u.or.jp> | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | * | ||
| 11 | * This program is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | * GNU General Public License for more details. | ||
| 15 | * | ||
| 16 | * You should have received a copy of the GNU General Public License | ||
| 17 | * along with this program; if not, write to the Free Software | ||
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
| 19 | */ | ||
| 20 | #include <linux/init.h> | ||
| 21 | #include <linux/pci.h> | ||
| 22 | |||
| 23 | #include <asm/vr41xx/tb0287.h> | ||
| 24 | |||
| 25 | int __init pcibios_map_irq(struct pci_dev *dev, u8 slot, u8 pin) | ||
| 26 | { | ||
| 27 | unsigned char bus; | ||
| 28 | int irq = -1; | ||
| 29 | |||
| 30 | bus = dev->bus->number; | ||
| 31 | if (bus == 0) { | ||
| 32 | switch (slot) { | ||
| 33 | case 16: | ||
| 34 | irq = TB0287_SM501_IRQ; | ||
| 35 | break; | ||
| 36 | case 17: | ||
| 37 | irq = TB0287_SIL680A_IRQ; | ||
| 38 | break; | ||
| 39 | default: | ||
| 40 | break; | ||
| 41 | } | ||
| 42 | } else if (bus == 1) { | ||
| 43 | switch (PCI_SLOT(dev->devfn)) { | ||
| 44 | case 0: | ||
| 45 | irq = TB0287_PCI_SLOT_IRQ; | ||
| 46 | break; | ||
| 47 | case 2: | ||
| 48 | case 3: | ||
| 49 | irq = TB0287_RTL8110_IRQ; | ||
| 50 | break; | ||
| 51 | default: | ||
| 52 | break; | ||
| 53 | } | ||
| 54 | } else if (bus > 1) { | ||
| 55 | irq = TB0287_PCI_SLOT_IRQ; | ||
| 56 | } | ||
| 57 | |||
| 58 | return irq; | ||
| 59 | } | ||
| 60 | |||
| 61 | /* Do platform specific device initialization at pci_enable_device() time */ | ||
| 62 | int pcibios_plat_dev_init(struct pci_dev *dev) | ||
| 63 | { | ||
| 64 | return 0; | ||
| 65 | } | ||
