2005-04-17 00:20:36 +02:00
|
|
|
config H8300
|
|
|
|
bool
|
|
|
|
default y
|
2008-02-09 10:46:40 +01:00
|
|
|
select HAVE_IDE
|
2012-12-18 23:21:29 +01:00
|
|
|
select GENERIC_ATOMIC64
|
2012-10-09 01:28:08 +02:00
|
|
|
select HAVE_UID16
|
2013-03-07 05:48:16 +01:00
|
|
|
select VIRT_TO_BUS
|
2012-07-30 23:42:46 +02:00
|
|
|
select ARCH_WANT_IPC_PARSE_VERSION
|
2011-03-24 19:15:36 +01:00
|
|
|
select GENERIC_IRQ_SHOW
|
2012-01-10 04:04:32 +01:00
|
|
|
select GENERIC_CPU_DEVICES
|
2012-09-28 07:01:03 +02:00
|
|
|
select MODULES_USE_ELF_RELA
|
2012-12-25 22:27:07 +01:00
|
|
|
select OLD_SIGSUSPEND3
|
2012-12-26 01:29:41 +01:00
|
|
|
select OLD_SIGACTION
|
2013-03-15 05:34:17 +01:00
|
|
|
select HAVE_UNDERSCORE_SYMBOL_PREFIX
|
2009-11-07 22:03:54 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
config MMU
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
|
|
|
config SWAP
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2007-02-10 10:43:09 +01:00
|
|
|
config ZONE_DMA
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
config FPU
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
|
|
|
config RWSEM_GENERIC_SPINLOCK
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
|
|
|
config RWSEM_XCHGADD_ALGORITHM
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2006-12-08 11:37:49 +01:00
|
|
|
config ARCH_HAS_ILOG2_U32
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
|
|
|
config ARCH_HAS_ILOG2_U64
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
[PATCH] bitops: h8300: use generic bitops
- remove generic_ffs()
- remove find_{next,first}{,_zero}_bit()
- remove sched_find_first_bit()
- remove generic_hweight{32,16,8}()
- remove ext2_{set,clear,test,find_first_zero,find_next_zero}_bit()
- remove ext2_{set,clear}_bit_atomic()
- remove minix_{test,set,test_and_clear,test,find_first_zero}_bit()
- remove generic_fls()
- remove generic_fls64()
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-26 11:39:23 +02:00
|
|
|
config GENERIC_HWEIGHT
|
2007-05-06 23:50:35 +02:00
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
config GENERIC_CALIBRATE_DELAY
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
2008-10-16 07:01:17 +02:00
|
|
|
config GENERIC_BUG
|
|
|
|
bool
|
|
|
|
depends on BUG
|
|
|
|
|
2006-02-14 22:53:15 +01:00
|
|
|
config TIME_LOW_RES
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
2007-02-11 16:41:31 +01:00
|
|
|
config NO_IOPORT
|
|
|
|
def_bool y
|
|
|
|
|
2007-07-16 08:40:26 +02:00
|
|
|
config NO_DMA
|
|
|
|
def_bool y
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
config ISA
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
|
|
|
config PCI
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
avoid overflows in kernel/time.c
When the conversion factor between jiffies and milli- or microseconds is
not a single multiply or divide, as for the case of HZ == 300, we currently
do a multiply followed by a divide. The intervening result, however, is
subject to overflows, especially since the fraction is not simplified (for
HZ == 300, we multiply by 300 and divide by 1000).
This is exposed to the user when passing a large timeout to poll(), for
example.
This patch replaces the multiply-divide with a reciprocal multiplication on
32-bit platforms. When the input is an unsigned long, there is no portable
way to do this on 64-bit platforms there is no portable way to do this
since it requires a 128-bit intermediate result (which gcc does support on
64-bit platforms but may generate libgcc calls, e.g. on 64-bit s390), but
since the output is a 32-bit integer in the cases affected, just simplify
the multiply-divide (*3/10 instead of *300/1000).
The reciprocal multiply used can have off-by-one errors in the upper half
of the valid output range. This could be avoided at the expense of having
to deal with a potential 65-bit intermediate result. Since the intent is
to avoid overflow problems and most of the other time conversions are only
semiexact, the off-by-one errors were considered an acceptable tradeoff.
At Ralf Baechle's suggestion, this version uses a Perl script to compute
the necessary constants. We already have dependencies on Perl for kernel
compiles. This does, however, require the Perl module Math::BigInt, which
is included in the standard Perl distribution starting with version 5.8.0.
In order to support older versions of Perl, include a table of canned
constants in the script itself, and structure the script so that
Math::BigInt isn't required if pulling values from said table.
Running the script requires that the HZ value is available from the
Makefile. Thus, this patch also adds the Kconfig variable CONFIG_HZ to the
architectures which didn't already have it (alpha, cris, frv, h8300, m32r,
m68k, m68knommu, sparc, v850, and xtensa.) It does *not* touch the sh or
sh64 architectures, since Paul Mundt has dealt with those separately in the
sh tree.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Cc: Ralf Baechle <ralf@linux-mips.org>,
Cc: Sam Ravnborg <sam@ravnborg.org>,
Cc: Paul Mundt <lethal@linux-sh.org>,
Cc: Richard Henderson <rth@twiddle.net>,
Cc: Michael Starvik <starvik@axis.com>,
Cc: David Howells <dhowells@redhat.com>,
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>,
Cc: Hirokazu Takata <takata@linux-m32r.org>,
Cc: Geert Uytterhoeven <geert@linux-m68k.org>,
Cc: Roman Zippel <zippel@linux-m68k.org>,
Cc: William L. Irwin <sparclinux@vger.kernel.org>,
Cc: Chris Zankel <chris@zankel.net>,
Cc: H. Peter Anvin <hpa@zytor.com>,
Cc: Jan Engelhardt <jengelh@computergmbh.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-02-08 13:21:26 +01:00
|
|
|
config HZ
|
|
|
|
int
|
|
|
|
default 100
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
source "init/Kconfig"
|
|
|
|
|
2008-10-19 05:27:21 +02:00
|
|
|
source "kernel/Kconfig.freezer"
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
source "arch/h8300/Kconfig.cpu"
|
|
|
|
|
|
|
|
menu "Executable file formats"
|
|
|
|
|
|
|
|
source "fs/Kconfig.binfmt"
|
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
2005-07-12 06:03:49 +02:00
|
|
|
source "net/Kconfig"
|
|
|
|
|
2013-05-16 18:42:12 +02:00
|
|
|
source "drivers/Kconfig"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
source "arch/h8300/Kconfig.ide"
|
|
|
|
|
|
|
|
source "fs/Kconfig"
|
|
|
|
|
|
|
|
source "arch/h8300/Kconfig.debug"
|
|
|
|
|
|
|
|
source "security/Kconfig"
|
|
|
|
|
|
|
|
source "crypto/Kconfig"
|
|
|
|
|
|
|
|
source "lib/Kconfig"
|