Merge branches 'pxa-ezx', 'pxa-magician' and 'pxa-palm' into pxa
This commit is contained in:
commit
67f5cd0f6a
3
.gitignore
vendored
3
.gitignore
vendored
@ -26,6 +26,7 @@ tags
|
|||||||
TAGS
|
TAGS
|
||||||
vmlinux*
|
vmlinux*
|
||||||
!vmlinux.lds.S
|
!vmlinux.lds.S
|
||||||
|
!vmlinux.lds.h
|
||||||
System.map
|
System.map
|
||||||
Module.markers
|
Module.markers
|
||||||
Module.symvers
|
Module.symvers
|
||||||
@ -52,8 +53,8 @@ series
|
|||||||
|
|
||||||
# cscope files
|
# cscope files
|
||||||
cscope.*
|
cscope.*
|
||||||
|
ncscope.*
|
||||||
|
|
||||||
*.orig
|
*.orig
|
||||||
*.rej
|
|
||||||
*~
|
*~
|
||||||
\#*#
|
\#*#
|
||||||
|
@ -14,6 +14,10 @@ MAJOR:MINOR
|
|||||||
non-block filesystems which provide their own BDI, such as NFS
|
non-block filesystems which provide their own BDI, such as NFS
|
||||||
and FUSE.
|
and FUSE.
|
||||||
|
|
||||||
|
MAJOR:MINOR-fuseblk
|
||||||
|
|
||||||
|
Value of st_dev on fuseblk filesystems.
|
||||||
|
|
||||||
default
|
default
|
||||||
|
|
||||||
The default backing dev, used for non-block device backed
|
The default backing dev, used for non-block device backed
|
||||||
|
@ -703,6 +703,31 @@
|
|||||||
</sect1>
|
</sect1>
|
||||||
</chapter>
|
</chapter>
|
||||||
|
|
||||||
|
<chapter id="trylock-functions">
|
||||||
|
<title>The trylock Functions</title>
|
||||||
|
<para>
|
||||||
|
There are functions that try to acquire a lock only once and immediately
|
||||||
|
return a value telling about success or failure to acquire the lock.
|
||||||
|
They can be used if you need no access to the data protected with the lock
|
||||||
|
when some other thread is holding the lock. You should acquire the lock
|
||||||
|
later if you then need access to the data protected with the lock.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
<function>spin_trylock()</function> does not spin but returns non-zero if
|
||||||
|
it acquires the spinlock on the first try or 0 if not. This function can
|
||||||
|
be used in all contexts like <function>spin_lock</function>: you must have
|
||||||
|
disabled the contexts that might interrupt you and acquire the spin lock.
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
<function>mutex_trylock()</function> does not suspend your task
|
||||||
|
but returns non-zero if it could lock the mutex on the first try
|
||||||
|
or 0 if not. This function cannot be safely used in hardware or software
|
||||||
|
interrupt contexts despite not sleeping.
|
||||||
|
</para>
|
||||||
|
</chapter>
|
||||||
|
|
||||||
<chapter id="Examples">
|
<chapter id="Examples">
|
||||||
<title>Common Examples</title>
|
<title>Common Examples</title>
|
||||||
<para>
|
<para>
|
||||||
|
@ -84,10 +84,9 @@
|
|||||||
runs an instance of gdb against the vmlinux file which contains
|
runs an instance of gdb against the vmlinux file which contains
|
||||||
the symbols (not boot image such as bzImage, zImage, uImage...).
|
the symbols (not boot image such as bzImage, zImage, uImage...).
|
||||||
In gdb the developer specifies the connection parameters and
|
In gdb the developer specifies the connection parameters and
|
||||||
connects to kgdb. Depending on which kgdb I/O modules exist in
|
connects to kgdb. The type of connection a developer makes with
|
||||||
the kernel for a given architecture, it may be possible to debug
|
gdb depends on the availability of kgdb I/O modules compiled as
|
||||||
the test machine's kernel with the development machine using a
|
builtin's or kernel modules in the test machine's kernel.
|
||||||
rs232 or ethernet connection.
|
|
||||||
</para>
|
</para>
|
||||||
</chapter>
|
</chapter>
|
||||||
<chapter id="CompilingAKernel">
|
<chapter id="CompilingAKernel">
|
||||||
@ -223,7 +222,7 @@
|
|||||||
</para>
|
</para>
|
||||||
<para>
|
<para>
|
||||||
IMPORTANT NOTE: Using this option with kgdb over the console
|
IMPORTANT NOTE: Using this option with kgdb over the console
|
||||||
(kgdboc) or kgdb over ethernet (kgdboe) is not supported.
|
(kgdboc) is not supported.
|
||||||
</para>
|
</para>
|
||||||
</sect1>
|
</sect1>
|
||||||
</chapter>
|
</chapter>
|
||||||
@ -249,18 +248,11 @@
|
|||||||
(gdb) target remote /dev/ttyS0
|
(gdb) target remote /dev/ttyS0
|
||||||
</programlisting>
|
</programlisting>
|
||||||
<para>
|
<para>
|
||||||
Example (kgdb to a terminal server):
|
Example (kgdb to a terminal server on tcp port 2012):
|
||||||
</para>
|
</para>
|
||||||
<programlisting>
|
<programlisting>
|
||||||
% gdb ./vmlinux
|
% gdb ./vmlinux
|
||||||
(gdb) target remote udp:192.168.2.2:6443
|
(gdb) target remote 192.168.2.2:2012
|
||||||
</programlisting>
|
|
||||||
<para>
|
|
||||||
Example (kgdb over ethernet):
|
|
||||||
</para>
|
|
||||||
<programlisting>
|
|
||||||
% gdb ./vmlinux
|
|
||||||
(gdb) target remote udp:192.168.2.2:6443
|
|
||||||
</programlisting>
|
</programlisting>
|
||||||
<para>
|
<para>
|
||||||
Once connected, you can debug a kernel the way you would debug an
|
Once connected, you can debug a kernel the way you would debug an
|
||||||
|
@ -327,6 +327,52 @@ Some people also put extra tags at the end. They'll just be ignored for
|
|||||||
now, but you can do this to mark internal company procedures or just
|
now, but you can do this to mark internal company procedures or just
|
||||||
point out some special detail about the sign-off.
|
point out some special detail about the sign-off.
|
||||||
|
|
||||||
|
If you are a subsystem or branch maintainer, sometimes you need to slightly
|
||||||
|
modify patches you receive in order to merge them, because the code is not
|
||||||
|
exactly the same in your tree and the submitters'. If you stick strictly to
|
||||||
|
rule (c), you should ask the submitter to rediff, but this is a totally
|
||||||
|
counter-productive waste of time and energy. Rule (b) allows you to adjust
|
||||||
|
the code, but then it is very impolite to change one submitter's code and
|
||||||
|
make him endorse your bugs. To solve this problem, it is recommended that
|
||||||
|
you add a line between the last Signed-off-by header and yours, indicating
|
||||||
|
the nature of your changes. While there is nothing mandatory about this, it
|
||||||
|
seems like prepending the description with your mail and/or name, all
|
||||||
|
enclosed in square brackets, is noticeable enough to make it obvious that
|
||||||
|
you are responsible for last-minute changes. Example :
|
||||||
|
|
||||||
|
Signed-off-by: Random J Developer <random@developer.example.org>
|
||||||
|
[lucky@maintainer.example.org: struct foo moved from foo.c to foo.h]
|
||||||
|
Signed-off-by: Lucky K Maintainer <lucky@maintainer.example.org>
|
||||||
|
|
||||||
|
This practise is particularly helpful if you maintain a stable branch and
|
||||||
|
want at the same time to credit the author, track changes, merge the fix,
|
||||||
|
and protect the submitter from complaints. Note that under no circumstances
|
||||||
|
can you change the author's identity (the From header), as it is the one
|
||||||
|
which appears in the changelog.
|
||||||
|
|
||||||
|
Special note to back-porters: It seems to be a common and useful practise
|
||||||
|
to insert an indication of the origin of a patch at the top of the commit
|
||||||
|
message (just after the subject line) to facilitate tracking. For instance,
|
||||||
|
here's what we see in 2.6-stable :
|
||||||
|
|
||||||
|
Date: Tue May 13 19:10:30 2008 +0000
|
||||||
|
|
||||||
|
SCSI: libiscsi regression in 2.6.25: fix nop timer handling
|
||||||
|
|
||||||
|
commit 4cf1043593db6a337f10e006c23c69e5fc93e722 upstream
|
||||||
|
|
||||||
|
And here's what appears in 2.4 :
|
||||||
|
|
||||||
|
Date: Tue May 13 22:12:27 2008 +0200
|
||||||
|
|
||||||
|
wireless, airo: waitbusy() won't delay
|
||||||
|
|
||||||
|
[backport of 2.6 commit b7acbdfbd1f277c1eb23f344f899cfa4cd0bf36a]
|
||||||
|
|
||||||
|
Whatever the format, this information provides a valuable help to people
|
||||||
|
tracking your trees, and to people trying to trouble-shoot bugs in your
|
||||||
|
tree.
|
||||||
|
|
||||||
|
|
||||||
13) When to use Acked-by: and Cc:
|
13) When to use Acked-by: and Cc:
|
||||||
|
|
||||||
|
@ -21,6 +21,11 @@ This driver is known to work with the following cards:
|
|||||||
* SA E200
|
* SA E200
|
||||||
* SA E200i
|
* SA E200i
|
||||||
* SA E500
|
* SA E500
|
||||||
|
* SA P212
|
||||||
|
* SA P410
|
||||||
|
* SA P410i
|
||||||
|
* SA P411
|
||||||
|
* SA P812
|
||||||
|
|
||||||
Detecting drive failures:
|
Detecting drive failures:
|
||||||
-------------------------
|
-------------------------
|
||||||
|
@ -129,14 +129,6 @@ to its default value of '80' it means that between the checking
|
|||||||
intervals the CPU needs to be on average more than 80% in use to then
|
intervals the CPU needs to be on average more than 80% in use to then
|
||||||
decide that the CPU frequency needs to be increased.
|
decide that the CPU frequency needs to be increased.
|
||||||
|
|
||||||
sampling_down_factor: this parameter controls the rate that the CPU
|
|
||||||
makes a decision on when to decrease the frequency. When set to its
|
|
||||||
default value of '5' it means that at 1/5 the sampling_rate the kernel
|
|
||||||
makes a decision to lower the frequency. Five "lower rate" decisions
|
|
||||||
have to be made in a row before the CPU frequency is actually lower.
|
|
||||||
If set to '1' then the frequency decreases as quickly as it increases,
|
|
||||||
if set to '2' it decreases at half the rate of the increase.
|
|
||||||
|
|
||||||
ignore_nice_load: this parameter takes a value of '0' or '1'. When
|
ignore_nice_load: this parameter takes a value of '0' or '1'. When
|
||||||
set to '0' (its default), all processes are counted towards the
|
set to '0' (its default), all processes are counted towards the
|
||||||
'cpu utilisation' value. When set to '1', the processes that are
|
'cpu utilisation' value. When set to '1', the processes that are
|
||||||
|
@ -199,7 +199,7 @@ using the sched_setaffinity, mbind and set_mempolicy system calls.
|
|||||||
The following rules apply to each cpuset:
|
The following rules apply to each cpuset:
|
||||||
|
|
||||||
- Its CPUs and Memory Nodes must be a subset of its parents.
|
- Its CPUs and Memory Nodes must be a subset of its parents.
|
||||||
- It can only be marked exclusive if its parent is.
|
- It can't be marked exclusive unless its parent is.
|
||||||
- If its cpu or memory is exclusive, they may not overlap any sibling.
|
- If its cpu or memory is exclusive, they may not overlap any sibling.
|
||||||
|
|
||||||
These rules, and the natural hierarchy of cpusets, enable efficient
|
These rules, and the natural hierarchy of cpusets, enable efficient
|
||||||
@ -345,7 +345,7 @@ is modified to perform an inline check for this PF_SPREAD_PAGE task
|
|||||||
flag, and if set, a call to a new routine cpuset_mem_spread_node()
|
flag, and if set, a call to a new routine cpuset_mem_spread_node()
|
||||||
returns the node to prefer for the allocation.
|
returns the node to prefer for the allocation.
|
||||||
|
|
||||||
Similarly, setting 'memory_spread_cache' turns on the flag
|
Similarly, setting 'memory_spread_slab' turns on the flag
|
||||||
PF_SPREAD_SLAB, and appropriately marked slab caches will allocate
|
PF_SPREAD_SLAB, and appropriately marked slab caches will allocate
|
||||||
pages from the node returned by cpuset_mem_spread_node().
|
pages from the node returned by cpuset_mem_spread_node().
|
||||||
|
|
||||||
@ -542,7 +542,7 @@ otherwise initial value -1 that indicates the cpuset has no request.
|
|||||||
2 : search cores in a package.
|
2 : search cores in a package.
|
||||||
3 : search cpus in a node [= system wide on non-NUMA system]
|
3 : search cpus in a node [= system wide on non-NUMA system]
|
||||||
( 4 : search nodes in a chunk of node [on NUMA system] )
|
( 4 : search nodes in a chunk of node [on NUMA system] )
|
||||||
( 5~ : search system wide [on NUMA system])
|
( 5 : search system wide [on NUMA system] )
|
||||||
|
|
||||||
This file is per-cpuset and affect the sched domain where the cpuset
|
This file is per-cpuset and affect the sched domain where the cpuset
|
||||||
belongs to. Therefore if the flag 'sched_load_balance' of a cpuset
|
belongs to. Therefore if the flag 'sched_load_balance' of a cpuset
|
||||||
@ -709,7 +709,10 @@ Now you want to do something with this cpuset.
|
|||||||
|
|
||||||
In this directory you can find several files:
|
In this directory you can find several files:
|
||||||
# ls
|
# ls
|
||||||
cpus cpu_exclusive mems mem_exclusive mem_hardwall tasks
|
cpu_exclusive memory_migrate mems tasks
|
||||||
|
cpus memory_pressure notify_on_release
|
||||||
|
mem_exclusive memory_spread_page sched_load_balance
|
||||||
|
mem_hardwall memory_spread_slab sched_relax_domain_level
|
||||||
|
|
||||||
Reading them will give you information about the state of this cpuset:
|
Reading them will give you information about the state of this cpuset:
|
||||||
the CPUs and Memory Nodes it can use, the processes that are using
|
the CPUs and Memory Nodes it can use, the processes that are using
|
||||||
|
@ -139,8 +139,16 @@ commit=nrsec (*) Ext4 can be told to sync all its data and metadata
|
|||||||
Setting it to very large values will improve
|
Setting it to very large values will improve
|
||||||
performance.
|
performance.
|
||||||
|
|
||||||
barrier=1 This enables/disables barriers. barrier=0 disables
|
barrier=<0|1(*)> This enables/disables the use of write barriers in
|
||||||
it, barrier=1 enables it.
|
the jbd code. barrier=0 disables, barrier=1 enables.
|
||||||
|
This also requires an IO stack which can support
|
||||||
|
barriers, and if jbd gets an error on a barrier
|
||||||
|
write, it will disable again with a warning.
|
||||||
|
Write barriers enforce proper on-disk ordering
|
||||||
|
of journal commits, making volatile disk write caches
|
||||||
|
safe to use, at some performance penalty. If
|
||||||
|
your disks are battery-backed in one way or another,
|
||||||
|
disabling barriers may safely improve performance.
|
||||||
|
|
||||||
orlov (*) This enables the new Orlov block allocator. It is
|
orlov (*) This enables the new Orlov block allocator. It is
|
||||||
enabled by default.
|
enabled by default.
|
||||||
|
@ -36,6 +36,7 @@ files, each with their own function.
|
|||||||
local_cpus nearby CPU mask (cpumask, ro)
|
local_cpus nearby CPU mask (cpumask, ro)
|
||||||
resource PCI resource host addresses (ascii, ro)
|
resource PCI resource host addresses (ascii, ro)
|
||||||
resource0..N PCI resource N, if present (binary, mmap)
|
resource0..N PCI resource N, if present (binary, mmap)
|
||||||
|
resource0_wc..N_wc PCI WC map resource N, if prefetchable (binary, mmap)
|
||||||
rom PCI ROM resource, if present (binary, ro)
|
rom PCI ROM resource, if present (binary, ro)
|
||||||
subsystem_device PCI subsystem device (ascii, ro)
|
subsystem_device PCI subsystem device (ascii, ro)
|
||||||
subsystem_vendor PCI subsystem vendor (ascii, ro)
|
subsystem_vendor PCI subsystem vendor (ascii, ro)
|
||||||
|
37
Documentation/hwmon/ibmaem
Normal file
37
Documentation/hwmon/ibmaem
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
Kernel driver ibmaem
|
||||||
|
======================
|
||||||
|
|
||||||
|
Supported systems:
|
||||||
|
* Any recent IBM System X server with Active Energy Manager support.
|
||||||
|
This includes the x3350, x3550, x3650, x3655, x3755, x3850 M2,
|
||||||
|
x3950 M2, and certain HS2x/LS2x/QS2x blades. The IPMI host interface
|
||||||
|
driver ("ipmi-si") needs to be loaded for this driver to do anything.
|
||||||
|
Prefix: 'ibmaem'
|
||||||
|
Datasheet: Not available
|
||||||
|
|
||||||
|
Author: Darrick J. Wong
|
||||||
|
|
||||||
|
Description
|
||||||
|
-----------
|
||||||
|
|
||||||
|
This driver implements sensor reading support for the energy and power
|
||||||
|
meters available on various IBM System X hardware through the BMC. All
|
||||||
|
sensor banks will be exported as platform devices; this driver can talk
|
||||||
|
to both v1 and v2 interfaces. This driver is completely separate from the
|
||||||
|
older ibmpex driver.
|
||||||
|
|
||||||
|
The v1 AEM interface has a simple set of features to monitor energy use.
|
||||||
|
There is a register that displays an estimate of raw energy consumption
|
||||||
|
since the last BMC reset, and a power sensor that returns average power
|
||||||
|
use over a configurable interval.
|
||||||
|
|
||||||
|
The v2 AEM interface is a bit more sophisticated, being able to present
|
||||||
|
a wider range of energy and power use registers, the power cap as
|
||||||
|
set by the AEM software, and temperature sensors.
|
||||||
|
|
||||||
|
Special Features
|
||||||
|
----------------
|
||||||
|
|
||||||
|
The "power_cap" value displays the current system power cap, as set by
|
||||||
|
the Active Energy Manager software. Setting the power cap from the host
|
||||||
|
is not currently supported.
|
@ -2,17 +2,12 @@ Naming and data format standards for sysfs files
|
|||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
|
||||||
The libsensors library offers an interface to the raw sensors data
|
The libsensors library offers an interface to the raw sensors data
|
||||||
through the sysfs interface. See libsensors documentation and source for
|
through the sysfs interface. Since lm-sensors 3.0.0, libsensors is
|
||||||
further information. As of writing this document, libsensors
|
completely chip-independent. It assumes that all the kernel drivers
|
||||||
(from lm_sensors 2.8.3) is heavily chip-dependent. Adding or updating
|
implement the standard sysfs interface described in this document.
|
||||||
support for any given chip requires modifying the library's code.
|
This makes adding or updating support for any given chip very easy, as
|
||||||
This is because libsensors was written for the procfs interface
|
libsensors, and applications using it, do not need to be modified.
|
||||||
older kernel modules were using, which wasn't standardized enough.
|
This is a major improvement compared to lm-sensors 2.
|
||||||
Recent versions of libsensors (from lm_sensors 2.8.2 and later) have
|
|
||||||
support for the sysfs interface, though.
|
|
||||||
|
|
||||||
The new sysfs interface was designed to be as chip-independent as
|
|
||||||
possible.
|
|
||||||
|
|
||||||
Note that motherboards vary widely in the connections to sensor chips.
|
Note that motherboards vary widely in the connections to sensor chips.
|
||||||
There is no standard that ensures, for example, that the second
|
There is no standard that ensures, for example, that the second
|
||||||
@ -35,19 +30,17 @@ access this data in a simple and consistent way. That said, such programs
|
|||||||
will have to implement conversion, labeling and hiding of inputs. For
|
will have to implement conversion, labeling and hiding of inputs. For
|
||||||
this reason, it is still not recommended to bypass the library.
|
this reason, it is still not recommended to bypass the library.
|
||||||
|
|
||||||
If you are developing a userspace application please send us feedback on
|
|
||||||
this standard.
|
|
||||||
|
|
||||||
Note that this standard isn't completely established yet, so it is subject
|
|
||||||
to changes. If you are writing a new hardware monitoring driver those
|
|
||||||
features can't seem to fit in this interface, please contact us with your
|
|
||||||
extension proposal. Keep in mind that backward compatibility must be
|
|
||||||
preserved.
|
|
||||||
|
|
||||||
Each chip gets its own directory in the sysfs /sys/devices tree. To
|
Each chip gets its own directory in the sysfs /sys/devices tree. To
|
||||||
find all sensor chips, it is easier to follow the device symlinks from
|
find all sensor chips, it is easier to follow the device symlinks from
|
||||||
/sys/class/hwmon/hwmon*.
|
/sys/class/hwmon/hwmon*.
|
||||||
|
|
||||||
|
Up to lm-sensors 3.0.0, libsensors looks for hardware monitoring attributes
|
||||||
|
in the "physical" device directory. Since lm-sensors 3.0.1, attributes found
|
||||||
|
in the hwmon "class" device directory are also supported. Complex drivers
|
||||||
|
(e.g. drivers for multifunction chips) may want to use this possibility to
|
||||||
|
avoid namespace pollution. The only drawback will be that older versions of
|
||||||
|
libsensors won't support the driver in question.
|
||||||
|
|
||||||
All sysfs values are fixed point numbers.
|
All sysfs values are fixed point numbers.
|
||||||
|
|
||||||
There is only one value per file, unlike the older /proc specification.
|
There is only one value per file, unlike the older /proc specification.
|
||||||
|
@ -1,6 +1,105 @@
|
|||||||
kernel-doc nano-HOWTO
|
kernel-doc nano-HOWTO
|
||||||
=====================
|
=====================
|
||||||
|
|
||||||
|
How to format kernel-doc comments
|
||||||
|
---------------------------------
|
||||||
|
|
||||||
|
In order to provide embedded, 'C' friendly, easy to maintain,
|
||||||
|
but consistent and extractable documentation of the functions and
|
||||||
|
data structures in the Linux kernel, the Linux kernel has adopted
|
||||||
|
a consistent style for documenting functions and their parameters,
|
||||||
|
and structures and their members.
|
||||||
|
|
||||||
|
The format for this documentation is called the kernel-doc format.
|
||||||
|
It is documented in this Documentation/kernel-doc-nano-HOWTO.txt file.
|
||||||
|
|
||||||
|
This style embeds the documentation within the source files, using
|
||||||
|
a few simple conventions. The scripts/kernel-doc perl script, some
|
||||||
|
SGML templates in Documentation/DocBook, and other tools understand
|
||||||
|
these conventions, and are used to extract this embedded documentation
|
||||||
|
into various documents.
|
||||||
|
|
||||||
|
In order to provide good documentation of kernel functions and data
|
||||||
|
structures, please use the following conventions to format your
|
||||||
|
kernel-doc comments in Linux kernel source.
|
||||||
|
|
||||||
|
We definitely need kernel-doc formatted documentation for functions
|
||||||
|
that are exported to loadable modules using EXPORT_SYMBOL.
|
||||||
|
|
||||||
|
We also look to provide kernel-doc formatted documentation for
|
||||||
|
functions externally visible to other kernel files (not marked
|
||||||
|
"static").
|
||||||
|
|
||||||
|
We also recommend providing kernel-doc formatted documentation
|
||||||
|
for private (file "static") routines, for consistency of kernel
|
||||||
|
source code layout. But this is lower priority and at the
|
||||||
|
discretion of the MAINTAINER of that kernel source file.
|
||||||
|
|
||||||
|
Data structures visible in kernel include files should also be
|
||||||
|
documented using kernel-doc formatted comments.
|
||||||
|
|
||||||
|
The opening comment mark "/**" is reserved for kernel-doc comments.
|
||||||
|
Only comments so marked will be considered by the kernel-doc scripts,
|
||||||
|
and any comment so marked must be in kernel-doc format. Do not use
|
||||||
|
"/**" to be begin a comment block unless the comment block contains
|
||||||
|
kernel-doc formatted comments. The closing comment marker for
|
||||||
|
kernel-doc comments can be either "*/" or "**/".
|
||||||
|
|
||||||
|
Kernel-doc comments should be placed just before the function
|
||||||
|
or data structure being described.
|
||||||
|
|
||||||
|
Example kernel-doc function comment:
|
||||||
|
|
||||||
|
/**
|
||||||
|
* foobar() - short function description of foobar
|
||||||
|
* @arg1: Describe the first argument to foobar.
|
||||||
|
* @arg2: Describe the second argument to foobar.
|
||||||
|
* One can provide multiple line descriptions
|
||||||
|
* for arguments.
|
||||||
|
*
|
||||||
|
* A longer description, with more discussion of the function foobar()
|
||||||
|
* that might be useful to those using or modifying it. Begins with
|
||||||
|
* empty comment line, and may include additional embedded empty
|
||||||
|
* comment lines.
|
||||||
|
*
|
||||||
|
* The longer description can have multiple paragraphs.
|
||||||
|
**/
|
||||||
|
|
||||||
|
The first line, with the short description, must be on a single line.
|
||||||
|
|
||||||
|
The @argument descriptions must begin on the very next line following
|
||||||
|
this opening short function description line, with no intervening
|
||||||
|
empty comment lines.
|
||||||
|
|
||||||
|
Example kernel-doc data structure comment.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* struct blah - the basic blah structure
|
||||||
|
* @mem1: describe the first member of struct blah
|
||||||
|
* @mem2: describe the second member of struct blah,
|
||||||
|
* perhaps with more lines and words.
|
||||||
|
*
|
||||||
|
* Longer description of this structure.
|
||||||
|
**/
|
||||||
|
|
||||||
|
The kernel-doc function comments describe each parameter to the
|
||||||
|
function, in order, with the @name lines.
|
||||||
|
|
||||||
|
The kernel-doc data structure comments describe each structure member
|
||||||
|
in the data structure, with the @name lines.
|
||||||
|
|
||||||
|
The longer description formatting is "reflowed", losing your line
|
||||||
|
breaks. So presenting carefully formatted lists within these
|
||||||
|
descriptions won't work so well; derived documentation will lose
|
||||||
|
the formatting.
|
||||||
|
|
||||||
|
See the section below "How to add extractable documentation to your
|
||||||
|
source files" for more details and notes on how to format kernel-doc
|
||||||
|
comments.
|
||||||
|
|
||||||
|
Components of the kernel-doc system
|
||||||
|
-----------------------------------
|
||||||
|
|
||||||
Many places in the source tree have extractable documentation in the
|
Many places in the source tree have extractable documentation in the
|
||||||
form of block comments above functions. The components of this system
|
form of block comments above functions. The components of this system
|
||||||
are:
|
are:
|
||||||
|
@ -715,14 +715,14 @@
|
|||||||
|
|
||||||
* Name: "Gary's Encyclopedia - The Linux Kernel"
|
* Name: "Gary's Encyclopedia - The Linux Kernel"
|
||||||
Author: Gary (I suppose...).
|
Author: Gary (I suppose...).
|
||||||
URL: http://www.lisoleg.net/cgi-bin/lisoleg.pl?view=kernel.htm
|
URL: http://slencyclopedia.berlios.de/index.html
|
||||||
Keywords: links, not found here?.
|
Keywords: linux, community, everything!
|
||||||
Description: Gary's Encyclopedia exists to allow the rapid finding
|
Description: Gary's Encyclopedia exists to allow the rapid finding
|
||||||
of documentation and other information of interest to GNU/Linux
|
of documentation and other information of interest to GNU/Linux
|
||||||
users. It has about 4000 links to external pages in 150 major
|
users. It has about 4000 links to external pages in 150 major
|
||||||
categories. This link is for kernel-specific links, documents,
|
categories. This link is for kernel-specific links, documents,
|
||||||
sites... Look there if you could not find here what you were
|
sites... This list is now hosted by developer.Berlios.de,
|
||||||
looking for.
|
but seems not to have been updated since sometime in 1999.
|
||||||
|
|
||||||
* Name: "The home page of Linux-MM"
|
* Name: "The home page of Linux-MM"
|
||||||
Author: The Linux-MM team.
|
Author: The Linux-MM team.
|
||||||
|
@ -305,7 +305,7 @@ should not be manipulated by any other user.
|
|||||||
|
|
||||||
A kset keeps its children in a standard kernel linked list. Kobjects point
|
A kset keeps its children in a standard kernel linked list. Kobjects point
|
||||||
back to their containing kset via their kset field. In almost all cases,
|
back to their containing kset via their kset field. In almost all cases,
|
||||||
the kobjects belonging to a ket have that kset (or, strictly, its embedded
|
the kobjects belonging to a kset have that kset (or, strictly, its embedded
|
||||||
kobject) in their parent.
|
kobject) in their parent.
|
||||||
|
|
||||||
As a kset contains a kobject within it, it should always be dynamically
|
As a kset contains a kobject within it, it should always be dynamically
|
||||||
|
@ -503,7 +503,7 @@ generate input device EV_KEY events.
|
|||||||
In addition to the EV_KEY events, thinkpad-acpi may also issue EV_SW
|
In addition to the EV_KEY events, thinkpad-acpi may also issue EV_SW
|
||||||
events for switches:
|
events for switches:
|
||||||
|
|
||||||
SW_RADIO T60 and later hardare rfkill rocker switch
|
SW_RFKILL_ALL T60 and later hardare rfkill rocker switch
|
||||||
SW_TABLET_MODE Tablet ThinkPads HKEY events 0x5009 and 0x500A
|
SW_TABLET_MODE Tablet ThinkPads HKEY events 0x5009 and 0x500A
|
||||||
|
|
||||||
Non hot-key ACPI HKEY event map:
|
Non hot-key ACPI HKEY event map:
|
||||||
|
@ -157,6 +157,9 @@ struct virtqueue
|
|||||||
|
|
||||||
/* The routine to call when the Guest pings us. */
|
/* The routine to call when the Guest pings us. */
|
||||||
void (*handle_output)(int fd, struct virtqueue *me);
|
void (*handle_output)(int fd, struct virtqueue *me);
|
||||||
|
|
||||||
|
/* Outstanding buffers */
|
||||||
|
unsigned int inflight;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Remember the arguments to the program so we can "reboot" */
|
/* Remember the arguments to the program so we can "reboot" */
|
||||||
@ -702,6 +705,7 @@ static unsigned get_vq_desc(struct virtqueue *vq,
|
|||||||
errx(1, "Looped descriptor");
|
errx(1, "Looped descriptor");
|
||||||
} while ((i = next_desc(vq, i)) != vq->vring.num);
|
} while ((i = next_desc(vq, i)) != vq->vring.num);
|
||||||
|
|
||||||
|
vq->inflight++;
|
||||||
return head;
|
return head;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -719,6 +723,7 @@ static void add_used(struct virtqueue *vq, unsigned int head, int len)
|
|||||||
/* Make sure buffer is written before we update index. */
|
/* Make sure buffer is written before we update index. */
|
||||||
wmb();
|
wmb();
|
||||||
vq->vring.used->idx++;
|
vq->vring.used->idx++;
|
||||||
|
vq->inflight--;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This actually sends the interrupt for this virtqueue */
|
/* This actually sends the interrupt for this virtqueue */
|
||||||
@ -726,8 +731,9 @@ static void trigger_irq(int fd, struct virtqueue *vq)
|
|||||||
{
|
{
|
||||||
unsigned long buf[] = { LHREQ_IRQ, vq->config.irq };
|
unsigned long buf[] = { LHREQ_IRQ, vq->config.irq };
|
||||||
|
|
||||||
/* If they don't want an interrupt, don't send one. */
|
/* If they don't want an interrupt, don't send one, unless empty. */
|
||||||
if (vq->vring.avail->flags & VRING_AVAIL_F_NO_INTERRUPT)
|
if ((vq->vring.avail->flags & VRING_AVAIL_F_NO_INTERRUPT)
|
||||||
|
&& vq->inflight)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* Send the Guest an interrupt tell them we used something up. */
|
/* Send the Guest an interrupt tell them we used something up. */
|
||||||
@ -1107,6 +1113,7 @@ static void add_virtqueue(struct device *dev, unsigned int num_descs,
|
|||||||
vq->next = NULL;
|
vq->next = NULL;
|
||||||
vq->last_avail_idx = 0;
|
vq->last_avail_idx = 0;
|
||||||
vq->dev = dev;
|
vq->dev = dev;
|
||||||
|
vq->inflight = 0;
|
||||||
|
|
||||||
/* Initialize the configuration. */
|
/* Initialize the configuration. */
|
||||||
vq->config.num = num_descs;
|
vq->config.num = num_descs;
|
||||||
@ -1368,6 +1375,7 @@ static void setup_tun_net(const char *arg)
|
|||||||
|
|
||||||
/* Tell Guest what MAC address to use. */
|
/* Tell Guest what MAC address to use. */
|
||||||
add_feature(dev, VIRTIO_NET_F_MAC);
|
add_feature(dev, VIRTIO_NET_F_MAC);
|
||||||
|
add_feature(dev, VIRTIO_F_NOTIFY_ON_EMPTY);
|
||||||
set_config(dev, sizeof(conf), &conf);
|
set_config(dev, sizeof(conf), &conf);
|
||||||
|
|
||||||
/* We don't need the socket any more; setup is done. */
|
/* We don't need the socket any more; setup is done. */
|
||||||
|
@ -46,7 +46,7 @@ These are the ARCnet drivers for Linux.
|
|||||||
|
|
||||||
|
|
||||||
This new release (2.91) has been put together by David Woodhouse
|
This new release (2.91) has been put together by David Woodhouse
|
||||||
<dwmw2@cam.ac.uk>, in an attempt to tidy up the driver after adding support
|
<dwmw2@infradead.org>, in an attempt to tidy up the driver after adding support
|
||||||
for yet another chipset. Now the generic support has been separated from the
|
for yet another chipset. Now the generic support has been separated from the
|
||||||
individual chipset drivers, and the source files aren't quite so packed with
|
individual chipset drivers, and the source files aren't quite so packed with
|
||||||
#ifdefs! I've changed this file a bit, but kept it in the first person from
|
#ifdefs! I've changed this file a bit, but kept it in the first person from
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
In order to use the Ethernet bridging functionality, you'll need the
|
In order to use the Ethernet bridging functionality, you'll need the
|
||||||
userspace tools. These programs and documentation are available
|
userspace tools. These programs and documentation are available
|
||||||
at http://bridge.sourceforge.net. The download page is
|
at http://www.linux-foundation.org/en/Net:Bridge. The download page is
|
||||||
http://prdownloads.sourceforge.net/bridge.
|
http://prdownloads.sourceforge.net/bridge.
|
||||||
|
|
||||||
If you still have questions, don't hesitate to post to the mailing list
|
If you still have questions, don't hesitate to post to the mailing list
|
||||||
|
@ -60,7 +60,7 @@
|
|||||||
59 -> DViCO FusionHDTV 5 PCI nano [18ac:d530]
|
59 -> DViCO FusionHDTV 5 PCI nano [18ac:d530]
|
||||||
60 -> Pinnacle Hybrid PCTV [12ab:1788]
|
60 -> Pinnacle Hybrid PCTV [12ab:1788]
|
||||||
61 -> Winfast TV2000 XP Global [107d:6f18]
|
61 -> Winfast TV2000 XP Global [107d:6f18]
|
||||||
62 -> PowerColor Real Angel 330 [14f1:ea3d]
|
62 -> PowerColor RA330 [14f1:ea3d]
|
||||||
63 -> Geniatech X8000-MT DVBT [14f1:8852]
|
63 -> Geniatech X8000-MT DVBT [14f1:8852]
|
||||||
64 -> DViCO FusionHDTV DVB-T PRO [18ac:db30]
|
64 -> DViCO FusionHDTV DVB-T PRO [18ac:db30]
|
||||||
65 -> DViCO FusionHDTV 7 Gold [18ac:d610]
|
65 -> DViCO FusionHDTV 7 Gold [18ac:d610]
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
Some notes regarding the cx18 driver for the Conexant CX23418 MPEG
|
Some notes regarding the cx18 driver for the Conexant CX23418 MPEG
|
||||||
encoder chip:
|
encoder chip:
|
||||||
|
|
||||||
1) The only hardware currently supported is the Hauppauge HVR-1600.
|
1) The only hardware currently supported is the Hauppauge HVR-1600
|
||||||
|
card and the Compro VideoMate H900 (note that this card only
|
||||||
|
supports analog input, it has no digital tuner!).
|
||||||
|
|
||||||
2) Some people have problems getting the i2c bus to work. Cause unknown.
|
2) Some people have problems getting the i2c bus to work. Cause unknown.
|
||||||
The symptom is that the eeprom cannot be read and the card is
|
The symptom is that the eeprom cannot be read and the card is
|
||||||
|
77
Documentation/vm/pagemap.txt
Normal file
77
Documentation/vm/pagemap.txt
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
pagemap, from the userspace perspective
|
||||||
|
---------------------------------------
|
||||||
|
|
||||||
|
pagemap is a new (as of 2.6.25) set of interfaces in the kernel that allow
|
||||||
|
userspace programs to examine the page tables and related information by
|
||||||
|
reading files in /proc.
|
||||||
|
|
||||||
|
There are three components to pagemap:
|
||||||
|
|
||||||
|
* /proc/pid/pagemap. This file lets a userspace process find out which
|
||||||
|
physical frame each virtual page is mapped to. It contains one 64-bit
|
||||||
|
value for each virtual page, containing the following data (from
|
||||||
|
fs/proc/task_mmu.c, above pagemap_read):
|
||||||
|
|
||||||
|
* Bits 0-55 page frame number (PFN) if present
|
||||||
|
* Bits 0-4 swap type if swapped
|
||||||
|
* Bits 5-55 swap offset if swapped
|
||||||
|
* Bits 55-60 page shift (page size = 1<<page shift)
|
||||||
|
* Bit 61 reserved for future use
|
||||||
|
* Bit 62 page swapped
|
||||||
|
* Bit 63 page present
|
||||||
|
|
||||||
|
If the page is not present but in swap, then the PFN contains an
|
||||||
|
encoding of the swap file number and the page's offset into the
|
||||||
|
swap. Unmapped pages return a null PFN. This allows determining
|
||||||
|
precisely which pages are mapped (or in swap) and comparing mapped
|
||||||
|
pages between processes.
|
||||||
|
|
||||||
|
Efficient users of this interface will use /proc/pid/maps to
|
||||||
|
determine which areas of memory are actually mapped and llseek to
|
||||||
|
skip over unmapped regions.
|
||||||
|
|
||||||
|
* /proc/kpagecount. This file contains a 64-bit count of the number of
|
||||||
|
times each page is mapped, indexed by PFN.
|
||||||
|
|
||||||
|
* /proc/kpageflags. This file contains a 64-bit set of flags for each
|
||||||
|
page, indexed by PFN.
|
||||||
|
|
||||||
|
The flags are (from fs/proc/proc_misc, above kpageflags_read):
|
||||||
|
|
||||||
|
0. LOCKED
|
||||||
|
1. ERROR
|
||||||
|
2. REFERENCED
|
||||||
|
3. UPTODATE
|
||||||
|
4. DIRTY
|
||||||
|
5. LRU
|
||||||
|
6. ACTIVE
|
||||||
|
7. SLAB
|
||||||
|
8. WRITEBACK
|
||||||
|
9. RECLAIM
|
||||||
|
10. BUDDY
|
||||||
|
|
||||||
|
Using pagemap to do something useful:
|
||||||
|
|
||||||
|
The general procedure for using pagemap to find out about a process' memory
|
||||||
|
usage goes like this:
|
||||||
|
|
||||||
|
1. Read /proc/pid/maps to determine which parts of the memory space are
|
||||||
|
mapped to what.
|
||||||
|
2. Select the maps you are interested in -- all of them, or a particular
|
||||||
|
library, or the stack or the heap, etc.
|
||||||
|
3. Open /proc/pid/pagemap and seek to the pages you would like to examine.
|
||||||
|
4. Read a u64 for each page from pagemap.
|
||||||
|
5. Open /proc/kpagecount and/or /proc/kpageflags. For each PFN you just
|
||||||
|
read, seek to that entry in the file, and read the data you want.
|
||||||
|
|
||||||
|
For example, to find the "unique set size" (USS), which is the amount of
|
||||||
|
memory that a process is using that is not shared with any other process,
|
||||||
|
you can go through every map in the process, find the PFNs, look those up
|
||||||
|
in kpagecount, and tally up the number of pages that are only referenced
|
||||||
|
once.
|
||||||
|
|
||||||
|
Other notes:
|
||||||
|
|
||||||
|
Reading from any of the files will return -EINVAL if you are not starting
|
||||||
|
the read on an 8-byte boundary (e.g., if you seeked an odd number of bytes
|
||||||
|
into the file), or if the size of the read is not a multiple of 8 bytes.
|
3
Kbuild
3
Kbuild
@ -96,5 +96,4 @@ missing-syscalls: scripts/checksyscalls.sh FORCE
|
|||||||
$(call cmd,syscalls)
|
$(call cmd,syscalls)
|
||||||
|
|
||||||
# Delete all targets during make clean
|
# Delete all targets during make clean
|
||||||
clean-files := $(addprefix $(objtree)/,$(targets))
|
clean-files := $(addprefix $(objtree)/,$(filter-out $(bounds-file) $(offsets-file),$(targets)))
|
||||||
|
|
||||||
|
213
MAINTAINERS
213
MAINTAINERS
@ -228,21 +228,21 @@ ACPI BATTERY DRIVERS
|
|||||||
P: Alexey Starikovskiy
|
P: Alexey Starikovskiy
|
||||||
M: astarikovskiy@suse.de
|
M: astarikovskiy@suse.de
|
||||||
L: linux-acpi@vger.kernel.org
|
L: linux-acpi@vger.kernel.org
|
||||||
W: http://acpi.sourceforge.net/
|
W: http://www.lesswatts.org/projects/acpi/
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
ACPI EC DRIVER
|
ACPI EC DRIVER
|
||||||
P: Alexey Starikovskiy
|
P: Alexey Starikovskiy
|
||||||
M: astarikovskiy@suse.de
|
M: astarikovskiy@suse.de
|
||||||
L: linux-acpi@vger.kernel.org
|
L: linux-acpi@vger.kernel.org
|
||||||
W: http://acpi.sourceforge.net/
|
W: http://www.lesswatts.org/projects/acpi/
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
ACPI FAN DRIVER
|
ACPI FAN DRIVER
|
||||||
P: Len Brown
|
P: Len Brown
|
||||||
M: len.brown@intel.com
|
M: len.brown@intel.com
|
||||||
L: linux-acpi@vger.kernel.org
|
L: linux-acpi@vger.kernel.org
|
||||||
W: http://acpi.sourceforge.net/
|
W: http://www.lesswatts.org/projects/acpi/
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
ACPI PCI HOTPLUG DRIVER
|
ACPI PCI HOTPLUG DRIVER
|
||||||
@ -255,14 +255,14 @@ ACPI THERMAL DRIVER
|
|||||||
P: Len Brown
|
P: Len Brown
|
||||||
M: len.brown@intel.com
|
M: len.brown@intel.com
|
||||||
L: linux-acpi@vger.kernel.org
|
L: linux-acpi@vger.kernel.org
|
||||||
W: http://acpi.sourceforge.net/
|
W: http://www.lesswatts.org/projects/acpi/
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
ACPI VIDEO DRIVER
|
ACPI VIDEO DRIVER
|
||||||
P: Rui Zhang
|
P: Rui Zhang
|
||||||
M: rui.zhang@intel.com
|
M: rui.zhang@intel.com
|
||||||
L: linux-acpi@vger.kernel.org
|
L: linux-acpi@vger.kernel.org
|
||||||
W: http://acpi.sourceforge.net/
|
W: http://www.lesswatts.org/projects/acpi/
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
ACPI WMI DRIVER
|
ACPI WMI DRIVER
|
||||||
@ -274,7 +274,7 @@ S: Maintained
|
|||||||
|
|
||||||
AD1889 ALSA SOUND DRIVER
|
AD1889 ALSA SOUND DRIVER
|
||||||
P: Kyle McMartin
|
P: Kyle McMartin
|
||||||
M: kyle@parisc-linux.org
|
M: kyle@mcmartin.ca
|
||||||
P: Thibaut Varene
|
P: Thibaut Varene
|
||||||
M: T-Bone@parisc-linux.org
|
M: T-Bone@parisc-linux.org
|
||||||
W: http://wiki.parisc-linux.org/AD1889
|
W: http://wiki.parisc-linux.org/AD1889
|
||||||
@ -582,6 +582,12 @@ P: Dirk Opfer
|
|||||||
M: dirk@opfer-online.de
|
M: dirk@opfer-online.de
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
|
ARM/PALMTX SUPPORT
|
||||||
|
P: Marek Vasut
|
||||||
|
M: marek.vasut@gmail.com
|
||||||
|
W: http://hackndev.com
|
||||||
|
S: Maintained
|
||||||
|
|
||||||
ARM/PLEB SUPPORT
|
ARM/PLEB SUPPORT
|
||||||
P: Peter Chubb
|
P: Peter Chubb
|
||||||
M: pleb@gelato.unsw.edu.au
|
M: pleb@gelato.unsw.edu.au
|
||||||
@ -993,13 +999,6 @@ L: bonding-devel@lists.sourceforge.net
|
|||||||
W: http://sourceforge.net/projects/bonding/
|
W: http://sourceforge.net/projects/bonding/
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
BROADBAND PROCESSOR ARCHITECTURE
|
|
||||||
P: Arnd Bergmann
|
|
||||||
M: arnd@arndb.de
|
|
||||||
L: linuxppc-dev@ozlabs.org
|
|
||||||
W: http://www.penguinppc.org/ppc64/
|
|
||||||
S: Supported
|
|
||||||
|
|
||||||
BROADCOM B44 10/100 ETHERNET DRIVER
|
BROADCOM B44 10/100 ETHERNET DRIVER
|
||||||
P: Gary Zambrano
|
P: Gary Zambrano
|
||||||
M: zambrano@broadcom.com
|
M: zambrano@broadcom.com
|
||||||
@ -1013,8 +1012,8 @@ L: netdev@vger.kernel.org
|
|||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
|
BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
|
||||||
P: Eliezer Tamir
|
P: Eilon Greenstein
|
||||||
M: eliezert@broadcom.com
|
M: eilong@broadcom.com
|
||||||
L: netdev@vger.kernel.org
|
L: netdev@vger.kernel.org
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
@ -1063,6 +1062,14 @@ L: linux-kernel@vger.kernel.org
|
|||||||
L: discuss@x86-64.org
|
L: discuss@x86-64.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
|
CELL BROADBAND ENGINE ARCHITECTURE
|
||||||
|
P: Arnd Bergmann
|
||||||
|
M: arnd@arndb.de
|
||||||
|
L: linuxppc-dev@ozlabs.org
|
||||||
|
L: cbe-oss-dev@ozlabs.org
|
||||||
|
W: http://www.ibm.com/developerworks/power/cell/
|
||||||
|
S: Supported
|
||||||
|
|
||||||
CFAG12864B LCD DRIVER
|
CFAG12864B LCD DRIVER
|
||||||
P: Miguel Ojeda Sandonis
|
P: Miguel Ojeda Sandonis
|
||||||
M: maxextreme@gmail.com
|
M: maxextreme@gmail.com
|
||||||
@ -1212,6 +1219,7 @@ M: pj@sgi.com
|
|||||||
M: menage@google.com
|
M: menage@google.com
|
||||||
L: linux-kernel@vger.kernel.org
|
L: linux-kernel@vger.kernel.org
|
||||||
W: http://www.bullopensource.org/cpuset/
|
W: http://www.bullopensource.org/cpuset/
|
||||||
|
W: http://oss.sgi.com/projects/cpusets/
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
CRAMFS FILESYSTEM
|
CRAMFS FILESYSTEM
|
||||||
@ -1250,6 +1258,20 @@ L: video4linux-list@redhat.com
|
|||||||
W: http://linuxtv.org
|
W: http://linuxtv.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
|
CXGB3 ETHERNET DRIVER (CXGB3)
|
||||||
|
P: Divy Le Ray
|
||||||
|
M: divy@chelsio.com
|
||||||
|
L: netdev@vger.kernel.org
|
||||||
|
W: http://www.chelsio.com
|
||||||
|
S: Supported
|
||||||
|
|
||||||
|
CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
|
||||||
|
P: Steve Wise
|
||||||
|
M: swise@chelsio.com
|
||||||
|
L: general@lists.openfabrics.org
|
||||||
|
W: http://www.openfabrics.org
|
||||||
|
S: Supported
|
||||||
|
|
||||||
CYBERPRO FB DRIVER
|
CYBERPRO FB DRIVER
|
||||||
P: Russell King
|
P: Russell King
|
||||||
M: rmk@arm.linux.org.uk
|
M: rmk@arm.linux.org.uk
|
||||||
@ -1607,7 +1629,7 @@ ETHERNET BRIDGE
|
|||||||
P: Stephen Hemminger
|
P: Stephen Hemminger
|
||||||
M: shemminger@linux-foundation.org
|
M: shemminger@linux-foundation.org
|
||||||
L: bridge@lists.linux-foundation.org
|
L: bridge@lists.linux-foundation.org
|
||||||
W: http://bridge.sourceforge.net/
|
W: http://www.linux-foundation.org/en/Net:Bridge
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
ETHERTEAM 16I DRIVER
|
ETHERTEAM 16I DRIVER
|
||||||
@ -1656,8 +1678,10 @@ W: http://linux-fbdev.sourceforge.net/
|
|||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
FREESCALE DMA DRIVER
|
FREESCALE DMA DRIVER
|
||||||
P; Zhang Wei
|
P: Li Yang
|
||||||
M: wei.zhang@freescale.com
|
M: leoli@freescale.com
|
||||||
|
P: Zhang Wei
|
||||||
|
M: zw@zh-kernel.org
|
||||||
L: linuxppc-embedded@ozlabs.org
|
L: linuxppc-embedded@ozlabs.org
|
||||||
L: linux-kernel@vger.kernel.org
|
L: linux-kernel@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
@ -1821,7 +1845,7 @@ S: Maintained
|
|||||||
|
|
||||||
HARMONY SOUND DRIVER
|
HARMONY SOUND DRIVER
|
||||||
P: Kyle McMartin
|
P: Kyle McMartin
|
||||||
M: kyle@parisc-linux.org
|
M: kyle@mcmartin.ca
|
||||||
L: linux-parisc@vger.kernel.org
|
L: linux-parisc@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
@ -2340,7 +2364,8 @@ S: Maintained
|
|||||||
KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
|
KERNEL BUILD (kbuild: Makefile, scripts/Makefile.*)
|
||||||
P: Sam Ravnborg
|
P: Sam Ravnborg
|
||||||
M: sam@ravnborg.org
|
M: sam@ravnborg.org
|
||||||
T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild.git
|
T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild-next.git
|
||||||
|
T: git kernel.org:/pub/scm/linux/kernel/git/sam/kbuild-fixes.git
|
||||||
L: linux-kbuild@vger.kernel.org
|
L: linux-kbuild@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
@ -2362,24 +2387,24 @@ S: Supported
|
|||||||
KERNEL VIRTUAL MACHINE (KVM)
|
KERNEL VIRTUAL MACHINE (KVM)
|
||||||
P: Avi Kivity
|
P: Avi Kivity
|
||||||
M: avi@qumranet.com
|
M: avi@qumranet.com
|
||||||
L: kvm-devel@lists.sourceforge.net
|
L: kvm@vger.kernel.org
|
||||||
W: kvm.sourceforge.net
|
W: http://kvm.qumranet.com
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
|
KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
|
||||||
P: Hollis Blanchard
|
P: Hollis Blanchard
|
||||||
M: hollisb@us.ibm.com
|
M: hollisb@us.ibm.com
|
||||||
L: kvm-ppc-devel@lists.sourceforge.net
|
L: kvm-ppc@vger.kernel.org
|
||||||
W: kvm.sourceforge.net
|
W: http://kvm.qumranet.com
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
KERNEL VIRTUAL MACHINE For Itanium(KVM/IA64)
|
KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
|
||||||
P: Anthony Xu
|
P: Anthony Xu
|
||||||
M: anthony.xu@intel.com
|
M: anthony.xu@intel.com
|
||||||
P: Xiantao Zhang
|
P: Xiantao Zhang
|
||||||
M: xiantao.zhang@intel.com
|
M: xiantao.zhang@intel.com
|
||||||
L: kvm-ia64-devel@lists.sourceforge.net
|
L: kvm-ia64@vger.kernel.org
|
||||||
W: kvm.sourceforge.net
|
W: http://kvm.qumranet.com
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
|
KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
|
||||||
@ -2558,7 +2583,6 @@ LINUX SECURITY MODULE (LSM) FRAMEWORK
|
|||||||
P: Chris Wright
|
P: Chris Wright
|
||||||
M: chrisw@sous-sol.org
|
M: chrisw@sous-sol.org
|
||||||
L: linux-security-module@vger.kernel.org
|
L: linux-security-module@vger.kernel.org
|
||||||
W: http://lsm.immunix.org
|
|
||||||
T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
|
T: git kernel.org:/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
@ -2830,6 +2854,15 @@ M: jirislaby@gmail.com
|
|||||||
L: linux-kernel@vger.kernel.org
|
L: linux-kernel@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
|
MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
|
||||||
|
P: Andrew Gallatin
|
||||||
|
M: gallatin@myri.com
|
||||||
|
P: Brice Goglin
|
||||||
|
M: brice@myri.com
|
||||||
|
L: netdev@vger.kernel.org
|
||||||
|
W: http://www.myri.com/scs/download-Myri10GE.html
|
||||||
|
S: Supported
|
||||||
|
|
||||||
NATSEMI ETHERNET DRIVER (DP8381x)
|
NATSEMI ETHERNET DRIVER (DP8381x)
|
||||||
P: Tim Hockin
|
P: Tim Hockin
|
||||||
M: thockin@hockin.org
|
M: thockin@hockin.org
|
||||||
@ -2850,8 +2883,8 @@ S: Maintained
|
|||||||
NETEFFECT IWARP RNIC DRIVER (IW_NES)
|
NETEFFECT IWARP RNIC DRIVER (IW_NES)
|
||||||
P: Faisal Latif
|
P: Faisal Latif
|
||||||
M: flatif@neteffect.com
|
M: flatif@neteffect.com
|
||||||
P: Nishi Gupta
|
P: Chien Tung
|
||||||
M: ngupta@neteffect.com
|
M: ctung@neteffect.com
|
||||||
P: Glenn Streiff
|
P: Glenn Streiff
|
||||||
M: gstreiff@neteffect.com
|
M: gstreiff@neteffect.com
|
||||||
L: general@lists.openfabrics.org
|
L: general@lists.openfabrics.org
|
||||||
@ -3105,7 +3138,7 @@ S: Maintained
|
|||||||
|
|
||||||
PARISC ARCHITECTURE
|
PARISC ARCHITECTURE
|
||||||
P: Kyle McMartin
|
P: Kyle McMartin
|
||||||
M: kyle@parisc-linux.org
|
M: kyle@mcmartin.ca
|
||||||
P: Matthew Wilcox
|
P: Matthew Wilcox
|
||||||
M: matthew@wil.cx
|
M: matthew@wil.cx
|
||||||
P: Grant Grundler
|
P: Grant Grundler
|
||||||
@ -3143,7 +3176,7 @@ PCI ERROR RECOVERY
|
|||||||
P: Linas Vepstas
|
P: Linas Vepstas
|
||||||
M: linas@austin.ibm.com
|
M: linas@austin.ibm.com
|
||||||
L: linux-kernel@vger.kernel.org
|
L: linux-kernel@vger.kernel.org
|
||||||
L: linux-pci@atrey.karlin.mff.cuni.cz
|
L: linux-pci@vger.kernel.org
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
PCI SUBSYSTEM
|
PCI SUBSYSTEM
|
||||||
@ -3249,7 +3282,7 @@ S: Maintained
|
|||||||
|
|
||||||
PPP OVER ETHERNET
|
PPP OVER ETHERNET
|
||||||
P: Michal Ostrowski
|
P: Michal Ostrowski
|
||||||
M: mostrows@speakeasy.net
|
M: mostrows@earthlink.net
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
PPP OVER L2TP
|
PPP OVER L2TP
|
||||||
@ -3314,9 +3347,11 @@ L: video4linux-list@redhat.com
|
|||||||
W: http://www.isely.net/pvrusb2/
|
W: http://www.isely.net/pvrusb2/
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
PXA2xx SUPPORT
|
PXA2xx/PXA3xx SUPPORT
|
||||||
P: Nicolas Pitre
|
P: Eric Miao
|
||||||
M: nico@cam.org
|
M: eric.miao@marvell.com
|
||||||
|
P: Russell King
|
||||||
|
M: linux@arm.linux.org.uk
|
||||||
L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
|
L: linux-arm-kernel@lists.arm.linux.org.uk (subscribers-only)
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
@ -3423,10 +3458,7 @@ L: rtc-linux@googlegroups.com
|
|||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
REISERFS FILE SYSTEM
|
REISERFS FILE SYSTEM
|
||||||
P: Hans Reiser
|
|
||||||
M: reiserfs-dev@namesys.com
|
|
||||||
L: reiserfs-devel@vger.kernel.org
|
L: reiserfs-devel@vger.kernel.org
|
||||||
W: http://www.namesys.com
|
|
||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
RFKILL
|
RFKILL
|
||||||
@ -3646,13 +3678,6 @@ M: romieu@fr.zoreil.com
|
|||||||
L: netdev@vger.kernel.org
|
L: netdev@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
SIS 5513 IDE CONTROLLER DRIVER
|
|
||||||
P: Lionel Bouton
|
|
||||||
M: Lionel.Bouton@inet6.fr
|
|
||||||
W: http://inet6.dyn.dhs.org/sponsoring/sis5513/index.html
|
|
||||||
W: http://gyver.homeip.net/sis5513/index.html
|
|
||||||
S: Maintained
|
|
||||||
|
|
||||||
SIS 900/7016 FAST ETHERNET DRIVER
|
SIS 900/7016 FAST ETHERNET DRIVER
|
||||||
P: Daniele Venzano
|
P: Daniele Venzano
|
||||||
M: venza@brownhat.org
|
M: venza@brownhat.org
|
||||||
@ -3777,6 +3802,14 @@ M: dbrownell@users.sourceforge.net
|
|||||||
L: spi-devel-general@lists.sourceforge.net
|
L: spi-devel-general@lists.sourceforge.net
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
|
SPU FILE SYSTEM
|
||||||
|
P: Jeremy Kerr
|
||||||
|
M: jk@ozlabs.org
|
||||||
|
L: linuxppc-dev@ozlabs.org
|
||||||
|
L: cbe-oss-dev@ozlabs.org
|
||||||
|
W: http://www.ibm.com/developerworks/power/cell/
|
||||||
|
S: Supported
|
||||||
|
|
||||||
STABLE BRANCH:
|
STABLE BRANCH:
|
||||||
P: Greg Kroah-Hartman
|
P: Greg Kroah-Hartman
|
||||||
M: greg@kroah.com
|
M: greg@kroah.com
|
||||||
@ -4010,7 +4043,7 @@ TULIP NETWORK DRIVERS
|
|||||||
P: Grant Grundler
|
P: Grant Grundler
|
||||||
M: grundler@parisc-linux.org
|
M: grundler@parisc-linux.org
|
||||||
P: Kyle McMartin
|
P: Kyle McMartin
|
||||||
M: kyle@parisc-linux.org
|
M: kyle@mcmartin.ca
|
||||||
L: netdev@vger.kernel.org
|
L: netdev@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
@ -4032,12 +4065,41 @@ M: ballabio_dario@emc.com
|
|||||||
L: linux-scsi@vger.kernel.org
|
L: linux-scsi@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
|
UCLINUX (AND M68KNOMMU)
|
||||||
|
P: Greg Ungerer
|
||||||
|
M: gerg@uclinux.org
|
||||||
|
W: http://www.uclinux.org/
|
||||||
|
L: uclinux-dev@uclinux.org (subscribers-only)
|
||||||
|
S: Maintained
|
||||||
|
|
||||||
|
UCLINUX FOR NEC V850
|
||||||
|
P: Miles Bader
|
||||||
|
|
||||||
|
UCLINUX FOR RENESAS H8/300
|
||||||
|
P: Yoshinori Sato
|
||||||
|
M: ysato@users.sourceforge.jp
|
||||||
|
W: http://uclinux-h8.sourceforge.jp/
|
||||||
|
S: Supported
|
||||||
|
|
||||||
UDF FILESYSTEM
|
UDF FILESYSTEM
|
||||||
P: Jan Kara
|
P: Jan Kara
|
||||||
M: jack@suse.cz
|
M: jack@suse.cz
|
||||||
W: http://linux-udf.sourceforge.net
|
W: http://linux-udf.sourceforge.net
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
|
UFS FILESYSTEM
|
||||||
|
P: Evgeniy Dushistov
|
||||||
|
M: dushistov@mail.ru
|
||||||
|
L: linux-kernel@vger.kernel.org
|
||||||
|
S: Maintained
|
||||||
|
|
||||||
|
UltraSPARC (sparc64):
|
||||||
|
P: David S. Miller
|
||||||
|
M: davem@davemloft.net
|
||||||
|
L: sparclinux@vger.kernel.org
|
||||||
|
T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
|
||||||
|
S: Maintained
|
||||||
|
|
||||||
UNIFORM CDROM DRIVER
|
UNIFORM CDROM DRIVER
|
||||||
P: Jens Axboe
|
P: Jens Axboe
|
||||||
M: axboe@kernel.dk
|
M: axboe@kernel.dk
|
||||||
@ -4084,6 +4146,13 @@ L: netdev@vger.kernel.org
|
|||||||
W: http://www.linux-usb.org/usbnet
|
W: http://www.linux-usb.org/usbnet
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
|
USB DIAMOND RIO500 DRIVER
|
||||||
|
P: Cesar Miquel
|
||||||
|
M: miquel@df.uba.ar
|
||||||
|
L: rio500-users@lists.sourceforge.net
|
||||||
|
W: http://rio500.sourceforge.net
|
||||||
|
S: Maintained
|
||||||
|
|
||||||
USB EHCI DRIVER
|
USB EHCI DRIVER
|
||||||
P: David Brownell
|
P: David Brownell
|
||||||
M: dbrownell@users.sourceforge.net
|
M: dbrownell@users.sourceforge.net
|
||||||
@ -4315,6 +4384,14 @@ M: gregkh@suse.de
|
|||||||
L: linux-kernel@vger.kernel.org
|
L: linux-kernel@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
|
UTIL-LINUX-NG PACKAGE
|
||||||
|
P: Karel Zak
|
||||||
|
M: kzak@redhat.com
|
||||||
|
L: util-linux-ng@vger.kernel.org
|
||||||
|
W: http://kernel.org/~kzak/util-linux-ng/
|
||||||
|
T: git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
|
||||||
|
S: Maintained
|
||||||
|
|
||||||
VFAT/FAT/MSDOS FILESYSTEM:
|
VFAT/FAT/MSDOS FILESYSTEM:
|
||||||
P: OGAWA Hirofumi
|
P: OGAWA Hirofumi
|
||||||
M: hirofumi@mail.parknet.co.jp
|
M: hirofumi@mail.parknet.co.jp
|
||||||
@ -4338,42 +4415,6 @@ M: romieu@fr.zoreil.com
|
|||||||
L: netdev@vger.kernel.org
|
L: netdev@vger.kernel.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
UCLINUX (AND M68KNOMMU)
|
|
||||||
P: Greg Ungerer
|
|
||||||
M: gerg@uclinux.org
|
|
||||||
W: http://www.uclinux.org/
|
|
||||||
L: uclinux-dev@uclinux.org (subscribers-only)
|
|
||||||
S: Maintained
|
|
||||||
|
|
||||||
UCLINUX FOR NEC V850
|
|
||||||
P: Miles Bader
|
|
||||||
|
|
||||||
UCLINUX FOR RENESAS H8/300
|
|
||||||
P: Yoshinori Sato
|
|
||||||
M: ysato@users.sourceforge.jp
|
|
||||||
W: http://uclinux-h8.sourceforge.jp/
|
|
||||||
S: Supported
|
|
||||||
|
|
||||||
UFS FILESYSTEM
|
|
||||||
P: Evgeniy Dushistov
|
|
||||||
M: dushistov@mail.ru
|
|
||||||
L: linux-kernel@vger.kernel.org
|
|
||||||
S: Maintained
|
|
||||||
|
|
||||||
UltraSPARC (sparc64):
|
|
||||||
P: David S. Miller
|
|
||||||
M: davem@davemloft.net
|
|
||||||
L: sparclinux@vger.kernel.org
|
|
||||||
T: git kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6.git
|
|
||||||
S: Maintained
|
|
||||||
|
|
||||||
USB DIAMOND RIO500 DRIVER
|
|
||||||
P: Cesar Miquel
|
|
||||||
M: miquel@df.uba.ar
|
|
||||||
L: rio500-users@lists.sourceforge.net
|
|
||||||
W: http://rio500.sourceforge.net
|
|
||||||
S: Maintained
|
|
||||||
|
|
||||||
VIDEO FOR LINUX
|
VIDEO FOR LINUX
|
||||||
P: Mauro Carvalho Chehab
|
P: Mauro Carvalho Chehab
|
||||||
M: mchehab@infradead.org
|
M: mchehab@infradead.org
|
||||||
@ -4407,10 +4448,10 @@ M: johnpol@2ka.mipt.ru
|
|||||||
S: Maintained
|
S: Maintained
|
||||||
|
|
||||||
W83791D HARDWARE MONITORING DRIVER
|
W83791D HARDWARE MONITORING DRIVER
|
||||||
P: Charles Spirakis
|
P: Marc Hulsman
|
||||||
M: bezaur@gmail.com
|
M: m.hulsman@tudelft.nl
|
||||||
L: lm-sensors@lm-sensors.org
|
L: lm-sensors@lm-sensors.org
|
||||||
S: Odd Fixes
|
S: Maintained
|
||||||
|
|
||||||
W83793 HARDWARE MONITORING DRIVER
|
W83793 HARDWARE MONITORING DRIVER
|
||||||
P: Rudolf Marek
|
P: Rudolf Marek
|
||||||
|
7
Makefile
7
Makefile
@ -1,8 +1,8 @@
|
|||||||
VERSION = 2
|
VERSION = 2
|
||||||
PATCHLEVEL = 6
|
PATCHLEVEL = 6
|
||||||
SUBLEVEL = 26
|
SUBLEVEL = 26
|
||||||
EXTRAVERSION = -rc3
|
EXTRAVERSION = -rc8
|
||||||
NAME = Funky Weasel is Jiggy wit it
|
NAME = Rotary Wombat
|
||||||
|
|
||||||
# *DOCUMENTATION*
|
# *DOCUMENTATION*
|
||||||
# To see a list of typical targets execute "make help"
|
# To see a list of typical targets execute "make help"
|
||||||
@ -1114,6 +1114,7 @@ MRPROPER_DIRS += include/config include2 usr/include
|
|||||||
MRPROPER_FILES += .config .config.old include/asm .version .old_version \
|
MRPROPER_FILES += .config .config.old include/asm .version .old_version \
|
||||||
include/linux/autoconf.h include/linux/version.h \
|
include/linux/autoconf.h include/linux/version.h \
|
||||||
include/linux/utsrelease.h \
|
include/linux/utsrelease.h \
|
||||||
|
include/linux/bounds.h include/asm*/asm-offsets.h \
|
||||||
Module.symvers tags TAGS cscope*
|
Module.symvers tags TAGS cscope*
|
||||||
|
|
||||||
# clean - Delete most, but leave enough to build external modules
|
# clean - Delete most, but leave enough to build external modules
|
||||||
@ -1431,7 +1432,7 @@ define xtags
|
|||||||
elif $1 --version 2>&1 | grep -iq emacs; then \
|
elif $1 --version 2>&1 | grep -iq emacs; then \
|
||||||
$(all-sources) | xargs $1 -a; \
|
$(all-sources) | xargs $1 -a; \
|
||||||
$(all-kconfigs) | xargs $1 -a \
|
$(all-kconfigs) | xargs $1 -a \
|
||||||
--regex='/^[ \t]*(menu|)config[ \t]+\([a-zA-Z0-9_]+\)/\2/'; \
|
--regex='/^[ \t]*\(\(menu\)*config\)[ \t]+\([a-zA-Z0-9_]+\)/\3/'; \
|
||||||
$(all-defconfigs) | xargs -r $1 -a \
|
$(all-defconfigs) | xargs -r $1 -a \
|
||||||
--regex='/^#?[ \t]?\(CONFIG_[a-zA-Z0-9_]+\)/\1/'; \
|
--regex='/^#?[ \t]?\(CONFIG_[a-zA-Z0-9_]+\)/\1/'; \
|
||||||
else \
|
else \
|
||||||
|
@ -13,6 +13,7 @@ NM := $(NM) -B
|
|||||||
LDFLAGS_vmlinux := -static -N #-relax
|
LDFLAGS_vmlinux := -static -N #-relax
|
||||||
CHECKFLAGS += -D__alpha__ -m64
|
CHECKFLAGS += -D__alpha__ -m64
|
||||||
cflags-y := -pipe -mno-fp-regs -ffixed-8 -msmall-data
|
cflags-y := -pipe -mno-fp-regs -ffixed-8 -msmall-data
|
||||||
|
cflags-y += $(call cc-option, -fno-jump-tables)
|
||||||
|
|
||||||
cpuflags-$(CONFIG_ALPHA_EV4) := -mcpu=ev4
|
cpuflags-$(CONFIG_ALPHA_EV4) := -mcpu=ev4
|
||||||
cpuflags-$(CONFIG_ALPHA_EV5) := -mcpu=ev5
|
cpuflags-$(CONFIG_ALPHA_EV5) := -mcpu=ev5
|
||||||
|
@ -74,6 +74,8 @@
|
|||||||
# define DBG(args)
|
# define DBG(args)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
DEFINE_SPINLOCK(t2_hae_lock);
|
||||||
|
|
||||||
static volatile unsigned int t2_mcheck_any_expected;
|
static volatile unsigned int t2_mcheck_any_expected;
|
||||||
static volatile unsigned int t2_mcheck_last_taken;
|
static volatile unsigned int t2_mcheck_last_taken;
|
||||||
|
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
|
|
||||||
|
|
||||||
static struct fs_struct init_fs = INIT_FS;
|
static struct fs_struct init_fs = INIT_FS;
|
||||||
static struct files_struct init_files = INIT_FILES;
|
|
||||||
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
||||||
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
||||||
struct mm_struct init_mm = INIT_MM(init_mm);
|
struct mm_struct init_mm = INIT_MM(init_mm);
|
||||||
|
@ -71,6 +71,23 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82378, quirk_i
|
|||||||
static void __init
|
static void __init
|
||||||
quirk_cypress(struct pci_dev *dev)
|
quirk_cypress(struct pci_dev *dev)
|
||||||
{
|
{
|
||||||
|
/* The Notorious Cy82C693 chip. */
|
||||||
|
|
||||||
|
/* The generic legacy mode IDE fixup in drivers/pci/probe.c
|
||||||
|
doesn't work correctly with the Cypress IDE controller as
|
||||||
|
it has non-standard register layout. Fix that. */
|
||||||
|
if (dev->class >> 8 == PCI_CLASS_STORAGE_IDE) {
|
||||||
|
dev->resource[2].start = dev->resource[3].start = 0;
|
||||||
|
dev->resource[2].end = dev->resource[3].end = 0;
|
||||||
|
dev->resource[2].flags = dev->resource[3].flags = 0;
|
||||||
|
if (PCI_FUNC(dev->devfn) == 2) {
|
||||||
|
dev->resource[0].start = 0x170;
|
||||||
|
dev->resource[0].end = 0x177;
|
||||||
|
dev->resource[1].start = 0x376;
|
||||||
|
dev->resource[1].end = 0x376;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* The Cypress bridge responds on the PCI bus in the address range
|
/* The Cypress bridge responds on the PCI bus in the address range
|
||||||
0xffff0000-0xffffffff (conventional x86 BIOS ROM). There is no
|
0xffff0000-0xffffffff (conventional x86 BIOS ROM). There is no
|
||||||
way to turn this off. The bridge also supports several extended
|
way to turn this off. The bridge also supports several extended
|
||||||
|
@ -447,7 +447,7 @@ struct unaligned_stat {
|
|||||||
|
|
||||||
|
|
||||||
/* Macro for exception fixup code to access integer registers. */
|
/* Macro for exception fixup code to access integer registers. */
|
||||||
#define una_reg(r) (regs->regs[(r) >= 16 && (r) <= 18 ? (r)+19 : (r)])
|
#define una_reg(r) (_regs[(r) >= 16 && (r) <= 18 ? (r)+19 : (r)])
|
||||||
|
|
||||||
|
|
||||||
asmlinkage void
|
asmlinkage void
|
||||||
@ -456,6 +456,7 @@ do_entUna(void * va, unsigned long opcode, unsigned long reg,
|
|||||||
{
|
{
|
||||||
long error, tmp1, tmp2, tmp3, tmp4;
|
long error, tmp1, tmp2, tmp3, tmp4;
|
||||||
unsigned long pc = regs->pc - 4;
|
unsigned long pc = regs->pc - 4;
|
||||||
|
unsigned long *_regs = regs->regs;
|
||||||
const struct exception_table_entry *fixup;
|
const struct exception_table_entry *fixup;
|
||||||
|
|
||||||
unaligned[0].count++;
|
unaligned[0].count++;
|
||||||
|
@ -33,10 +33,6 @@ __XScale_start:
|
|||||||
bic r0, r0, #0x1000 @ clear Icache
|
bic r0, r0, #0x1000 @ clear Icache
|
||||||
mcr p15, 0, r0, c1, c0, 0
|
mcr p15, 0, r0, c1, c0, 0
|
||||||
|
|
||||||
#ifdef CONFIG_ARCH_COTULLA_IDP
|
|
||||||
mov r7, #MACH_TYPE_COTULLA_IDP
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef CONFIG_ARCH_IXP2000
|
#ifdef CONFIG_ARCH_IXP2000
|
||||||
mov r1, #-1
|
mov r1, #-1
|
||||||
mov r0, #0xd6000000
|
mov r0, #0xd6000000
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
#include <asm/pgtable.h>
|
#include <asm/pgtable.h>
|
||||||
|
|
||||||
static struct fs_struct init_fs = INIT_FS;
|
static struct fs_struct init_fs = INIT_FS;
|
||||||
static struct files_struct init_files = INIT_FILES;
|
|
||||||
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
||||||
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
||||||
struct mm_struct init_mm = INIT_MM(init_mm);
|
struct mm_struct init_mm = INIT_MM(init_mm);
|
||||||
|
@ -16,16 +16,32 @@
|
|||||||
#include <asm/mach/arch.h>
|
#include <asm/mach/arch.h>
|
||||||
#include <asm/arch/at91x40.h>
|
#include <asm/arch/at91x40.h>
|
||||||
#include <asm/arch/at91_st.h>
|
#include <asm/arch/at91_st.h>
|
||||||
|
#include <asm/arch/timex.h>
|
||||||
#include "generic.h"
|
#include "generic.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This is used in the gpio code, stub locally.
|
* Export the clock functions for the AT91X40. Some external code common
|
||||||
|
* to all AT91 family parts relys on this, like the gpio and serial support.
|
||||||
*/
|
*/
|
||||||
int clk_enable(struct clk *clk)
|
int clk_enable(struct clk *clk)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void clk_disable(struct clk *clk)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
unsigned long clk_get_rate(struct clk *clk)
|
||||||
|
{
|
||||||
|
return AT91X40_MASTER_CLOCK;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct clk *clk_get(struct device *dev, const char *id)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
void __init at91x40_initialize(unsigned long main_clock)
|
void __init at91x40_initialize(unsigned long main_clock)
|
||||||
{
|
{
|
||||||
at91_extern_irq = (1 << AT91X40_ID_IRQ0) | (1 << AT91X40_ID_IRQ1)
|
at91_extern_irq = (1 << AT91X40_ID_IRQ0) | (1 << AT91X40_ID_IRQ1)
|
||||||
|
@ -369,7 +369,8 @@ static int impd1_probe(struct lm_device *dev)
|
|||||||
|
|
||||||
lm_set_drvdata(dev, impd1);
|
lm_set_drvdata(dev, impd1);
|
||||||
|
|
||||||
printk("IM-PD1 found at 0x%08lx\n", dev->resource.start);
|
printk("IM-PD1 found at 0x%08lx\n",
|
||||||
|
(unsigned long)dev->resource.start);
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(impd1->vcos); i++) {
|
for (i = 0; i < ARRAY_SIZE(impd1->vcos); i++) {
|
||||||
impd1->vcos[i].owner = THIS_MODULE,
|
impd1->vcos[i].owner = THIS_MODULE,
|
||||||
|
@ -405,7 +405,6 @@ v3_pci_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
|
|||||||
addr, fsr, pc, instr, __raw_readl(SC_LBFADDR), __raw_readl(SC_LBFCODE) & 255,
|
addr, fsr, pc, instr, __raw_readl(SC_LBFADDR), __raw_readl(SC_LBFCODE) & 255,
|
||||||
v3_readb(V3_LB_ISTAT));
|
v3_readb(V3_LB_ISTAT));
|
||||||
printk(KERN_DEBUG "%s", buf);
|
printk(KERN_DEBUG "%s", buf);
|
||||||
printascii(buf);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
v3_writeb(V3_LB_ISTAT, 0);
|
v3_writeb(V3_LB_ISTAT, 0);
|
||||||
@ -447,6 +446,7 @@ static irqreturn_t v3_irq(int dummy, void *devid)
|
|||||||
unsigned long pc = instruction_pointer(regs);
|
unsigned long pc = instruction_pointer(regs);
|
||||||
unsigned long instr = *(unsigned long *)pc;
|
unsigned long instr = *(unsigned long *)pc;
|
||||||
char buf[128];
|
char buf[128];
|
||||||
|
extern void printascii(const char *);
|
||||||
|
|
||||||
sprintf(buf, "V3 int %d: pc=0x%08lx [%08lx] LBFADDR=%08x LBFCODE=%02x "
|
sprintf(buf, "V3 int %d: pc=0x%08lx [%08lx] LBFADDR=%08x LBFCODE=%02x "
|
||||||
"ISTAT=%02x\n", IRQ_AP_V3INT, pc, instr,
|
"ISTAT=%02x\n", IRQ_AP_V3INT, pc, instr,
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
#include <linux/mtd/mtd.h>
|
#include <linux/mtd/mtd.h>
|
||||||
#include <linux/mtd/partitions.h>
|
#include <linux/mtd/partitions.h>
|
||||||
#include <linux/spi/spi.h>
|
#include <linux/spi/spi.h>
|
||||||
#include <linux/spi/tsc2102.h>
|
|
||||||
#include <linux/interrupt.h>
|
#include <linux/interrupt.h>
|
||||||
#include <linux/apm-emulation.h>
|
#include <linux/apm-emulation.h>
|
||||||
|
|
||||||
@ -315,14 +314,6 @@ static void palmte_get_power_status(struct apm_power_info *info, int *battery)
|
|||||||
#define palmte_get_power_status NULL
|
#define palmte_get_power_status NULL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static struct tsc2102_config palmte_tsc2102_config = {
|
|
||||||
.use_internal = 0,
|
|
||||||
.monitor = TSC_BAT1 | TSC_AUX | TSC_TEMP,
|
|
||||||
.temp_at25c = { 2200, 2615 },
|
|
||||||
.apm_report = palmte_get_power_status,
|
|
||||||
.alsa_config = &palmte_alsa_config,
|
|
||||||
};
|
|
||||||
|
|
||||||
static struct omap_board_config_kernel palmte_config[] __initdata = {
|
static struct omap_board_config_kernel palmte_config[] __initdata = {
|
||||||
{ OMAP_TAG_USB, &palmte_usb_config },
|
{ OMAP_TAG_USB, &palmte_usb_config },
|
||||||
{ OMAP_TAG_MMC, &palmte_mmc_config },
|
{ OMAP_TAG_MMC, &palmte_mmc_config },
|
||||||
@ -336,7 +327,6 @@ static struct spi_board_info palmte_spi_info[] __initdata = {
|
|||||||
.bus_num = 2, /* uWire (officially) */
|
.bus_num = 2, /* uWire (officially) */
|
||||||
.chip_select = 0, /* As opposed to 3 */
|
.chip_select = 0, /* As opposed to 3 */
|
||||||
.irq = OMAP_GPIO_IRQ(PALMTE_PINTDAV_GPIO),
|
.irq = OMAP_GPIO_IRQ(PALMTE_PINTDAV_GPIO),
|
||||||
.platform_data = &palmte_tsc2102_config,
|
|
||||||
.max_speed_hz = 8000000,
|
.max_speed_hz = 8000000,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -189,7 +189,6 @@ config MACH_ARMCORE
|
|||||||
|
|
||||||
config MACH_MAGICIAN
|
config MACH_MAGICIAN
|
||||||
bool "Enable HTC Magician Support"
|
bool "Enable HTC Magician Support"
|
||||||
depends on ARCH_PXA
|
|
||||||
select PXA27x
|
select PXA27x
|
||||||
select IWMMXT
|
select IWMMXT
|
||||||
|
|
||||||
@ -199,6 +198,20 @@ config MACH_PCM027
|
|||||||
select IWMMXT
|
select IWMMXT
|
||||||
select PXA_SSP
|
select PXA_SSP
|
||||||
|
|
||||||
|
config ARCH_PXA_PALM
|
||||||
|
bool "PXA based Palm PDAs"
|
||||||
|
select HAVE_PWM
|
||||||
|
|
||||||
|
config MACH_PALMTX
|
||||||
|
bool "Palm T|X"
|
||||||
|
default y
|
||||||
|
depends on ARCH_PXA_PALM
|
||||||
|
select PXA27x
|
||||||
|
select IWMMXT
|
||||||
|
help
|
||||||
|
Say Y here if you intend to run this kernel on a Palm T|X
|
||||||
|
handheld computer.
|
||||||
|
|
||||||
config MACH_PCM990_BASEBOARD
|
config MACH_PCM990_BASEBOARD
|
||||||
bool "PHYTEC PCM-990 development board"
|
bool "PHYTEC PCM-990 development board"
|
||||||
select HAVE_PWM
|
select HAVE_PWM
|
||||||
|
@ -37,6 +37,7 @@ obj-$(CONFIG_MACH_TOSA) += tosa.o
|
|||||||
obj-$(CONFIG_MACH_EM_X270) += em-x270.o
|
obj-$(CONFIG_MACH_EM_X270) += em-x270.o
|
||||||
obj-$(CONFIG_MACH_MAGICIAN) += magician.o
|
obj-$(CONFIG_MACH_MAGICIAN) += magician.o
|
||||||
obj-$(CONFIG_ARCH_PXA_ESERIES) += eseries.o
|
obj-$(CONFIG_ARCH_PXA_ESERIES) += eseries.o
|
||||||
|
obj-$(CONFIG_MACH_PALMTX)+= palmtx.o
|
||||||
|
|
||||||
ifeq ($(CONFIG_MACH_ZYLONITE),y)
|
ifeq ($(CONFIG_MACH_ZYLONITE),y)
|
||||||
obj-y += zylonite.o
|
obj-y += zylonite.o
|
||||||
|
@ -60,7 +60,7 @@ static struct resource cmx270_dm9k_resource[] = {
|
|||||||
[2] = {
|
[2] = {
|
||||||
.start = CMX270_ETHIRQ,
|
.start = CMX270_ETHIRQ,
|
||||||
.end = CMX270_ETHIRQ,
|
.end = CMX270_ETHIRQ,
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ static struct resource em_x270_dm9k_resource[] = {
|
|||||||
[2] = {
|
[2] = {
|
||||||
.start = EM_X270_ETHIRQ,
|
.start = EM_X270_ETHIRQ,
|
||||||
.end = EM_X270_ETHIRQ,
|
.end = EM_X270_ETHIRQ,
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -17,17 +17,15 @@
|
|||||||
#include <linux/init.h>
|
#include <linux/init.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
#include <linux/delay.h>
|
#include <linux/delay.h>
|
||||||
|
#include <linux/gpio.h>
|
||||||
#include <linux/gpio_keys.h>
|
#include <linux/gpio_keys.h>
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
#include <linux/mfd/htc-egpio.h>
|
#include <linux/mfd/htc-egpio.h>
|
||||||
#include <linux/mfd/htc-pasic3.h>
|
#include <linux/mfd/htc-pasic3.h>
|
||||||
#include <linux/mtd/mtd.h>
|
|
||||||
#include <linux/mtd/map.h>
|
|
||||||
#include <linux/mtd/physmap.h>
|
#include <linux/mtd/physmap.h>
|
||||||
#include <linux/pda_power.h>
|
#include <linux/pda_power.h>
|
||||||
#include <linux/pwm_backlight.h>
|
#include <linux/pwm_backlight.h>
|
||||||
|
|
||||||
#include <asm/gpio.h>
|
|
||||||
#include <asm/hardware.h>
|
#include <asm/hardware.h>
|
||||||
#include <asm/mach-types.h>
|
#include <asm/mach-types.h>
|
||||||
#include <asm/mach/arch.h>
|
#include <asm/mach/arch.h>
|
||||||
@ -44,7 +42,7 @@
|
|||||||
#include "devices.h"
|
#include "devices.h"
|
||||||
#include "generic.h"
|
#include "generic.h"
|
||||||
|
|
||||||
static unsigned long magician_pin_config[] = {
|
static unsigned long magician_pin_config[] __initdata = {
|
||||||
|
|
||||||
/* SDRAM and Static Memory I/O Signals */
|
/* SDRAM and Static Memory I/O Signals */
|
||||||
GPIO20_nSDCS_2,
|
GPIO20_nSDCS_2,
|
||||||
@ -399,6 +397,7 @@ static struct platform_pwm_backlight_data backlight_data = {
|
|||||||
|
|
||||||
static struct platform_device backlight = {
|
static struct platform_device backlight = {
|
||||||
.name = "pwm-backlight",
|
.name = "pwm-backlight",
|
||||||
|
.id = -1,
|
||||||
.dev = {
|
.dev = {
|
||||||
.parent = &pxa27x_device_pwm0.dev,
|
.parent = &pxa27x_device_pwm0.dev,
|
||||||
.platform_data = &backlight_data,
|
.platform_data = &backlight_data,
|
||||||
@ -511,6 +510,37 @@ static struct platform_device pasic3 = {
|
|||||||
* External power
|
* External power
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
static int power_supply_init(struct device *dev)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = gpio_request(EGPIO_MAGICIAN_CABLE_STATE_AC, "CABLE_STATE_AC");
|
||||||
|
if (ret)
|
||||||
|
goto err_cs_ac;
|
||||||
|
ret = gpio_request(EGPIO_MAGICIAN_CABLE_STATE_USB, "CABLE_STATE_USB");
|
||||||
|
if (ret)
|
||||||
|
goto err_cs_usb;
|
||||||
|
ret = gpio_request(EGPIO_MAGICIAN_CHARGE_EN, "CHARGE_EN");
|
||||||
|
if (ret)
|
||||||
|
goto err_chg_en;
|
||||||
|
ret = gpio_request(GPIO30_MAGICIAN_nCHARGE_EN, "nCHARGE_EN");
|
||||||
|
if (!ret)
|
||||||
|
ret = gpio_direction_output(GPIO30_MAGICIAN_nCHARGE_EN, 0);
|
||||||
|
if (ret)
|
||||||
|
goto err_nchg_en;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
err_nchg_en:
|
||||||
|
gpio_free(EGPIO_MAGICIAN_CHARGE_EN);
|
||||||
|
err_chg_en:
|
||||||
|
gpio_free(EGPIO_MAGICIAN_CABLE_STATE_USB);
|
||||||
|
err_cs_usb:
|
||||||
|
gpio_free(EGPIO_MAGICIAN_CABLE_STATE_AC);
|
||||||
|
err_cs_ac:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
static int magician_is_ac_online(void)
|
static int magician_is_ac_online(void)
|
||||||
{
|
{
|
||||||
return gpio_get_value(EGPIO_MAGICIAN_CABLE_STATE_AC);
|
return gpio_get_value(EGPIO_MAGICIAN_CABLE_STATE_AC);
|
||||||
@ -527,14 +557,24 @@ static void magician_set_charge(int flags)
|
|||||||
gpio_set_value(EGPIO_MAGICIAN_CHARGE_EN, flags);
|
gpio_set_value(EGPIO_MAGICIAN_CHARGE_EN, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void power_supply_exit(struct device *dev)
|
||||||
|
{
|
||||||
|
gpio_free(GPIO30_MAGICIAN_nCHARGE_EN);
|
||||||
|
gpio_free(EGPIO_MAGICIAN_CHARGE_EN);
|
||||||
|
gpio_free(EGPIO_MAGICIAN_CABLE_STATE_USB);
|
||||||
|
gpio_free(EGPIO_MAGICIAN_CABLE_STATE_AC);
|
||||||
|
}
|
||||||
|
|
||||||
static char *magician_supplicants[] = {
|
static char *magician_supplicants[] = {
|
||||||
"ds2760-battery.0", "backup-battery"
|
"ds2760-battery.0", "backup-battery"
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct pda_power_pdata power_supply_info = {
|
static struct pda_power_pdata power_supply_info = {
|
||||||
|
.init = power_supply_init,
|
||||||
.is_ac_online = magician_is_ac_online,
|
.is_ac_online = magician_is_ac_online,
|
||||||
.is_usb_online = magician_is_usb_online,
|
.is_usb_online = magician_is_usb_online,
|
||||||
.set_charge = magician_set_charge,
|
.set_charge = magician_set_charge,
|
||||||
|
.exit = power_supply_exit,
|
||||||
.supplied_to = magician_supplicants,
|
.supplied_to = magician_supplicants,
|
||||||
.num_supplicants = ARRAY_SIZE(magician_supplicants),
|
.num_supplicants = ARRAY_SIZE(magician_supplicants),
|
||||||
};
|
};
|
||||||
|
416
arch/arm/mach-pxa/palmtx.c
Normal file
416
arch/arm/mach-pxa/palmtx.c
Normal file
@ -0,0 +1,416 @@
|
|||||||
|
/*
|
||||||
|
* Hardware definitions for PalmTX
|
||||||
|
*
|
||||||
|
* Author: Marek Vasut <marek.vasut@gmail.com>
|
||||||
|
*
|
||||||
|
* Based on work of:
|
||||||
|
* Alex Osborne <ato@meshy.org>
|
||||||
|
* Cristiano P. <cristianop@users.sourceforge.net>
|
||||||
|
* Jan Herman <2hp@seznam.cz>
|
||||||
|
* Michal Hrusecky
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License version 2 as
|
||||||
|
* published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* (find more info at www.hackndev.com)
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <linux/platform_device.h>
|
||||||
|
#include <linux/delay.h>
|
||||||
|
#include <linux/irq.h>
|
||||||
|
#include <linux/gpio_keys.h>
|
||||||
|
#include <linux/input.h>
|
||||||
|
#include <linux/pda_power.h>
|
||||||
|
#include <linux/pwm_backlight.h>
|
||||||
|
#include <linux/gpio.h>
|
||||||
|
|
||||||
|
#include <asm/mach-types.h>
|
||||||
|
#include <asm/mach/arch.h>
|
||||||
|
#include <asm/mach/map.h>
|
||||||
|
|
||||||
|
#include <asm/arch/audio.h>
|
||||||
|
#include <asm/arch/palmtx.h>
|
||||||
|
#include <asm/arch/mmc.h>
|
||||||
|
#include <asm/arch/pxafb.h>
|
||||||
|
#include <asm/arch/pxa-regs.h>
|
||||||
|
#include <asm/arch/mfp-pxa27x.h>
|
||||||
|
#include <asm/arch/irda.h>
|
||||||
|
#include <asm/arch/pxa27x_keypad.h>
|
||||||
|
#include <asm/arch/udc.h>
|
||||||
|
|
||||||
|
#include "generic.h"
|
||||||
|
#include "devices.h"
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* Pin configuration
|
||||||
|
******************************************************************************/
|
||||||
|
static unsigned long palmtx_pin_config[] __initdata = {
|
||||||
|
/* MMC */
|
||||||
|
GPIO32_MMC_CLK,
|
||||||
|
GPIO92_MMC_DAT_0,
|
||||||
|
GPIO109_MMC_DAT_1,
|
||||||
|
GPIO110_MMC_DAT_2,
|
||||||
|
GPIO111_MMC_DAT_3,
|
||||||
|
GPIO112_MMC_CMD,
|
||||||
|
|
||||||
|
/* AC97 */
|
||||||
|
GPIO28_AC97_BITCLK,
|
||||||
|
GPIO29_AC97_SDATA_IN_0,
|
||||||
|
GPIO30_AC97_SDATA_OUT,
|
||||||
|
GPIO31_AC97_SYNC,
|
||||||
|
|
||||||
|
/* IrDA */
|
||||||
|
GPIO46_FICP_RXD,
|
||||||
|
GPIO47_FICP_TXD,
|
||||||
|
|
||||||
|
/* PWM */
|
||||||
|
GPIO16_PWM0_OUT,
|
||||||
|
|
||||||
|
/* USB */
|
||||||
|
GPIO13_GPIO,
|
||||||
|
|
||||||
|
/* PCMCIA */
|
||||||
|
GPIO48_nPOE,
|
||||||
|
GPIO49_nPWE,
|
||||||
|
GPIO50_nPIOR,
|
||||||
|
GPIO51_nPIOW,
|
||||||
|
GPIO85_nPCE_1,
|
||||||
|
GPIO54_nPCE_2,
|
||||||
|
GPIO79_PSKTSEL,
|
||||||
|
GPIO55_nPREG,
|
||||||
|
GPIO56_nPWAIT,
|
||||||
|
GPIO57_nIOIS16,
|
||||||
|
};
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* SD/MMC card controller
|
||||||
|
******************************************************************************/
|
||||||
|
static int palmtx_mci_init(struct device *dev, irq_handler_t palmtx_detect_int,
|
||||||
|
void *data)
|
||||||
|
{
|
||||||
|
int err = 0;
|
||||||
|
|
||||||
|
/* Setup an interrupt for detecting card insert/remove events */
|
||||||
|
err = request_irq(IRQ_GPIO_PALMTX_SD_DETECT_N, palmtx_detect_int,
|
||||||
|
IRQF_DISABLED | IRQF_SAMPLE_RANDOM |
|
||||||
|
IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
|
||||||
|
"SD/MMC card detect", data);
|
||||||
|
if (err) {
|
||||||
|
printk(KERN_ERR "%s: cannot request SD/MMC card detect IRQ\n",
|
||||||
|
__func__);
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
err = gpio_request(GPIO_NR_PALMTX_SD_POWER, "SD_POWER");
|
||||||
|
if (err)
|
||||||
|
goto pwr_err;
|
||||||
|
|
||||||
|
err = gpio_request(GPIO_NR_PALMTX_SD_READONLY, "SD_READONLY");
|
||||||
|
if (err)
|
||||||
|
goto ro_err;
|
||||||
|
|
||||||
|
printk(KERN_DEBUG "%s: irq registered\n", __func__);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
ro_err:
|
||||||
|
gpio_free(GPIO_NR_PALMTX_SD_POWER);
|
||||||
|
pwr_err:
|
||||||
|
free_irq(IRQ_GPIO_PALMTX_SD_DETECT_N, data);
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void palmtx_mci_exit(struct device *dev, void *data)
|
||||||
|
{
|
||||||
|
gpio_free(GPIO_NR_PALMTX_SD_READONLY);
|
||||||
|
gpio_free(GPIO_NR_PALMTX_SD_POWER);
|
||||||
|
free_irq(IRQ_GPIO_PALMTX_SD_DETECT_N, data);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void palmtx_mci_power(struct device *dev, unsigned int vdd)
|
||||||
|
{
|
||||||
|
struct pxamci_platform_data *p_d = dev->platform_data;
|
||||||
|
gpio_set_value(GPIO_NR_PALMTX_SD_POWER, p_d->ocr_mask & (1 << vdd));
|
||||||
|
}
|
||||||
|
|
||||||
|
static int palmtx_mci_get_ro(struct device *dev)
|
||||||
|
{
|
||||||
|
return gpio_get_value(GPIO_NR_PALMTX_SD_READONLY);
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct pxamci_platform_data palmtx_mci_platform_data = {
|
||||||
|
.ocr_mask = MMC_VDD_32_33 | MMC_VDD_33_34,
|
||||||
|
.setpower = palmtx_mci_power,
|
||||||
|
.get_ro = palmtx_mci_get_ro,
|
||||||
|
.init = palmtx_mci_init,
|
||||||
|
.exit = palmtx_mci_exit,
|
||||||
|
};
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* GPIO keyboard
|
||||||
|
******************************************************************************/
|
||||||
|
static unsigned int palmtx_matrix_keys[] = {
|
||||||
|
KEY(0, 0, KEY_POWER),
|
||||||
|
KEY(0, 1, KEY_F1),
|
||||||
|
KEY(0, 2, KEY_ENTER),
|
||||||
|
|
||||||
|
KEY(1, 0, KEY_F2),
|
||||||
|
KEY(1, 1, KEY_F3),
|
||||||
|
KEY(1, 2, KEY_F4),
|
||||||
|
|
||||||
|
KEY(2, 0, KEY_UP),
|
||||||
|
KEY(2, 2, KEY_DOWN),
|
||||||
|
|
||||||
|
KEY(3, 0, KEY_RIGHT),
|
||||||
|
KEY(3, 2, KEY_LEFT),
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct pxa27x_keypad_platform_data palmtx_keypad_platform_data = {
|
||||||
|
.matrix_key_rows = 4,
|
||||||
|
.matrix_key_cols = 3,
|
||||||
|
.matrix_key_map = palmtx_matrix_keys,
|
||||||
|
.matrix_key_map_size = ARRAY_SIZE(palmtx_matrix_keys),
|
||||||
|
|
||||||
|
.debounce_interval = 30,
|
||||||
|
};
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* GPIO keys
|
||||||
|
******************************************************************************/
|
||||||
|
static struct gpio_keys_button palmtx_pxa_buttons[] = {
|
||||||
|
{KEY_F8, GPIO_NR_PALMTX_HOTSYNC_BUTTON_N, 1, "HotSync Button" },
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct gpio_keys_platform_data palmtx_pxa_keys_data = {
|
||||||
|
.buttons = palmtx_pxa_buttons,
|
||||||
|
.nbuttons = ARRAY_SIZE(palmtx_pxa_buttons),
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device palmtx_pxa_keys = {
|
||||||
|
.name = "gpio-keys",
|
||||||
|
.id = -1,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &palmtx_pxa_keys_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* Backlight
|
||||||
|
******************************************************************************/
|
||||||
|
static int palmtx_backlight_init(struct device *dev)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = gpio_request(GPIO_NR_PALMTX_BL_POWER, "BL POWER");
|
||||||
|
if (ret)
|
||||||
|
goto err;
|
||||||
|
ret = gpio_request(GPIO_NR_PALMTX_LCD_POWER, "LCD POWER");
|
||||||
|
if (ret)
|
||||||
|
goto err2;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
err2:
|
||||||
|
gpio_free(GPIO_NR_PALMTX_BL_POWER);
|
||||||
|
err:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int palmtx_backlight_notify(int brightness)
|
||||||
|
{
|
||||||
|
gpio_set_value(GPIO_NR_PALMTX_BL_POWER, brightness);
|
||||||
|
gpio_set_value(GPIO_NR_PALMTX_LCD_POWER, brightness);
|
||||||
|
return brightness;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void palmtx_backlight_exit(struct device *dev)
|
||||||
|
{
|
||||||
|
gpio_free(GPIO_NR_PALMTX_BL_POWER);
|
||||||
|
gpio_free(GPIO_NR_PALMTX_LCD_POWER);
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct platform_pwm_backlight_data palmtx_backlight_data = {
|
||||||
|
.pwm_id = 0,
|
||||||
|
.max_brightness = PALMTX_MAX_INTENSITY,
|
||||||
|
.dft_brightness = PALMTX_MAX_INTENSITY,
|
||||||
|
.pwm_period_ns = PALMTX_PERIOD_NS,
|
||||||
|
.init = palmtx_backlight_init,
|
||||||
|
.notify = palmtx_backlight_notify,
|
||||||
|
.exit = palmtx_backlight_exit,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device palmtx_backlight = {
|
||||||
|
.name = "pwm-backlight",
|
||||||
|
.dev = {
|
||||||
|
.parent = &pxa27x_device_pwm0.dev,
|
||||||
|
.platform_data = &palmtx_backlight_data,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* IrDA
|
||||||
|
******************************************************************************/
|
||||||
|
static void palmtx_irda_transceiver_mode(struct device *dev, int mode)
|
||||||
|
{
|
||||||
|
gpio_set_value(GPIO_NR_PALMTX_IR_DISABLE, mode & IR_OFF);
|
||||||
|
pxa2xx_transceiver_mode(dev, mode);
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct pxaficp_platform_data palmtx_ficp_platform_data = {
|
||||||
|
.transceiver_cap = IR_SIRMODE | IR_FIRMODE | IR_OFF,
|
||||||
|
.transceiver_mode = palmtx_irda_transceiver_mode,
|
||||||
|
};
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* UDC
|
||||||
|
******************************************************************************/
|
||||||
|
static void palmtx_udc_command(int cmd)
|
||||||
|
{
|
||||||
|
gpio_set_value(GPIO_NR_PALMTX_USB_POWER, !cmd);
|
||||||
|
udelay(50);
|
||||||
|
gpio_set_value(GPIO_NR_PALMTX_USB_PULLUP, !cmd);
|
||||||
|
}
|
||||||
|
|
||||||
|
static struct pxa2xx_udc_mach_info palmtx_udc_info __initdata = {
|
||||||
|
.gpio_vbus = GPIO_NR_PALMTX_USB_DETECT_N,
|
||||||
|
.gpio_vbus_inverted = 1,
|
||||||
|
.udc_command = palmtx_udc_command,
|
||||||
|
};
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* Power supply
|
||||||
|
******************************************************************************/
|
||||||
|
static int power_supply_init(struct device *dev)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = gpio_request(GPIO_NR_PALMTX_POWER_DETECT, "CABLE_STATE_AC");
|
||||||
|
if (ret)
|
||||||
|
goto err_cs_ac;
|
||||||
|
|
||||||
|
ret = gpio_request(GPIO_NR_PALMTX_USB_DETECT_N, "CABLE_STATE_USB");
|
||||||
|
if (ret)
|
||||||
|
goto err_cs_usb;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
err_cs_usb:
|
||||||
|
gpio_free(GPIO_NR_PALMTX_POWER_DETECT);
|
||||||
|
err_cs_ac:
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int palmtx_is_ac_online(void)
|
||||||
|
{
|
||||||
|
return gpio_get_value(GPIO_NR_PALMTX_POWER_DETECT);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int palmtx_is_usb_online(void)
|
||||||
|
{
|
||||||
|
return !gpio_get_value(GPIO_NR_PALMTX_USB_DETECT_N);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void power_supply_exit(struct device *dev)
|
||||||
|
{
|
||||||
|
gpio_free(GPIO_NR_PALMTX_USB_DETECT_N);
|
||||||
|
gpio_free(GPIO_NR_PALMTX_POWER_DETECT);
|
||||||
|
}
|
||||||
|
|
||||||
|
static char *palmtx_supplicants[] = {
|
||||||
|
"main-battery",
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct pda_power_pdata power_supply_info = {
|
||||||
|
.init = power_supply_init,
|
||||||
|
.is_ac_online = palmtx_is_ac_online,
|
||||||
|
.is_usb_online = palmtx_is_usb_online,
|
||||||
|
.exit = power_supply_exit,
|
||||||
|
.supplied_to = palmtx_supplicants,
|
||||||
|
.num_supplicants = ARRAY_SIZE(palmtx_supplicants),
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct platform_device power_supply = {
|
||||||
|
.name = "pda-power",
|
||||||
|
.id = -1,
|
||||||
|
.dev = {
|
||||||
|
.platform_data = &power_supply_info,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* Framebuffer
|
||||||
|
******************************************************************************/
|
||||||
|
static struct pxafb_mode_info palmtx_lcd_modes[] = {
|
||||||
|
{
|
||||||
|
.pixclock = 57692,
|
||||||
|
.xres = 320,
|
||||||
|
.yres = 480,
|
||||||
|
.bpp = 16,
|
||||||
|
|
||||||
|
.left_margin = 32,
|
||||||
|
.right_margin = 1,
|
||||||
|
.upper_margin = 7,
|
||||||
|
.lower_margin = 1,
|
||||||
|
|
||||||
|
.hsync_len = 4,
|
||||||
|
.vsync_len = 1,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct pxafb_mach_info palmtx_lcd_screen = {
|
||||||
|
.modes = palmtx_lcd_modes,
|
||||||
|
.num_modes = ARRAY_SIZE(palmtx_lcd_modes),
|
||||||
|
.lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL,
|
||||||
|
};
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
* Machine init
|
||||||
|
******************************************************************************/
|
||||||
|
static struct platform_device *devices[] __initdata = {
|
||||||
|
#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
|
||||||
|
&palmtx_pxa_keys,
|
||||||
|
#endif
|
||||||
|
&palmtx_backlight,
|
||||||
|
&power_supply,
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct map_desc palmtx_io_desc[] __initdata = {
|
||||||
|
{
|
||||||
|
.virtual = PALMTX_PCMCIA_VIRT,
|
||||||
|
.pfn = __phys_to_pfn(PALMTX_PCMCIA_PHYS),
|
||||||
|
.length = PALMTX_PCMCIA_SIZE,
|
||||||
|
.type = MT_DEVICE
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
static void __init palmtx_map_io(void)
|
||||||
|
{
|
||||||
|
pxa_map_io();
|
||||||
|
iotable_init(palmtx_io_desc, ARRAY_SIZE(palmtx_io_desc));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void __init palmtx_init(void)
|
||||||
|
{
|
||||||
|
pxa2xx_mfp_config(ARRAY_AND_SIZE(palmtx_pin_config));
|
||||||
|
|
||||||
|
set_pxa_fb_info(&palmtx_lcd_screen);
|
||||||
|
pxa_set_mci_info(&palmtx_mci_platform_data);
|
||||||
|
pxa_set_udc_info(&palmtx_udc_info);
|
||||||
|
pxa_set_ac97_info(NULL);
|
||||||
|
pxa_set_ficp_info(&palmtx_ficp_platform_data);
|
||||||
|
pxa_set_keypad_info(&palmtx_keypad_platform_data);
|
||||||
|
|
||||||
|
platform_add_devices(devices, ARRAY_SIZE(devices));
|
||||||
|
}
|
||||||
|
|
||||||
|
MACHINE_START(PALMTX, "Palm T|X")
|
||||||
|
.phys_io = PALMTX_PHYS_IO_START,
|
||||||
|
.io_pg_offst = io_p2v(0x40000000),
|
||||||
|
.boot_params = 0xa0000100,
|
||||||
|
.map_io = palmtx_map_io,
|
||||||
|
.init_irq = pxa27x_init_irq,
|
||||||
|
.timer = &pxa_timer,
|
||||||
|
.init_machine = palmtx_init
|
||||||
|
MACHINE_END
|
@ -33,14 +33,30 @@
|
|||||||
#include <asm/arch/camera.h>
|
#include <asm/arch/camera.h>
|
||||||
#include <asm/mach/map.h>
|
#include <asm/mach/map.h>
|
||||||
#include <asm/arch/pxa-regs.h>
|
#include <asm/arch/pxa-regs.h>
|
||||||
#include <asm/arch/pxa2xx-gpio.h>
|
|
||||||
#include <asm/arch/audio.h>
|
#include <asm/arch/audio.h>
|
||||||
#include <asm/arch/mmc.h>
|
#include <asm/arch/mmc.h>
|
||||||
#include <asm/arch/ohci.h>
|
#include <asm/arch/ohci.h>
|
||||||
#include <asm/arch/pcm990_baseboard.h>
|
#include <asm/arch/pcm990_baseboard.h>
|
||||||
#include <asm/arch/pxafb.h>
|
#include <asm/arch/pxafb.h>
|
||||||
|
#include <asm/arch/mfp-pxa27x.h>
|
||||||
|
|
||||||
#include "devices.h"
|
#include "devices.h"
|
||||||
|
#include "generic.h"
|
||||||
|
|
||||||
|
static unsigned long pcm990_pin_config[] __initdata = {
|
||||||
|
/* MMC */
|
||||||
|
GPIO32_MMC_CLK,
|
||||||
|
GPIO112_MMC_CMD,
|
||||||
|
GPIO92_MMC_DAT_0,
|
||||||
|
GPIO109_MMC_DAT_1,
|
||||||
|
GPIO110_MMC_DAT_2,
|
||||||
|
GPIO111_MMC_DAT_3,
|
||||||
|
/* USB */
|
||||||
|
GPIO88_USBH1_PWR,
|
||||||
|
GPIO89_USBH1_PEN,
|
||||||
|
/* PWM0 */
|
||||||
|
GPIO16_PWM0_OUT,
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* pcm990_lcd_power - control power supply to the LCD
|
* pcm990_lcd_power - control power supply to the LCD
|
||||||
@ -277,16 +293,6 @@ static int pcm990_mci_init(struct device *dev, irq_handler_t mci_detect_int,
|
|||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
/*
|
|
||||||
* enable GPIO for PXA27x MMC controller
|
|
||||||
*/
|
|
||||||
pxa_gpio_mode(GPIO32_MMCCLK_MD);
|
|
||||||
pxa_gpio_mode(GPIO112_MMCCMD_MD);
|
|
||||||
pxa_gpio_mode(GPIO92_MMCDAT0_MD);
|
|
||||||
pxa_gpio_mode(GPIO109_MMCDAT1_MD);
|
|
||||||
pxa_gpio_mode(GPIO110_MMCDAT2_MD);
|
|
||||||
pxa_gpio_mode(GPIO111_MMCDAT3_MD);
|
|
||||||
|
|
||||||
err = request_irq(PCM027_MMCDET_IRQ, mci_detect_int, IRQF_DISABLED,
|
err = request_irq(PCM027_MMCDET_IRQ, mci_detect_int, IRQF_DISABLED,
|
||||||
"MMC card detect", data);
|
"MMC card detect", data);
|
||||||
if (err)
|
if (err)
|
||||||
@ -333,8 +339,6 @@ static struct pxamci_platform_data pcm990_mci_platform_data = {
|
|||||||
*/
|
*/
|
||||||
static int pcm990_ohci_init(struct device *dev)
|
static int pcm990_ohci_init(struct device *dev)
|
||||||
{
|
{
|
||||||
pxa_gpio_mode(PCM990_USB_OVERCURRENT);
|
|
||||||
pxa_gpio_mode(PCM990_USB_PWR_EN);
|
|
||||||
/*
|
/*
|
||||||
* disable USB port 2 and 3
|
* disable USB port 2 and 3
|
||||||
* power sense is active low
|
* power sense is active low
|
||||||
@ -361,23 +365,27 @@ static struct pxaohci_platform_data pcm990_ohci_platform_data = {
|
|||||||
* PXA27x Camera specific stuff
|
* PXA27x Camera specific stuff
|
||||||
*/
|
*/
|
||||||
#if defined(CONFIG_VIDEO_PXA27x) || defined(CONFIG_VIDEO_PXA27x_MODULE)
|
#if defined(CONFIG_VIDEO_PXA27x) || defined(CONFIG_VIDEO_PXA27x_MODULE)
|
||||||
|
static unsigned long pcm990_camera_pin_config[] = {
|
||||||
|
/* CIF */
|
||||||
|
GPIO98_CIF_DD_0,
|
||||||
|
GPIO105_CIF_DD_1,
|
||||||
|
GPIO104_CIF_DD_2,
|
||||||
|
GPIO103_CIF_DD_3,
|
||||||
|
GPIO95_CIF_DD_4,
|
||||||
|
GPIO94_CIF_DD_5,
|
||||||
|
GPIO93_CIF_DD_6,
|
||||||
|
GPIO108_CIF_DD_7,
|
||||||
|
GPIO107_CIF_DD_8,
|
||||||
|
GPIO106_CIF_DD_9,
|
||||||
|
GPIO42_CIF_MCLK,
|
||||||
|
GPIO45_CIF_PCLK,
|
||||||
|
GPIO43_CIF_FV,
|
||||||
|
GPIO44_CIF_LV,
|
||||||
|
};
|
||||||
|
|
||||||
static int pcm990_pxacamera_init(struct device *dev)
|
static int pcm990_pxacamera_init(struct device *dev)
|
||||||
{
|
{
|
||||||
pxa_gpio_mode(GPIO98_CIF_DD_0_MD);
|
pxa2xx_mfp_config(ARRAY_AND_SIZE(pcm990_camera_pin_config));
|
||||||
pxa_gpio_mode(GPIO105_CIF_DD_1_MD);
|
|
||||||
pxa_gpio_mode(GPIO104_CIF_DD_2_MD);
|
|
||||||
pxa_gpio_mode(GPIO103_CIF_DD_3_MD);
|
|
||||||
pxa_gpio_mode(GPIO95_CIF_DD_4_MD);
|
|
||||||
pxa_gpio_mode(GPIO94_CIF_DD_5_MD);
|
|
||||||
pxa_gpio_mode(GPIO93_CIF_DD_6_MD);
|
|
||||||
pxa_gpio_mode(GPIO108_CIF_DD_7_MD);
|
|
||||||
pxa_gpio_mode(GPIO107_CIF_DD_8_MD);
|
|
||||||
pxa_gpio_mode(GPIO106_CIF_DD_9_MD);
|
|
||||||
pxa_gpio_mode(GPIO42_CIF_MCLK_MD);
|
|
||||||
pxa_gpio_mode(GPIO45_CIF_PCLK_MD);
|
|
||||||
pxa_gpio_mode(GPIO43_CIF_FV_MD);
|
|
||||||
pxa_gpio_mode(GPIO44_CIF_LV_MD);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -449,8 +457,10 @@ static struct map_desc pcm990_io_desc[] __initdata = {
|
|||||||
*/
|
*/
|
||||||
void __init pcm990_baseboard_init(void)
|
void __init pcm990_baseboard_init(void)
|
||||||
{
|
{
|
||||||
|
pxa2xx_mfp_config(ARRAY_AND_SIZE(pcm990_pin_config));
|
||||||
|
|
||||||
/* register CPLD access */
|
/* register CPLD access */
|
||||||
iotable_init(pcm990_io_desc, ARRAY_SIZE(pcm990_io_desc));
|
iotable_init(ARRAY_AND_SIZE(pcm990_io_desc));
|
||||||
|
|
||||||
/* register CPLD's IRQ controller */
|
/* register CPLD's IRQ controller */
|
||||||
pcm990_init_irq();
|
pcm990_init_irq();
|
||||||
@ -458,7 +468,6 @@ void __init pcm990_baseboard_init(void)
|
|||||||
#ifndef CONFIG_PCM990_DISPLAY_NONE
|
#ifndef CONFIG_PCM990_DISPLAY_NONE
|
||||||
set_pxa_fb_info(&pcm990_fbinfo);
|
set_pxa_fb_info(&pcm990_fbinfo);
|
||||||
#endif
|
#endif
|
||||||
pxa_gpio_mode(GPIO16_PWM0_MD);
|
|
||||||
platform_device_register(&pcm990_backlight_device);
|
platform_device_register(&pcm990_backlight_device);
|
||||||
|
|
||||||
/* MMC */
|
/* MMC */
|
||||||
@ -473,9 +482,8 @@ void __init pcm990_baseboard_init(void)
|
|||||||
#if defined(CONFIG_VIDEO_PXA27x) || defined(CONFIG_VIDEO_PXA27x_MODULE)
|
#if defined(CONFIG_VIDEO_PXA27x) || defined(CONFIG_VIDEO_PXA27x_MODULE)
|
||||||
pxa_set_camera_info(&pcm990_pxacamera_platform_data);
|
pxa_set_camera_info(&pcm990_pxacamera_platform_data);
|
||||||
|
|
||||||
i2c_register_board_info(0, pcm990_i2c_devices,
|
i2c_register_board_info(0, ARRAY_AND_SIZE(pcm990_i2c_devices));
|
||||||
ARRAY_SIZE(pcm990_i2c_devices));
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
printk(KERN_INFO"PCM-990 Evaluation baseboard initialized\n");
|
printk(KERN_INFO "PCM-990 Evaluation baseboard initialized\n");
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,6 @@
|
|||||||
#include <asm/arch/pxa-regs.h>
|
#include <asm/arch/pxa-regs.h>
|
||||||
#include <asm/arch/pxa2xx-regs.h>
|
#include <asm/arch/pxa2xx-regs.h>
|
||||||
#include <asm/arch/pxa2xx-gpio.h>
|
#include <asm/arch/pxa2xx-gpio.h>
|
||||||
#include <asm/arch/pxa27x-udc.h>
|
|
||||||
#include <asm/arch/irda.h>
|
#include <asm/arch/irda.h>
|
||||||
#include <asm/arch/mmc.h>
|
#include <asm/arch/mmc.h>
|
||||||
#include <asm/arch/ohci.h>
|
#include <asm/arch/ohci.h>
|
||||||
|
@ -330,7 +330,7 @@ struct ssp_device *ssp_request(int port, const char *label)
|
|||||||
|
|
||||||
mutex_unlock(&ssp_lock);
|
mutex_unlock(&ssp_lock);
|
||||||
|
|
||||||
if (ssp->port_id != port)
|
if (&ssp->node == &ssp_list)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
return ssp;
|
return ssp;
|
||||||
|
@ -467,8 +467,8 @@ static struct platform_device *devices[] __initdata = {
|
|||||||
|
|
||||||
static void tosa_poweroff(void)
|
static void tosa_poweroff(void)
|
||||||
{
|
{
|
||||||
pxa_gpio_mode(TOSA_GPIO_ON_RESET | GPIO_OUT);
|
gpio_direction_output(TOSA_GPIO_ON_RESET, 0);
|
||||||
GPSR(TOSA_GPIO_ON_RESET) = GPIO_bit(TOSA_GPIO_ON_RESET);
|
gpio_set_value(TOSA_GPIO_ON_RESET, 1);
|
||||||
|
|
||||||
mdelay(1000);
|
mdelay(1000);
|
||||||
arm_machine_restart('h');
|
arm_machine_restart('h');
|
||||||
|
@ -374,7 +374,7 @@ static struct resource bast_dm9k_resource[] = {
|
|||||||
[2] = {
|
[2] = {
|
||||||
.start = IRQ_DM9000,
|
.start = IRQ_DM9000,
|
||||||
.end = IRQ_DM9000,
|
.end = IRQ_DM9000,
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ | IRQF_TRIGGER_HIGH,
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -263,7 +263,7 @@ static struct resource vr1000_dm9k0_resource[] = {
|
|||||||
[2] = {
|
[2] = {
|
||||||
.start = IRQ_VR1000_DM9000A,
|
.start = IRQ_VR1000_DM9000A,
|
||||||
.end = IRQ_VR1000_DM9000A,
|
.end = IRQ_VR1000_DM9000A,
|
||||||
.flags = IORESOURCE_IRQ
|
.flags = IORESOURCE_IRQ | IRQF_TRIGGER_HIGH,
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
@ -282,7 +282,7 @@ static struct resource vr1000_dm9k1_resource[] = {
|
|||||||
[2] = {
|
[2] = {
|
||||||
.start = IRQ_VR1000_DM9000N,
|
.start = IRQ_VR1000_DM9000N,
|
||||||
.end = IRQ_VR1000_DM9000N,
|
.end = IRQ_VR1000_DM9000N,
|
||||||
.flags = IORESOURCE_IRQ
|
.flags = IORESOURCE_IRQ | IRQF_TRIGGER_HIGH,
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -225,26 +225,28 @@ static void __init collie_init(void)
|
|||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
/* cpu initialize */
|
/* cpu initialize */
|
||||||
GAFR = ( GPIO_SSP_TXD | \
|
GAFR = GPIO_SSP_TXD | GPIO_SSP_SCLK | GPIO_SSP_SFRM | GPIO_SSP_CLK |
|
||||||
GPIO_SSP_SCLK | GPIO_SSP_SFRM | GPIO_SSP_CLK | GPIO_TIC_ACK | \
|
GPIO_MCP_CLK | GPIO_32_768kHz;
|
||||||
GPIO_32_768kHz );
|
|
||||||
|
|
||||||
GPDR = ( GPIO_LDD8 | GPIO_LDD9 | GPIO_LDD10 | GPIO_LDD11 | GPIO_LDD12 | \
|
GPDR = GPIO_LDD8 | GPIO_LDD9 | GPIO_LDD10 | GPIO_LDD11 | GPIO_LDD12 |
|
||||||
GPIO_LDD13 | GPIO_LDD14 | GPIO_LDD15 | GPIO_SSP_TXD | \
|
GPIO_LDD13 | GPIO_LDD14 | GPIO_LDD15 | GPIO_SSP_TXD |
|
||||||
GPIO_SSP_SCLK | GPIO_SSP_SFRM | GPIO_SDLC_SCLK | \
|
GPIO_SSP_SCLK | GPIO_SSP_SFRM | GPIO_SDLC_SCLK |
|
||||||
GPIO_SDLC_AAF | GPIO_UART_SCLK1 | GPIO_32_768kHz );
|
COLLIE_GPIO_UCB1x00_RESET | COLLIE_GPIO_nMIC_ON |
|
||||||
GPLR = GPIO_GPIO18;
|
COLLIE_GPIO_nREMOCON_ON | GPIO_32_768kHz;
|
||||||
|
|
||||||
// PPC pin setting
|
PPDR = PPC_LDD0 | PPC_LDD1 | PPC_LDD2 | PPC_LDD3 | PPC_LDD4 | PPC_LDD5 |
|
||||||
PPDR = ( PPC_LDD0 | PPC_LDD1 | PPC_LDD2 | PPC_LDD3 | PPC_LDD4 | PPC_LDD5 | \
|
PPC_LDD6 | PPC_LDD7 | PPC_L_PCLK | PPC_L_LCLK | PPC_L_FCLK | PPC_L_BIAS |
|
||||||
PPC_LDD6 | PPC_LDD7 | PPC_L_PCLK | PPC_L_LCLK | PPC_L_FCLK | PPC_L_BIAS | \
|
PPC_TXD1 | PPC_TXD2 | PPC_TXD3 | PPC_TXD4 | PPC_SCLK | PPC_SFRM;
|
||||||
PPC_TXD1 | PPC_TXD2 | PPC_RXD2 | PPC_TXD3 | PPC_TXD4 | PPC_SCLK | PPC_SFRM );
|
|
||||||
|
|
||||||
PSDR = ( PPC_RXD1 | PPC_RXD2 | PPC_RXD3 | PPC_RXD4 );
|
PWER = COLLIE_GPIO_AC_IN | COLLIE_GPIO_CO | COLLIE_GPIO_ON_KEY |
|
||||||
|
COLLIE_GPIO_WAKEUP | COLLIE_GPIO_nREMOCON_INT | PWER_RTC;
|
||||||
|
|
||||||
|
PGSR = COLLIE_GPIO_nREMOCON_ON;
|
||||||
|
|
||||||
|
PSDR = PPC_RXD1 | PPC_RXD2 | PPC_RXD3 | PPC_RXD4;
|
||||||
|
|
||||||
|
PCFR = PCFR_OPDE;
|
||||||
|
|
||||||
GAFR |= GPIO_32_768kHz;
|
|
||||||
GPDR |= GPIO_32_768kHz;
|
|
||||||
TUCR = TUCR_32_768kHz;
|
|
||||||
|
|
||||||
platform_scoop_config = &collie_pcmcia_config;
|
platform_scoop_config = &collie_pcmcia_config;
|
||||||
|
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
#include <linux/clk.h>
|
#include <linux/clk.h>
|
||||||
#include <linux/mutex.h>
|
#include <linux/mutex.h>
|
||||||
#include <linux/platform_device.h>
|
#include <linux/platform_device.h>
|
||||||
|
#include <linux/cpufreq.h>
|
||||||
|
|
||||||
#include <asm/io.h>
|
#include <asm/io.h>
|
||||||
|
|
||||||
|
@ -65,6 +65,7 @@ void __init s3c244x_map_io(struct map_desc *mach_desc, int size)
|
|||||||
|
|
||||||
/* rename any peripherals used differing from the s3c2410 */
|
/* rename any peripherals used differing from the s3c2410 */
|
||||||
|
|
||||||
|
s3c_device_sdi.name = "s3c2440-sdi";
|
||||||
s3c_device_i2c.name = "s3c2440-i2c";
|
s3c_device_i2c.name = "s3c2440-i2c";
|
||||||
s3c_device_nand.name = "s3c2440-nand";
|
s3c_device_nand.name = "s3c2440-nand";
|
||||||
s3c_device_usbgadget.name = "s3c2440-usbgadget";
|
s3c_device_usbgadget.name = "s3c2440-usbgadget";
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
#
|
#
|
||||||
# http://www.arm.linux.org.uk/developer/machines/?action=new
|
# http://www.arm.linux.org.uk/developer/machines/?action=new
|
||||||
#
|
#
|
||||||
# Last update: Sat Apr 19 11:23:38 2008
|
# Last update: Mon Jul 7 16:25:39 2008
|
||||||
#
|
#
|
||||||
# machine_is_xxx CONFIG_xxxx MACH_TYPE_xxx number
|
# machine_is_xxx CONFIG_xxxx MACH_TYPE_xxx number
|
||||||
#
|
#
|
||||||
@ -560,7 +560,6 @@ husky MACH_HUSKY HUSKY 543
|
|||||||
boxer MACH_BOXER BOXER 544
|
boxer MACH_BOXER BOXER 544
|
||||||
shepherd MACH_SHEPHERD SHEPHERD 545
|
shepherd MACH_SHEPHERD SHEPHERD 545
|
||||||
aml42800aa MACH_AML42800AA AML42800AA 546
|
aml42800aa MACH_AML42800AA AML42800AA 546
|
||||||
ml674001 MACH_MACH_TYPE_ML674001 MACH_TYPE_ML674001 547
|
|
||||||
lpc2294 MACH_LPC2294 LPC2294 548
|
lpc2294 MACH_LPC2294 LPC2294 548
|
||||||
switchgrass MACH_SWITCHGRASS SWITCHGRASS 549
|
switchgrass MACH_SWITCHGRASS SWITCHGRASS 549
|
||||||
ens_cmu MACH_ENS_CMU ENS_CMU 550
|
ens_cmu MACH_ENS_CMU ENS_CMU 550
|
||||||
@ -748,7 +747,6 @@ anubis MACH_ANUBIS ANUBIS 734
|
|||||||
ite8152 MACH_ITE8152 ITE8152 735
|
ite8152 MACH_ITE8152 ITE8152 735
|
||||||
lpc3xxx MACH_LPC3XXX LPC3XXX 736
|
lpc3xxx MACH_LPC3XXX LPC3XXX 736
|
||||||
puppeteer MACH_PUPPETEER PUPPETEER 737
|
puppeteer MACH_PUPPETEER PUPPETEER 737
|
||||||
vt001 MACH_MACH_VADATECH MACH_VADATECH 738
|
|
||||||
e570 MACH_E570 E570 739
|
e570 MACH_E570 E570 739
|
||||||
x50 MACH_X50 X50 740
|
x50 MACH_X50 X50 740
|
||||||
recon MACH_RECON RECON 741
|
recon MACH_RECON RECON 741
|
||||||
@ -839,7 +837,7 @@ ccxp270 MACH_CCXP CCXP 825
|
|||||||
omap_gsample MACH_OMAP_GSAMPLE OMAP_GSAMPLE 826
|
omap_gsample MACH_OMAP_GSAMPLE OMAP_GSAMPLE 826
|
||||||
realview_eb MACH_REALVIEW_EB REALVIEW_EB 827
|
realview_eb MACH_REALVIEW_EB REALVIEW_EB 827
|
||||||
samoa MACH_SAMOA SAMOA 828
|
samoa MACH_SAMOA SAMOA 828
|
||||||
t3xscale MACH_T3XSCALE T3XSCALE 829
|
palmt3 MACH_PALMT3 PALMT3 829
|
||||||
i878 MACH_I878 I878 830
|
i878 MACH_I878 I878 830
|
||||||
borzoi MACH_BORZOI BORZOI 831
|
borzoi MACH_BORZOI BORZOI 831
|
||||||
gecko MACH_GECKO GECKO 832
|
gecko MACH_GECKO GECKO 832
|
||||||
@ -895,7 +893,7 @@ mio8390 MACH_MIO8390 MIO8390 881
|
|||||||
omi_board MACH_OMI_BOARD OMI_BOARD 882
|
omi_board MACH_OMI_BOARD OMI_BOARD 882
|
||||||
mx21civ MACH_MX21CIV MX21CIV 883
|
mx21civ MACH_MX21CIV MX21CIV 883
|
||||||
mahi_cdac MACH_MAHI_CDAC MAHI_CDAC 884
|
mahi_cdac MACH_MAHI_CDAC MAHI_CDAC 884
|
||||||
xscale_palmtx MACH_XSCALE_PALMTX XSCALE_PALMTX 885
|
palmtx MACH_PALMTX PALMTX 885
|
||||||
s3c2413 MACH_S3C2413 S3C2413 887
|
s3c2413 MACH_S3C2413 S3C2413 887
|
||||||
samsys_ep0 MACH_SAMSYS_EP0 SAMSYS_EP0 888
|
samsys_ep0 MACH_SAMSYS_EP0 SAMSYS_EP0 888
|
||||||
wg302v1 MACH_WG302V1 WG302V1 889
|
wg302v1 MACH_WG302V1 WG302V1 889
|
||||||
@ -918,7 +916,7 @@ nxdb500 MACH_NXDB500 NXDB500 905
|
|||||||
apf9328 MACH_APF9328 APF9328 906
|
apf9328 MACH_APF9328 APF9328 906
|
||||||
omap_wipoq MACH_OMAP_WIPOQ OMAP_WIPOQ 907
|
omap_wipoq MACH_OMAP_WIPOQ OMAP_WIPOQ 907
|
||||||
omap_twip MACH_OMAP_TWIP OMAP_TWIP 908
|
omap_twip MACH_OMAP_TWIP OMAP_TWIP 908
|
||||||
xscale_treo650 MACH_XSCALE_PALMTREO650 XSCALE_PALMTREO650 909
|
palmtreo650 MACH_PALMTREO650 PALMTREO650 909
|
||||||
acumen MACH_ACUMEN ACUMEN 910
|
acumen MACH_ACUMEN ACUMEN 910
|
||||||
xp100 MACH_XP100 XP100 911
|
xp100 MACH_XP100 XP100 911
|
||||||
fs2410 MACH_FS2410 FS2410 912
|
fs2410 MACH_FS2410 FS2410 912
|
||||||
@ -926,8 +924,8 @@ pxa270_cerf MACH_PXA270_CERF PXA270_CERF 913
|
|||||||
sq2ftlpalm MACH_SQ2FTLPALM SQ2FTLPALM 914
|
sq2ftlpalm MACH_SQ2FTLPALM SQ2FTLPALM 914
|
||||||
bsemserver MACH_BSEMSERVER BSEMSERVER 915
|
bsemserver MACH_BSEMSERVER BSEMSERVER 915
|
||||||
netclient MACH_NETCLIENT NETCLIENT 916
|
netclient MACH_NETCLIENT NETCLIENT 916
|
||||||
xscale_palmtt5 MACH_XSCALE_PALMTT5 XSCALE_PALMTT5 917
|
palmt5 MACH_PALMT5 PALMT5 917
|
||||||
xscale_palmtc MACH_OMAP_PALMTC OMAP_PALMTC 918
|
palmtc MACH_PALMTC PALMTC 918
|
||||||
omap_apollon MACH_OMAP_APOLLON OMAP_APOLLON 919
|
omap_apollon MACH_OMAP_APOLLON OMAP_APOLLON 919
|
||||||
mxc30030evb MACH_MXC30030EVB MXC30030EVB 920
|
mxc30030evb MACH_MXC30030EVB MXC30030EVB 920
|
||||||
rea_2d MACH_REA_2D REA_2D 921
|
rea_2d MACH_REA_2D REA_2D 921
|
||||||
@ -1220,7 +1218,6 @@ empca400 MACH_EMPCA400 EMPCA400 1211
|
|||||||
em7210 MACH_EM7210 EM7210 1212
|
em7210 MACH_EM7210 EM7210 1212
|
||||||
htchermes MACH_HTCHERMES HTCHERMES 1213
|
htchermes MACH_HTCHERMES HTCHERMES 1213
|
||||||
eti_c1 MACH_ETI_C1 ETI_C1 1214
|
eti_c1 MACH_ETI_C1 ETI_C1 1214
|
||||||
mach_dep2410 MACH_MACH_DEP2410 MACH_DEP2410 1215
|
|
||||||
ac100 MACH_AC100 AC100 1216
|
ac100 MACH_AC100 AC100 1216
|
||||||
sneetch MACH_SNEETCH SNEETCH 1217
|
sneetch MACH_SNEETCH SNEETCH 1217
|
||||||
studentmate MACH_STUDENTMATE STUDENTMATE 1218
|
studentmate MACH_STUDENTMATE STUDENTMATE 1218
|
||||||
@ -1421,10 +1418,10 @@ looxc550 MACH_LOOXC550 LOOXC550 1417
|
|||||||
cnty_titan MACH_CNTY_TITAN CNTY_TITAN 1418
|
cnty_titan MACH_CNTY_TITAN CNTY_TITAN 1418
|
||||||
app3xx MACH_APP3XX APP3XX 1419
|
app3xx MACH_APP3XX APP3XX 1419
|
||||||
sideoatsgrama MACH_SIDEOATSGRAMA SIDEOATSGRAMA 1420
|
sideoatsgrama MACH_SIDEOATSGRAMA SIDEOATSGRAMA 1420
|
||||||
xscale_palmt700p MACH_XSCALE_PALMT700P XSCALE_PALMT700P 1421
|
palmtreo700p MACH_PALMTREO700P PALMTREO700P 1421
|
||||||
xscale_palmt700w MACH_XSCALE_PALMT700W XSCALE_PALMT700W 1422
|
palmtreo700w MACH_PALMTREO700W PALMTREO700W 1422
|
||||||
xscale_palmt750 MACH_XSCALE_PALMT750 XSCALE_PALMT750 1423
|
palmtreo750 MACH_PALMTREO750 PALMTREO750 1423
|
||||||
xscale_palmt755p MACH_XSCALE_PALMT755P XSCALE_PALMT755P 1424
|
palmtreo755p MACH_PALMTREO755P PALMTREO755P 1424
|
||||||
ezreganut9200 MACH_EZREGANUT9200 EZREGANUT9200 1425
|
ezreganut9200 MACH_EZREGANUT9200 EZREGANUT9200 1425
|
||||||
sarge MACH_SARGE SARGE 1426
|
sarge MACH_SARGE SARGE 1426
|
||||||
a696 MACH_A696 A696 1427
|
a696 MACH_A696 A696 1427
|
||||||
@ -1463,7 +1460,7 @@ artemis MACH_ARTEMIS ARTEMIS 1462
|
|||||||
htctitan MACH_HTCTITAN HTCTITAN 1463
|
htctitan MACH_HTCTITAN HTCTITAN 1463
|
||||||
qranium MACH_QRANIUM QRANIUM 1464
|
qranium MACH_QRANIUM QRANIUM 1464
|
||||||
adx_wsc2 MACH_ADX_WSC2 ADX_WSC2 1465
|
adx_wsc2 MACH_ADX_WSC2 ADX_WSC2 1465
|
||||||
adx_medcom MACH_ADX_MEDINET ADX_MEDINET 1466
|
adx_medcom MACH_ADX_MEDCOM ADX_MEDCOM 1466
|
||||||
bboard MACH_BBOARD BBOARD 1467
|
bboard MACH_BBOARD BBOARD 1467
|
||||||
cambria MACH_CAMBRIA CAMBRIA 1468
|
cambria MACH_CAMBRIA CAMBRIA 1468
|
||||||
mt7xxx MACH_MT7XXX MT7XXX 1469
|
mt7xxx MACH_MT7XXX MT7XXX 1469
|
||||||
@ -1519,7 +1516,7 @@ wp188 MACH_WP188 WP188 1518
|
|||||||
corsica MACH_CORSICA CORSICA 1519
|
corsica MACH_CORSICA CORSICA 1519
|
||||||
bigeye MACH_BIGEYE BIGEYE 1520
|
bigeye MACH_BIGEYE BIGEYE 1520
|
||||||
tll5000 MACH_TLL5000 TLL5000 1522
|
tll5000 MACH_TLL5000 TLL5000 1522
|
||||||
hni270 MACH_HNI_X270 HNI_X270 1523
|
bebot MACH_BEBOT BEBOT 1523
|
||||||
qong MACH_QONG QONG 1524
|
qong MACH_QONG QONG 1524
|
||||||
tcompact MACH_TCOMPACT TCOMPACT 1525
|
tcompact MACH_TCOMPACT TCOMPACT 1525
|
||||||
puma5 MACH_PUMA5 PUMA5 1526
|
puma5 MACH_PUMA5 PUMA5 1526
|
||||||
@ -1636,7 +1633,6 @@ awlug4lcu MACH_AWLUG4LCU AWLUG4LCU 1637
|
|||||||
palermoc MACH_PALERMOC PALERMOC 1638
|
palermoc MACH_PALERMOC PALERMOC 1638
|
||||||
omap_ldp MACH_OMAP_LDP OMAP_LDP 1639
|
omap_ldp MACH_OMAP_LDP OMAP_LDP 1639
|
||||||
ip500 MACH_IP500 IP500 1640
|
ip500 MACH_IP500 IP500 1640
|
||||||
mx35ads MACH_MACH_MX35ADS MACH_MX35ADS 1641
|
|
||||||
ase2 MACH_ASE2 ASE2 1642
|
ase2 MACH_ASE2 ASE2 1642
|
||||||
mx35evb MACH_MX35EVB MX35EVB 1643
|
mx35evb MACH_MX35EVB MX35EVB 1643
|
||||||
aml_m8050 MACH_AML_M8050 AML_M8050 1644
|
aml_m8050 MACH_AML_M8050 AML_M8050 1644
|
||||||
@ -1647,7 +1643,7 @@ badger MACH_BADGER BADGER 1648
|
|||||||
trizeps4wl MACH_TRIZEPS4WL TRIZEPS4WL 1649
|
trizeps4wl MACH_TRIZEPS4WL TRIZEPS4WL 1649
|
||||||
trizeps5 MACH_TRIZEPS5 TRIZEPS5 1650
|
trizeps5 MACH_TRIZEPS5 TRIZEPS5 1650
|
||||||
marlin MACH_MARLIN MARLIN 1651
|
marlin MACH_MARLIN MARLIN 1651
|
||||||
ts7800 MACH_TS7800 TS7800 1652
|
ts78xx MACH_TS78XX TS78XX 1652
|
||||||
hpipaq214 MACH_HPIPAQ214 HPIPAQ214 1653
|
hpipaq214 MACH_HPIPAQ214 HPIPAQ214 1653
|
||||||
at572d940dcm MACH_AT572D940DCM AT572D940DCM 1654
|
at572d940dcm MACH_AT572D940DCM AT572D940DCM 1654
|
||||||
ne1board MACH_NE1BOARD NE1BOARD 1655
|
ne1board MACH_NE1BOARD NE1BOARD 1655
|
||||||
@ -1720,3 +1716,99 @@ htc_kaiser MACH_HTC_KAISER HTC_KAISER 1724
|
|||||||
lg_ks20 MACH_LG_KS20 LG_KS20 1725
|
lg_ks20 MACH_LG_KS20 LG_KS20 1725
|
||||||
hhgps MACH_HHGPS HHGPS 1726
|
hhgps MACH_HHGPS HHGPS 1726
|
||||||
nokia_n810_wimax MACH_NOKIA_N810_WIMAX NOKIA_N810_WIMAX 1727
|
nokia_n810_wimax MACH_NOKIA_N810_WIMAX NOKIA_N810_WIMAX 1727
|
||||||
|
insight MACH_INSIGHT INSIGHT 1728
|
||||||
|
sapphire MACH_SAPPHIRE SAPPHIRE 1729
|
||||||
|
csb637xo MACH_CSB637XO CSB637XO 1730
|
||||||
|
evisiong MACH_EVISIONG EVISIONG 1731
|
||||||
|
stmp37xx MACH_STMP37XX STMP37XX 1732
|
||||||
|
stmp378x MACH_STMP38XX STMP38XX 1733
|
||||||
|
tnt MACH_TNT TNT 1734
|
||||||
|
tbxt MACH_TBXT TBXT 1735
|
||||||
|
playmate MACH_PLAYMATE PLAYMATE 1736
|
||||||
|
pns10 MACH_PNS10 PNS10 1737
|
||||||
|
eznavi MACH_EZNAVI EZNAVI 1738
|
||||||
|
ps4000 MACH_PS4000 PS4000 1739
|
||||||
|
ezx_a780 MACH_EZX_A780 EZX_A780 1740
|
||||||
|
ezx_e680 MACH_EZX_E680 EZX_E680 1741
|
||||||
|
ezx_a1200 MACH_EZX_A1200 EZX_A1200 1742
|
||||||
|
ezx_e6 MACH_EZX_E6 EZX_E6 1743
|
||||||
|
ezx_e2 MACH_EZX_E2 EZX_E2 1744
|
||||||
|
ezx_a910 MACH_EZX_A910 EZX_A910 1745
|
||||||
|
cwmx31 MACH_CWMX31 CWMX31 1746
|
||||||
|
sl2312 MACH_SL2312 SL2312 1747
|
||||||
|
blenny MACH_BLENNY BLENNY 1748
|
||||||
|
ds107 MACH_DS107 DS107 1749
|
||||||
|
dsx07 MACH_DSX07 DSX07 1750
|
||||||
|
picocom1 MACH_PICOCOM1 PICOCOM1 1751
|
||||||
|
lynx_wolverine MACH_LYNX_WOLVERINE LYNX_WOLVERINE 1752
|
||||||
|
ubisys_p9_sc19 MACH_UBISYS_P9_SC19 UBISYS_P9_SC19 1753
|
||||||
|
kratos_low MACH_KRATOS_LOW KRATOS_LOW 1754
|
||||||
|
m700 MACH_M700 M700 1755
|
||||||
|
edmini_v2 MACH_EDMINI_V2 EDMINI_V2 1756
|
||||||
|
zipit2 MACH_ZIPIT2 ZIPIT2 1757
|
||||||
|
hslfemtocell MACH_HSLFEMTOCELL HSLFEMTOCELL 1758
|
||||||
|
daintree_at91 MACH_DAINTREE_AT91 DAINTREE_AT91 1759
|
||||||
|
sg560usb MACH_SG560USB SG560USB 1760
|
||||||
|
omap3_pandora MACH_OMAP3_PANDORA OMAP3_PANDORA 1761
|
||||||
|
usr8200 MACH_USR8200 USR8200 1762
|
||||||
|
s1s65k MACH_S1S65K S1S65K 1763
|
||||||
|
s2s65a MACH_S2S65A S2S65A 1764
|
||||||
|
icore MACH_ICORE ICORE 1765
|
||||||
|
mss2 MACH_MSS2 MSS2 1766
|
||||||
|
belmont MACH_BELMONT BELMONT 1767
|
||||||
|
asusp525 MACH_ASUSP525 ASUSP525 1768
|
||||||
|
lb88rc8480 MACH_LB88RC8480 LB88RC8480 1769
|
||||||
|
hipxa MACH_HIPXA HIPXA 1770
|
||||||
|
mx25_3ds MACH_MX25_3DS MX25_3DS 1771
|
||||||
|
m800 MACH_M800 M800 1772
|
||||||
|
omap3530_lv_som MACH_OMAP3530_LV_SOM OMAP3530_LV_SOM 1773
|
||||||
|
prima_evb MACH_PRIMA_EVB PRIMA_EVB 1774
|
||||||
|
mx31bt1 MACH_MX31BT1 MX31BT1 1775
|
||||||
|
atlas4_evb MACH_ATLAS4_EVB ATLAS4_EVB 1776
|
||||||
|
mx31cicada MACH_MX31CICADA MX31CICADA 1777
|
||||||
|
mi424wr MACH_MI424WR MI424WR 1778
|
||||||
|
axs_ultrax MACH_AXS_ULTRAX AXS_ULTRAX 1779
|
||||||
|
at572d940deb MACH_AT572D940DEB AT572D940DEB 1780
|
||||||
|
davinci_da8xx_evm MACH_DAVINCI_DA8XX_EVM DAVINCI_DA8XX_EVM 1781
|
||||||
|
ep9302 MACH_EP9302 EP9302 1782
|
||||||
|
at572d940hfeb MACH_AT572D940HFEB AT572D940HFEB 1783
|
||||||
|
cybook3 MACH_CYBOOK3 CYBOOK3 1784
|
||||||
|
wdg002 MACH_WDG002 WDG002 1785
|
||||||
|
sg560adsl MACH_SG560ADSL SG560ADSL 1786
|
||||||
|
nextio_n2800_ica MACH_NEXTIO_N2800_ICA NEXTIO_N2800_ICA 1787
|
||||||
|
marvell_newdb MACH_MARVELL_NEWDB MARVELL_NEWDB 1789
|
||||||
|
vandihud MACH_VANDIHUD VANDIHUD 1790
|
||||||
|
magx_e8 MACH_MAGX_E8 MAGX_E8 1791
|
||||||
|
magx_z6 MACH_MAGX_Z6 MAGX_Z6 1792
|
||||||
|
magx_v8 MACH_MAGX_V8 MAGX_V8 1793
|
||||||
|
magx_u9 MACH_MAGX_U9 MAGX_U9 1794
|
||||||
|
toughcf08 MACH_TOUGHCF08 TOUGHCF08 1795
|
||||||
|
zw4400 MACH_ZW4400 ZW4400 1796
|
||||||
|
marat91 MACH_MARAT91 MARAT91 1797
|
||||||
|
overo MACH_OVERO OVERO 1798
|
||||||
|
at2440evb MACH_AT2440EVB AT2440EVB 1799
|
||||||
|
neocore926 MACH_NEOCORE926 NEOCORE926 1800
|
||||||
|
wnr854t MACH_WNR854T WNR854T 1801
|
||||||
|
imx27 MACH_IMX27 IMX27 1802
|
||||||
|
moose_db MACH_MOOSE_DB MOOSE_DB 1803
|
||||||
|
fab4 MACH_FAB4 FAB4 1804
|
||||||
|
htcdiamond MACH_HTCDIAMOND HTCDIAMOND 1805
|
||||||
|
fiona MACH_FIONA FIONA 1806
|
||||||
|
mxc30030_x MACH_MXC30030_X MXC30030_X 1807
|
||||||
|
bmp1000 MACH_BMP1000 BMP1000 1808
|
||||||
|
logi9200 MACH_LOGI9200 LOGI9200 1809
|
||||||
|
tqma31 MACH_TQMA31 TQMA31 1810
|
||||||
|
ccw9p9215js MACH_CCW9P9215JS CCW9P9215JS 1811
|
||||||
|
rd88f5181l_ge MACH_RD88F5181L_GE RD88F5181L_GE 1812
|
||||||
|
sifmain MACH_SIFMAIN SIFMAIN 1813
|
||||||
|
sam9_l9261 MACH_SAM9_L9261 SAM9_L9261 1814
|
||||||
|
cc9m2443js MACH_CC9M2443JS CC9M2443JS 1815
|
||||||
|
xaria300 MACH_XARIA300 XARIA300 1816
|
||||||
|
it9200 MACH_IT9200 IT9200 1817
|
||||||
|
rd88f5181l_fxo MACH_RD88F5181L_FXO RD88F5181L_FXO 1818
|
||||||
|
kriss_sensor MACH_KRISS_SENSOR KRISS_SENSOR 1819
|
||||||
|
pilz_pmi5 MACH_PILZ_PMI5 PILZ_PMI5 1820
|
||||||
|
jade MACH_JADE JADE 1821
|
||||||
|
ks8695_softplc MACH_KS8695_SOFTPLC KS8695_SOFTPLC 1822
|
||||||
|
gprisc4 MACH_GPRISC4 GPRISC4 1823
|
||||||
|
stamp9260 MACH_STAMP9260 STAMP9260 1824
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.24-rc7
|
# Linux kernel version: 2.6.26-rc3
|
||||||
# Wed Jan 9 23:20:41 2008
|
# Mon May 26 13:30:59 2008
|
||||||
#
|
#
|
||||||
CONFIG_AVR32=y
|
CONFIG_AVR32=y
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
@ -13,10 +13,10 @@ CONFIG_HARDIRQS_SW_RESEND=y
|
|||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
||||||
CONFIG_GENERIC_TIME=y
|
CONFIG_GENERIC_TIME=y
|
||||||
|
CONFIG_GENERIC_CLOCKEVENTS=y
|
||||||
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
||||||
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
|
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
|
||||||
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
|
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
|
||||||
CONFIG_ARCH_SUPPORTS_OPROFILE=y
|
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
CONFIG_GENERIC_HWEIGHT=y
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
CONFIG_GENERIC_BUG=y
|
CONFIG_GENERIC_BUG=y
|
||||||
@ -37,17 +37,15 @@ CONFIG_POSIX_MQUEUE=y
|
|||||||
CONFIG_BSD_PROCESS_ACCT=y
|
CONFIG_BSD_PROCESS_ACCT=y
|
||||||
CONFIG_BSD_PROCESS_ACCT_V3=y
|
CONFIG_BSD_PROCESS_ACCT_V3=y
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_USER_NS is not set
|
|
||||||
# CONFIG_PID_NS is not set
|
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
# CONFIG_IKCONFIG is not set
|
# CONFIG_IKCONFIG is not set
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
# CONFIG_CGROUPS is not set
|
# CONFIG_CGROUPS is not set
|
||||||
CONFIG_FAIR_GROUP_SCHED=y
|
# CONFIG_GROUP_SCHED is not set
|
||||||
CONFIG_FAIR_USER_SCHED=y
|
|
||||||
# CONFIG_FAIR_CGROUP_SCHED is not set
|
|
||||||
CONFIG_SYSFS_DEPRECATED=y
|
CONFIG_SYSFS_DEPRECATED=y
|
||||||
|
CONFIG_SYSFS_DEPRECATED_V2=y
|
||||||
# CONFIG_RELAY is not set
|
# CONFIG_RELAY is not set
|
||||||
|
# CONFIG_NAMESPACES is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
CONFIG_INITRAMFS_SOURCE=""
|
||||||
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
|
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
|
||||||
@ -61,11 +59,13 @@ CONFIG_HOTPLUG=y
|
|||||||
CONFIG_PRINTK=y
|
CONFIG_PRINTK=y
|
||||||
CONFIG_BUG=y
|
CONFIG_BUG=y
|
||||||
CONFIG_ELF_CORE=y
|
CONFIG_ELF_CORE=y
|
||||||
|
# CONFIG_COMPAT_BRK is not set
|
||||||
# CONFIG_BASE_FULL is not set
|
# CONFIG_BASE_FULL is not set
|
||||||
CONFIG_FUTEX=y
|
CONFIG_FUTEX=y
|
||||||
CONFIG_ANON_INODES=y
|
CONFIG_ANON_INODES=y
|
||||||
CONFIG_EPOLL=y
|
CONFIG_EPOLL=y
|
||||||
CONFIG_SIGNALFD=y
|
CONFIG_SIGNALFD=y
|
||||||
|
CONFIG_TIMERFD=y
|
||||||
CONFIG_EVENTFD=y
|
CONFIG_EVENTFD=y
|
||||||
CONFIG_SHMEM=y
|
CONFIG_SHMEM=y
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
@ -73,11 +73,21 @@ CONFIG_SLUB_DEBUG=y
|
|||||||
# CONFIG_SLAB is not set
|
# CONFIG_SLAB is not set
|
||||||
CONFIG_SLUB=y
|
CONFIG_SLUB=y
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
|
CONFIG_PROFILING=y
|
||||||
|
# CONFIG_MARKERS is not set
|
||||||
|
CONFIG_OPROFILE=m
|
||||||
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
CONFIG_KPROBES=y
|
||||||
|
CONFIG_HAVE_KPROBES=y
|
||||||
|
# CONFIG_HAVE_KRETPROBES is not set
|
||||||
|
# CONFIG_HAVE_DMA_ATTRS is not set
|
||||||
|
CONFIG_PROC_PAGE_MONITOR=y
|
||||||
CONFIG_SLABINFO=y
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_RT_MUTEXES=y
|
CONFIG_RT_MUTEXES=y
|
||||||
# CONFIG_TINY_SHMEM is not set
|
# CONFIG_TINY_SHMEM is not set
|
||||||
CONFIG_BASE_SMALL=1
|
CONFIG_BASE_SMALL=1
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
|
# CONFIG_MODULE_FORCE_LOAD is not set
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
CONFIG_MODULE_FORCE_UNLOAD=y
|
CONFIG_MODULE_FORCE_UNLOAD=y
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
@ -101,10 +111,15 @@ CONFIG_IOSCHED_CFQ=y
|
|||||||
CONFIG_DEFAULT_CFQ=y
|
CONFIG_DEFAULT_CFQ=y
|
||||||
# CONFIG_DEFAULT_NOOP is not set
|
# CONFIG_DEFAULT_NOOP is not set
|
||||||
CONFIG_DEFAULT_IOSCHED="cfq"
|
CONFIG_DEFAULT_IOSCHED="cfq"
|
||||||
|
CONFIG_CLASSIC_RCU=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# System Type and features
|
# System Type and features
|
||||||
#
|
#
|
||||||
|
CONFIG_TICK_ONESHOT=y
|
||||||
|
CONFIG_NO_HZ=y
|
||||||
|
CONFIG_HIGH_RES_TIMERS=y
|
||||||
|
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
|
||||||
CONFIG_SUBARCH_AVR32B=y
|
CONFIG_SUBARCH_AVR32B=y
|
||||||
CONFIG_MMU=y
|
CONFIG_MMU=y
|
||||||
CONFIG_PERFORMANCE_COUNTERS=y
|
CONFIG_PERFORMANCE_COUNTERS=y
|
||||||
@ -141,16 +156,19 @@ CONFIG_FLATMEM=y
|
|||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
# CONFIG_SPARSEMEM_STATIC is not set
|
# CONFIG_SPARSEMEM_STATIC is not set
|
||||||
# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
|
# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
|
||||||
|
CONFIG_PAGEFLAGS_EXTENDED=y
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
# CONFIG_RESOURCES_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=0
|
CONFIG_ZONE_DMA_FLAG=0
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
# CONFIG_OWNERSHIP_TRACE is not set
|
# CONFIG_OWNERSHIP_TRACE is not set
|
||||||
|
CONFIG_NMI_DEBUGGING=y
|
||||||
# CONFIG_HZ_100 is not set
|
# CONFIG_HZ_100 is not set
|
||||||
CONFIG_HZ_250=y
|
CONFIG_HZ_250=y
|
||||||
# CONFIG_HZ_300 is not set
|
# CONFIG_HZ_300 is not set
|
||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=250
|
CONFIG_HZ=250
|
||||||
|
# CONFIG_SCHED_HRTICK is not set
|
||||||
CONFIG_CMDLINE=""
|
CONFIG_CMDLINE=""
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -164,9 +182,10 @@ CONFIG_CPU_FREQ=y
|
|||||||
CONFIG_CPU_FREQ_TABLE=y
|
CONFIG_CPU_FREQ_TABLE=y
|
||||||
# CONFIG_CPU_FREQ_DEBUG is not set
|
# CONFIG_CPU_FREQ_DEBUG is not set
|
||||||
# CONFIG_CPU_FREQ_STAT is not set
|
# CONFIG_CPU_FREQ_STAT is not set
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
||||||
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
|
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
||||||
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
|
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
|
||||||
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
|
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
|
||||||
@ -202,6 +221,7 @@ CONFIG_XFRM=y
|
|||||||
CONFIG_XFRM_USER=y
|
CONFIG_XFRM_USER=y
|
||||||
# CONFIG_XFRM_SUB_POLICY is not set
|
# CONFIG_XFRM_SUB_POLICY is not set
|
||||||
# CONFIG_XFRM_MIGRATE is not set
|
# CONFIG_XFRM_MIGRATE is not set
|
||||||
|
# CONFIG_XFRM_STATISTICS is not set
|
||||||
CONFIG_NET_KEY=y
|
CONFIG_NET_KEY=y
|
||||||
# CONFIG_NET_KEY_MIGRATE is not set
|
# CONFIG_NET_KEY_MIGRATE is not set
|
||||||
CONFIG_INET=y
|
CONFIG_INET=y
|
||||||
@ -255,87 +275,40 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=y
|
|||||||
CONFIG_INET6_XFRM_MODE_BEET=y
|
CONFIG_INET6_XFRM_MODE_BEET=y
|
||||||
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
|
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
|
||||||
CONFIG_IPV6_SIT=y
|
CONFIG_IPV6_SIT=y
|
||||||
|
CONFIG_IPV6_NDISC_NODETYPE=y
|
||||||
# CONFIG_IPV6_TUNNEL is not set
|
# CONFIG_IPV6_TUNNEL is not set
|
||||||
# CONFIG_IPV6_MULTIPLE_TABLES is not set
|
# CONFIG_IPV6_MULTIPLE_TABLES is not set
|
||||||
|
# CONFIG_IPV6_MROUTE is not set
|
||||||
# CONFIG_NETWORK_SECMARK is not set
|
# CONFIG_NETWORK_SECMARK is not set
|
||||||
CONFIG_NETFILTER=y
|
CONFIG_NETFILTER=y
|
||||||
# CONFIG_NETFILTER_DEBUG is not set
|
# CONFIG_NETFILTER_DEBUG is not set
|
||||||
CONFIG_BRIDGE_NETFILTER=y
|
# CONFIG_NETFILTER_ADVANCED is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Core Netfilter Configuration
|
# Core Netfilter Configuration
|
||||||
#
|
#
|
||||||
# CONFIG_NETFILTER_NETLINK is not set
|
CONFIG_NETFILTER_NETLINK=m
|
||||||
CONFIG_NF_CONNTRACK_ENABLED=m
|
CONFIG_NETFILTER_NETLINK_LOG=m
|
||||||
CONFIG_NF_CONNTRACK=m
|
CONFIG_NF_CONNTRACK=m
|
||||||
CONFIG_NF_CT_ACCT=y
|
|
||||||
CONFIG_NF_CONNTRACK_MARK=y
|
|
||||||
# CONFIG_NF_CONNTRACK_EVENTS is not set
|
|
||||||
CONFIG_NF_CT_PROTO_GRE=m
|
|
||||||
# CONFIG_NF_CT_PROTO_SCTP is not set
|
|
||||||
# CONFIG_NF_CT_PROTO_UDPLITE is not set
|
|
||||||
CONFIG_NF_CONNTRACK_AMANDA=m
|
|
||||||
CONFIG_NF_CONNTRACK_FTP=m
|
CONFIG_NF_CONNTRACK_FTP=m
|
||||||
CONFIG_NF_CONNTRACK_H323=m
|
|
||||||
CONFIG_NF_CONNTRACK_IRC=m
|
CONFIG_NF_CONNTRACK_IRC=m
|
||||||
CONFIG_NF_CONNTRACK_NETBIOS_NS=m
|
|
||||||
CONFIG_NF_CONNTRACK_PPTP=m
|
|
||||||
CONFIG_NF_CONNTRACK_SANE=m
|
|
||||||
CONFIG_NF_CONNTRACK_SIP=m
|
CONFIG_NF_CONNTRACK_SIP=m
|
||||||
CONFIG_NF_CONNTRACK_TFTP=m
|
CONFIG_NF_CT_NETLINK=m
|
||||||
CONFIG_NETFILTER_XTABLES=y
|
CONFIG_NETFILTER_XTABLES=y
|
||||||
CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
|
|
||||||
# CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set
|
|
||||||
# CONFIG_NETFILTER_XT_TARGET_DSCP is not set
|
|
||||||
CONFIG_NETFILTER_XT_TARGET_MARK=m
|
CONFIG_NETFILTER_XT_TARGET_MARK=m
|
||||||
CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
|
|
||||||
CONFIG_NETFILTER_XT_TARGET_NFLOG=m
|
CONFIG_NETFILTER_XT_TARGET_NFLOG=m
|
||||||
# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set
|
|
||||||
# CONFIG_NETFILTER_XT_TARGET_TRACE is not set
|
|
||||||
CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
|
CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
|
||||||
CONFIG_NETFILTER_XT_MATCH_COMMENT=m
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
|
|
||||||
# CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
|
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
|
||||||
# CONFIG_NETFILTER_XT_MATCH_DCCP is not set
|
|
||||||
# CONFIG_NETFILTER_XT_MATCH_DSCP is not set
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_ESP=m
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_HELPER=m
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_LENGTH=m
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_LIMIT=m
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_MAC=m
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_MARK=m
|
CONFIG_NETFILTER_XT_MATCH_MARK=m
|
||||||
CONFIG_NETFILTER_XT_MATCH_POLICY=m
|
CONFIG_NETFILTER_XT_MATCH_POLICY=m
|
||||||
CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
|
|
||||||
# CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_QUOTA=m
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_REALM=m
|
|
||||||
# CONFIG_NETFILTER_XT_MATCH_SCTP is not set
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_STATE=m
|
CONFIG_NETFILTER_XT_MATCH_STATE=m
|
||||||
CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_STRING=m
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
|
|
||||||
# CONFIG_NETFILTER_XT_MATCH_TIME is not set
|
|
||||||
# CONFIG_NETFILTER_XT_MATCH_U32 is not set
|
|
||||||
CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# IP: Netfilter Configuration
|
# IP: Netfilter Configuration
|
||||||
#
|
#
|
||||||
CONFIG_NF_CONNTRACK_IPV4=m
|
CONFIG_NF_CONNTRACK_IPV4=m
|
||||||
CONFIG_NF_CONNTRACK_PROC_COMPAT=y
|
CONFIG_NF_CONNTRACK_PROC_COMPAT=y
|
||||||
# CONFIG_IP_NF_QUEUE is not set
|
|
||||||
CONFIG_IP_NF_IPTABLES=m
|
CONFIG_IP_NF_IPTABLES=m
|
||||||
CONFIG_IP_NF_MATCH_IPRANGE=m
|
|
||||||
CONFIG_IP_NF_MATCH_TOS=m
|
|
||||||
CONFIG_IP_NF_MATCH_RECENT=m
|
|
||||||
CONFIG_IP_NF_MATCH_ECN=m
|
|
||||||
CONFIG_IP_NF_MATCH_AH=m
|
|
||||||
CONFIG_IP_NF_MATCH_TTL=m
|
|
||||||
CONFIG_IP_NF_MATCH_OWNER=m
|
|
||||||
CONFIG_IP_NF_MATCH_ADDRTYPE=m
|
|
||||||
CONFIG_IP_NF_FILTER=m
|
CONFIG_IP_NF_FILTER=m
|
||||||
CONFIG_IP_NF_TARGET_REJECT=m
|
CONFIG_IP_NF_TARGET_REJECT=m
|
||||||
CONFIG_IP_NF_TARGET_LOG=m
|
CONFIG_IP_NF_TARGET_LOG=m
|
||||||
@ -343,54 +316,25 @@ CONFIG_IP_NF_TARGET_LOG=m
|
|||||||
CONFIG_NF_NAT=m
|
CONFIG_NF_NAT=m
|
||||||
CONFIG_NF_NAT_NEEDED=y
|
CONFIG_NF_NAT_NEEDED=y
|
||||||
CONFIG_IP_NF_TARGET_MASQUERADE=m
|
CONFIG_IP_NF_TARGET_MASQUERADE=m
|
||||||
CONFIG_IP_NF_TARGET_REDIRECT=m
|
|
||||||
CONFIG_IP_NF_TARGET_NETMAP=m
|
|
||||||
CONFIG_IP_NF_TARGET_SAME=m
|
|
||||||
CONFIG_NF_NAT_SNMP_BASIC=m
|
|
||||||
CONFIG_NF_NAT_PROTO_GRE=m
|
|
||||||
CONFIG_NF_NAT_FTP=m
|
CONFIG_NF_NAT_FTP=m
|
||||||
CONFIG_NF_NAT_IRC=m
|
CONFIG_NF_NAT_IRC=m
|
||||||
CONFIG_NF_NAT_TFTP=m
|
# CONFIG_NF_NAT_TFTP is not set
|
||||||
CONFIG_NF_NAT_AMANDA=m
|
# CONFIG_NF_NAT_AMANDA is not set
|
||||||
CONFIG_NF_NAT_PPTP=m
|
# CONFIG_NF_NAT_PPTP is not set
|
||||||
CONFIG_NF_NAT_H323=m
|
# CONFIG_NF_NAT_H323 is not set
|
||||||
CONFIG_NF_NAT_SIP=m
|
CONFIG_NF_NAT_SIP=m
|
||||||
CONFIG_IP_NF_MANGLE=m
|
CONFIG_IP_NF_MANGLE=m
|
||||||
CONFIG_IP_NF_TARGET_TOS=m
|
|
||||||
CONFIG_IP_NF_TARGET_ECN=m
|
|
||||||
CONFIG_IP_NF_TARGET_TTL=m
|
|
||||||
CONFIG_IP_NF_TARGET_CLUSTERIP=m
|
|
||||||
CONFIG_IP_NF_RAW=m
|
|
||||||
CONFIG_IP_NF_ARPTABLES=m
|
|
||||||
CONFIG_IP_NF_ARPFILTER=m
|
|
||||||
CONFIG_IP_NF_ARP_MANGLE=m
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# IPv6: Netfilter Configuration (EXPERIMENTAL)
|
# IPv6: Netfilter Configuration
|
||||||
#
|
#
|
||||||
CONFIG_NF_CONNTRACK_IPV6=m
|
CONFIG_NF_CONNTRACK_IPV6=m
|
||||||
CONFIG_IP6_NF_QUEUE=m
|
|
||||||
CONFIG_IP6_NF_IPTABLES=m
|
CONFIG_IP6_NF_IPTABLES=m
|
||||||
CONFIG_IP6_NF_MATCH_RT=m
|
|
||||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
|
||||||
CONFIG_IP6_NF_MATCH_FRAG=m
|
|
||||||
CONFIG_IP6_NF_MATCH_HL=m
|
|
||||||
CONFIG_IP6_NF_MATCH_OWNER=m
|
|
||||||
CONFIG_IP6_NF_MATCH_IPV6HEADER=m
|
CONFIG_IP6_NF_MATCH_IPV6HEADER=m
|
||||||
CONFIG_IP6_NF_MATCH_AH=m
|
|
||||||
CONFIG_IP6_NF_MATCH_MH=m
|
|
||||||
CONFIG_IP6_NF_MATCH_EUI64=m
|
|
||||||
CONFIG_IP6_NF_FILTER=m
|
CONFIG_IP6_NF_FILTER=m
|
||||||
CONFIG_IP6_NF_TARGET_LOG=m
|
CONFIG_IP6_NF_TARGET_LOG=m
|
||||||
CONFIG_IP6_NF_TARGET_REJECT=m
|
CONFIG_IP6_NF_TARGET_REJECT=m
|
||||||
CONFIG_IP6_NF_MANGLE=m
|
CONFIG_IP6_NF_MANGLE=m
|
||||||
CONFIG_IP6_NF_TARGET_HL=m
|
|
||||||
CONFIG_IP6_NF_RAW=m
|
|
||||||
|
|
||||||
#
|
|
||||||
# Bridge: Netfilter Configuration
|
|
||||||
#
|
|
||||||
# CONFIG_BRIDGE_NF_EBTABLES is not set
|
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
# CONFIG_IP_SCTP is not set
|
# CONFIG_IP_SCTP is not set
|
||||||
# CONFIG_TIPC is not set
|
# CONFIG_TIPC is not set
|
||||||
@ -407,7 +351,6 @@ CONFIG_LLC=m
|
|||||||
# CONFIG_ECONET is not set
|
# CONFIG_ECONET is not set
|
||||||
# CONFIG_WAN_ROUTER is not set
|
# CONFIG_WAN_ROUTER is not set
|
||||||
# CONFIG_NET_SCHED is not set
|
# CONFIG_NET_SCHED is not set
|
||||||
CONFIG_NET_CLS_ROUTE=y
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Network testing
|
# Network testing
|
||||||
@ -415,6 +358,7 @@ CONFIG_NET_CLS_ROUTE=y
|
|||||||
# CONFIG_NET_PKTGEN is not set
|
# CONFIG_NET_PKTGEN is not set
|
||||||
# CONFIG_NET_TCPPROBE is not set
|
# CONFIG_NET_TCPPROBE is not set
|
||||||
# CONFIG_HAMRADIO is not set
|
# CONFIG_HAMRADIO is not set
|
||||||
|
# CONFIG_CAN is not set
|
||||||
# CONFIG_IRDA is not set
|
# CONFIG_IRDA is not set
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
@ -450,6 +394,7 @@ CONFIG_MTD=y
|
|||||||
CONFIG_MTD_PARTITIONS=y
|
CONFIG_MTD_PARTITIONS=y
|
||||||
# CONFIG_MTD_REDBOOT_PARTS is not set
|
# CONFIG_MTD_REDBOOT_PARTS is not set
|
||||||
CONFIG_MTD_CMDLINE_PARTS=y
|
CONFIG_MTD_CMDLINE_PARTS=y
|
||||||
|
# CONFIG_MTD_AR7_PARTS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# User Modules And Translation Layers
|
# User Modules And Translation Layers
|
||||||
@ -531,11 +476,18 @@ CONFIG_BLK_DEV_NBD=m
|
|||||||
CONFIG_BLK_DEV_RAM=m
|
CONFIG_BLK_DEV_RAM=m
|
||||||
CONFIG_BLK_DEV_RAM_COUNT=16
|
CONFIG_BLK_DEV_RAM_COUNT=16
|
||||||
CONFIG_BLK_DEV_RAM_SIZE=4096
|
CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
|
# CONFIG_BLK_DEV_XIP is not set
|
||||||
# CONFIG_CDROM_PKTCDVD is not set
|
# CONFIG_CDROM_PKTCDVD is not set
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
# CONFIG_MISC_DEVICES is not set
|
CONFIG_MISC_DEVICES=y
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_ATMEL_PWM is not set
|
||||||
|
CONFIG_ATMEL_TCLIB=y
|
||||||
|
CONFIG_ATMEL_TCB_CLKSRC=y
|
||||||
|
CONFIG_ATMEL_TCB_CLKSRC_BLOCK=0
|
||||||
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
|
# CONFIG_ATMEL_SSC is not set
|
||||||
|
# CONFIG_ENCLOSURE_SERVICES is not set
|
||||||
|
# CONFIG_HAVE_IDE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SCSI device support
|
# SCSI device support
|
||||||
@ -568,11 +520,13 @@ CONFIG_PHYLIB=y
|
|||||||
# CONFIG_SMSC_PHY is not set
|
# CONFIG_SMSC_PHY is not set
|
||||||
# CONFIG_BROADCOM_PHY is not set
|
# CONFIG_BROADCOM_PHY is not set
|
||||||
# CONFIG_ICPLUS_PHY is not set
|
# CONFIG_ICPLUS_PHY is not set
|
||||||
|
# CONFIG_REALTEK_PHY is not set
|
||||||
# CONFIG_FIXED_PHY is not set
|
# CONFIG_FIXED_PHY is not set
|
||||||
# CONFIG_MDIO_BITBANG is not set
|
# CONFIG_MDIO_BITBANG is not set
|
||||||
CONFIG_NET_ETHERNET=y
|
CONFIG_NET_ETHERNET=y
|
||||||
# CONFIG_MII is not set
|
# CONFIG_MII is not set
|
||||||
CONFIG_MACB=y
|
CONFIG_MACB=y
|
||||||
|
# CONFIG_ENC28J60 is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
@ -586,6 +540,7 @@ CONFIG_MACB=y
|
|||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
# CONFIG_WLAN_PRE80211 is not set
|
||||||
# CONFIG_WLAN_80211 is not set
|
# CONFIG_WLAN_80211 is not set
|
||||||
|
# CONFIG_IWLWIFI_LEDS is not set
|
||||||
# CONFIG_WAN is not set
|
# CONFIG_WAN is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
# CONFIG_PPP_MULTILINK is not set
|
# CONFIG_PPP_MULTILINK is not set
|
||||||
@ -599,7 +554,6 @@ CONFIG_PPPOE=m
|
|||||||
# CONFIG_PPPOL2TP is not set
|
# CONFIG_PPPOL2TP is not set
|
||||||
# CONFIG_SLIP is not set
|
# CONFIG_SLIP is not set
|
||||||
CONFIG_SLHC=m
|
CONFIG_SLHC=m
|
||||||
# CONFIG_SHAPER is not set
|
|
||||||
# CONFIG_NETCONSOLE is not set
|
# CONFIG_NETCONSOLE is not set
|
||||||
# CONFIG_NETPOLL is not set
|
# CONFIG_NETPOLL is not set
|
||||||
# CONFIG_NET_POLL_CONTROLLER is not set
|
# CONFIG_NET_POLL_CONTROLLER is not set
|
||||||
@ -621,6 +575,7 @@ CONFIG_SLHC=m
|
|||||||
# Character devices
|
# Character devices
|
||||||
#
|
#
|
||||||
# CONFIG_VT is not set
|
# CONFIG_VT is not set
|
||||||
|
# CONFIG_DEVKMEM is not set
|
||||||
# CONFIG_SERIAL_NONSTANDARD is not set
|
# CONFIG_SERIAL_NONSTANDARD is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -633,6 +588,7 @@ CONFIG_SLHC=m
|
|||||||
#
|
#
|
||||||
CONFIG_SERIAL_ATMEL=y
|
CONFIG_SERIAL_ATMEL=y
|
||||||
CONFIG_SERIAL_ATMEL_CONSOLE=y
|
CONFIG_SERIAL_ATMEL_CONSOLE=y
|
||||||
|
CONFIG_SERIAL_ATMEL_PDC=y
|
||||||
# CONFIG_SERIAL_ATMEL_TTYAT is not set
|
# CONFIG_SERIAL_ATMEL_TTYAT is not set
|
||||||
CONFIG_SERIAL_CORE=y
|
CONFIG_SERIAL_CORE=y
|
||||||
CONFIG_SERIAL_CORE_CONSOLE=y
|
CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
@ -640,21 +596,13 @@ CONFIG_UNIX98_PTYS=y
|
|||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_RTC is not set
|
|
||||||
# CONFIG_GEN_RTC is not set
|
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
# CONFIG_RAW_DRIVER is not set
|
# CONFIG_RAW_DRIVER is not set
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=m
|
CONFIG_I2C=m
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
CONFIG_I2C_CHARDEV=m
|
CONFIG_I2C_CHARDEV=m
|
||||||
|
|
||||||
#
|
|
||||||
# I2C Algorithms
|
|
||||||
#
|
|
||||||
CONFIG_I2C_ALGOBIT=m
|
CONFIG_I2C_ALGOBIT=m
|
||||||
# CONFIG_I2C_ALGOPCF is not set
|
|
||||||
# CONFIG_I2C_ALGOPCA is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# I2C Hardware Bus support
|
# I2C Hardware Bus support
|
||||||
@ -665,27 +613,23 @@ CONFIG_I2C_GPIO=m
|
|||||||
# CONFIG_I2C_SIMTEC is not set
|
# CONFIG_I2C_SIMTEC is not set
|
||||||
# CONFIG_I2C_TAOS_EVM is not set
|
# CONFIG_I2C_TAOS_EVM is not set
|
||||||
# CONFIG_I2C_STUB is not set
|
# CONFIG_I2C_STUB is not set
|
||||||
|
# CONFIG_I2C_PCA_PLATFORM is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_SENSORS_DS1337 is not set
|
|
||||||
# CONFIG_SENSORS_DS1374 is not set
|
|
||||||
# CONFIG_DS1682 is not set
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_SENSORS_EEPROM is not set
|
# CONFIG_SENSORS_EEPROM is not set
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
# CONFIG_SENSORS_PCF8574 is not set
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
# CONFIG_PCF8575 is not set
|
||||||
# CONFIG_SENSORS_PCF8591 is not set
|
# CONFIG_SENSORS_PCF8591 is not set
|
||||||
|
# CONFIG_TPS65010 is not set
|
||||||
# CONFIG_SENSORS_MAX6875 is not set
|
# CONFIG_SENSORS_MAX6875 is not set
|
||||||
# CONFIG_SENSORS_TSL2550 is not set
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
# CONFIG_I2C_DEBUG_BUS is not set
|
# CONFIG_I2C_DEBUG_BUS is not set
|
||||||
# CONFIG_I2C_DEBUG_CHIP is not set
|
# CONFIG_I2C_DEBUG_CHIP is not set
|
||||||
|
|
||||||
#
|
|
||||||
# SPI support
|
|
||||||
#
|
|
||||||
CONFIG_SPI=y
|
CONFIG_SPI=y
|
||||||
# CONFIG_SPI_DEBUG is not set
|
# CONFIG_SPI_DEBUG is not set
|
||||||
CONFIG_SPI_MASTER=y
|
CONFIG_SPI_MASTER=y
|
||||||
@ -702,9 +646,27 @@ CONFIG_SPI_ATMEL=y
|
|||||||
# CONFIG_SPI_AT25 is not set
|
# CONFIG_SPI_AT25 is not set
|
||||||
CONFIG_SPI_SPIDEV=m
|
CONFIG_SPI_SPIDEV=m
|
||||||
# CONFIG_SPI_TLE62X0 is not set
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
|
CONFIG_HAVE_GPIO_LIB=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# GPIO Support
|
||||||
|
#
|
||||||
|
# CONFIG_DEBUG_GPIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# I2C GPIO expanders:
|
||||||
|
#
|
||||||
|
# CONFIG_GPIO_PCA953X is not set
|
||||||
|
# CONFIG_GPIO_PCF857X is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# SPI GPIO expanders:
|
||||||
|
#
|
||||||
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
|
# CONFIG_THERMAL is not set
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
@ -724,12 +686,22 @@ CONFIG_SSB_POSSIBLE=y
|
|||||||
# Multifunction device drivers
|
# Multifunction device drivers
|
||||||
#
|
#
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Multimedia devices
|
# Multimedia devices
|
||||||
#
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Multimedia core support
|
||||||
|
#
|
||||||
# CONFIG_VIDEO_DEV is not set
|
# CONFIG_VIDEO_DEV is not set
|
||||||
# CONFIG_DVB_CORE is not set
|
# CONFIG_DVB_CORE is not set
|
||||||
|
# CONFIG_VIDEO_MEDIA is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Multimedia drivers
|
||||||
|
#
|
||||||
# CONFIG_DAB is not set
|
# CONFIG_DAB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -753,14 +725,12 @@ CONFIG_USB_SUPPORT=y
|
|||||||
# CONFIG_USB_ARCH_HAS_HCD is not set
|
# CONFIG_USB_ARCH_HAS_HCD is not set
|
||||||
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
||||||
# CONFIG_USB_ARCH_HAS_EHCI is not set
|
# CONFIG_USB_ARCH_HAS_EHCI is not set
|
||||||
|
# CONFIG_USB_OTG_WHITELIST is not set
|
||||||
|
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
|
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
|
||||||
# USB Gadget Support
|
|
||||||
#
|
|
||||||
CONFIG_USB_GADGET=y
|
CONFIG_USB_GADGET=y
|
||||||
# CONFIG_USB_GADGET_DEBUG is not set
|
# CONFIG_USB_GADGET_DEBUG is not set
|
||||||
# CONFIG_USB_GADGET_DEBUG_FILES is not set
|
# CONFIG_USB_GADGET_DEBUG_FILES is not set
|
||||||
@ -772,6 +742,7 @@ CONFIG_USB_ATMEL_USBA=y
|
|||||||
# CONFIG_USB_GADGET_NET2280 is not set
|
# CONFIG_USB_GADGET_NET2280 is not set
|
||||||
# CONFIG_USB_GADGET_PXA2XX is not set
|
# CONFIG_USB_GADGET_PXA2XX is not set
|
||||||
# CONFIG_USB_GADGET_M66592 is not set
|
# CONFIG_USB_GADGET_M66592 is not set
|
||||||
|
# CONFIG_USB_GADGET_PXA27X is not set
|
||||||
# CONFIG_USB_GADGET_GOKU is not set
|
# CONFIG_USB_GADGET_GOKU is not set
|
||||||
# CONFIG_USB_GADGET_LH7A40X is not set
|
# CONFIG_USB_GADGET_LH7A40X is not set
|
||||||
# CONFIG_USB_GADGET_OMAP is not set
|
# CONFIG_USB_GADGET_OMAP is not set
|
||||||
@ -787,6 +758,7 @@ CONFIG_USB_FILE_STORAGE=m
|
|||||||
# CONFIG_USB_FILE_STORAGE_TEST is not set
|
# CONFIG_USB_FILE_STORAGE_TEST is not set
|
||||||
CONFIG_USB_G_SERIAL=m
|
CONFIG_USB_G_SERIAL=m
|
||||||
# CONFIG_USB_MIDI_GADGET is not set
|
# CONFIG_USB_MIDI_GADGET is not set
|
||||||
|
# CONFIG_USB_G_PRINTER is not set
|
||||||
CONFIG_MMC=m
|
CONFIG_MMC=m
|
||||||
# CONFIG_MMC_DEBUG is not set
|
# CONFIG_MMC_DEBUG is not set
|
||||||
# CONFIG_MMC_UNSAFE_RESUME is not set
|
# CONFIG_MMC_UNSAFE_RESUME is not set
|
||||||
@ -797,11 +769,13 @@ CONFIG_MMC=m
|
|||||||
CONFIG_MMC_BLOCK=m
|
CONFIG_MMC_BLOCK=m
|
||||||
CONFIG_MMC_BLOCK_BOUNCE=y
|
CONFIG_MMC_BLOCK_BOUNCE=y
|
||||||
# CONFIG_SDIO_UART is not set
|
# CONFIG_SDIO_UART is not set
|
||||||
|
# CONFIG_MMC_TEST is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# MMC/SD Host Controller Drivers
|
# MMC/SD Host Controller Drivers
|
||||||
#
|
#
|
||||||
CONFIG_MMC_SPI=m
|
CONFIG_MMC_SPI=m
|
||||||
|
# CONFIG_MEMSTICK is not set
|
||||||
CONFIG_NEW_LEDS=y
|
CONFIG_NEW_LEDS=y
|
||||||
CONFIG_LEDS_CLASS=y
|
CONFIG_LEDS_CLASS=y
|
||||||
|
|
||||||
@ -816,6 +790,8 @@ CONFIG_LEDS_GPIO=y
|
|||||||
CONFIG_LEDS_TRIGGERS=y
|
CONFIG_LEDS_TRIGGERS=y
|
||||||
CONFIG_LEDS_TRIGGER_TIMER=y
|
CONFIG_LEDS_TRIGGER_TIMER=y
|
||||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=y
|
CONFIG_LEDS_TRIGGER_HEARTBEAT=y
|
||||||
|
CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
|
||||||
|
# CONFIG_ACCESSIBILITY is not set
|
||||||
CONFIG_RTC_LIB=y
|
CONFIG_RTC_LIB=y
|
||||||
CONFIG_RTC_CLASS=y
|
CONFIG_RTC_CLASS=y
|
||||||
CONFIG_RTC_HCTOSYS=y
|
CONFIG_RTC_HCTOSYS=y
|
||||||
@ -844,19 +820,22 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# CONFIG_RTC_DRV_PCF8563 is not set
|
# CONFIG_RTC_DRV_PCF8563 is not set
|
||||||
# CONFIG_RTC_DRV_PCF8583 is not set
|
# CONFIG_RTC_DRV_PCF8583 is not set
|
||||||
# CONFIG_RTC_DRV_M41T80 is not set
|
# CONFIG_RTC_DRV_M41T80 is not set
|
||||||
|
# CONFIG_RTC_DRV_S35390A is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
#
|
#
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
|
||||||
# CONFIG_RTC_DRV_MAX6902 is not set
|
# CONFIG_RTC_DRV_MAX6902 is not set
|
||||||
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
#
|
#
|
||||||
|
# CONFIG_RTC_DRV_DS1511 is not set
|
||||||
# CONFIG_RTC_DRV_DS1553 is not set
|
# CONFIG_RTC_DRV_DS1553 is not set
|
||||||
# CONFIG_RTC_DRV_STK17TA8 is not set
|
|
||||||
# CONFIG_RTC_DRV_DS1742 is not set
|
# CONFIG_RTC_DRV_DS1742 is not set
|
||||||
|
# CONFIG_RTC_DRV_STK17TA8 is not set
|
||||||
# CONFIG_RTC_DRV_M48T86 is not set
|
# CONFIG_RTC_DRV_M48T86 is not set
|
||||||
# CONFIG_RTC_DRV_M48T59 is not set
|
# CONFIG_RTC_DRV_M48T59 is not set
|
||||||
# CONFIG_RTC_DRV_V3020 is not set
|
# CONFIG_RTC_DRV_V3020 is not set
|
||||||
@ -865,10 +844,6 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# on-CPU RTC drivers
|
# on-CPU RTC drivers
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_AT32AP700X=y
|
CONFIG_RTC_DRV_AT32AP700X=y
|
||||||
|
|
||||||
#
|
|
||||||
# Userspace I/O
|
|
||||||
#
|
|
||||||
# CONFIG_UIO is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -885,14 +860,11 @@ CONFIG_JBD=m
|
|||||||
# CONFIG_JFS_FS is not set
|
# CONFIG_JFS_FS is not set
|
||||||
# CONFIG_FS_POSIX_ACL is not set
|
# CONFIG_FS_POSIX_ACL is not set
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
# CONFIG_GFS2_FS is not set
|
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
# CONFIG_MINIX_FS is not set
|
# CONFIG_DNOTIFY is not set
|
||||||
# CONFIG_ROMFS_FS is not set
|
|
||||||
CONFIG_INOTIFY=y
|
CONFIG_INOTIFY=y
|
||||||
CONFIG_INOTIFY_USER=y
|
CONFIG_INOTIFY_USER=y
|
||||||
# CONFIG_QUOTA is not set
|
# CONFIG_QUOTA is not set
|
||||||
# CONFIG_DNOTIFY is not set
|
|
||||||
# CONFIG_AUTOFS_FS is not set
|
# CONFIG_AUTOFS_FS is not set
|
||||||
# CONFIG_AUTOFS4_FS is not set
|
# CONFIG_AUTOFS4_FS is not set
|
||||||
CONFIG_FUSE_FS=m
|
CONFIG_FUSE_FS=m
|
||||||
@ -948,8 +920,10 @@ CONFIG_JFFS2_RTIME=y
|
|||||||
# CONFIG_JFFS2_RUBIN is not set
|
# CONFIG_JFFS2_RUBIN is not set
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
# CONFIG_VXFS_FS is not set
|
# CONFIG_VXFS_FS is not set
|
||||||
|
# CONFIG_MINIX_FS is not set
|
||||||
# CONFIG_HPFS_FS is not set
|
# CONFIG_HPFS_FS is not set
|
||||||
# CONFIG_QNX4FS_FS is not set
|
# CONFIG_QNX4FS_FS is not set
|
||||||
|
# CONFIG_ROMFS_FS is not set
|
||||||
# CONFIG_SYSV_FS is not set
|
# CONFIG_SYSV_FS is not set
|
||||||
# CONFIG_UFS_FS is not set
|
# CONFIG_UFS_FS is not set
|
||||||
CONFIG_NETWORK_FILESYSTEMS=y
|
CONFIG_NETWORK_FILESYSTEMS=y
|
||||||
@ -957,12 +931,10 @@ CONFIG_NFS_FS=y
|
|||||||
CONFIG_NFS_V3=y
|
CONFIG_NFS_V3=y
|
||||||
# CONFIG_NFS_V3_ACL is not set
|
# CONFIG_NFS_V3_ACL is not set
|
||||||
# CONFIG_NFS_V4 is not set
|
# CONFIG_NFS_V4 is not set
|
||||||
# CONFIG_NFS_DIRECTIO is not set
|
|
||||||
CONFIG_NFSD=m
|
CONFIG_NFSD=m
|
||||||
CONFIG_NFSD_V3=y
|
CONFIG_NFSD_V3=y
|
||||||
# CONFIG_NFSD_V3_ACL is not set
|
# CONFIG_NFSD_V3_ACL is not set
|
||||||
# CONFIG_NFSD_V4 is not set
|
# CONFIG_NFSD_V4 is not set
|
||||||
CONFIG_NFSD_TCP=y
|
|
||||||
CONFIG_ROOT_NFS=y
|
CONFIG_ROOT_NFS=y
|
||||||
CONFIG_LOCKD=y
|
CONFIG_LOCKD=y
|
||||||
CONFIG_LOCKD_V4=y
|
CONFIG_LOCKD_V4=y
|
||||||
@ -1030,11 +1002,6 @@ CONFIG_NLS_ISO8859_1=m
|
|||||||
# CONFIG_NLS_KOI8_U is not set
|
# CONFIG_NLS_KOI8_U is not set
|
||||||
CONFIG_NLS_UTF8=m
|
CONFIG_NLS_UTF8=m
|
||||||
# CONFIG_DLM is not set
|
# CONFIG_DLM is not set
|
||||||
CONFIG_INSTRUMENTATION=y
|
|
||||||
CONFIG_PROFILING=y
|
|
||||||
CONFIG_OPROFILE=m
|
|
||||||
CONFIG_KPROBES=y
|
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Kernel hacking
|
# Kernel hacking
|
||||||
@ -1042,6 +1009,7 @@ CONFIG_KPROBES=y
|
|||||||
# CONFIG_PRINTK_TIME is not set
|
# CONFIG_PRINTK_TIME is not set
|
||||||
CONFIG_ENABLE_WARN_DEPRECATED=y
|
CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
|
CONFIG_FRAME_WARN=1024
|
||||||
CONFIG_MAGIC_SYSRQ=y
|
CONFIG_MAGIC_SYSRQ=y
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
# CONFIG_DEBUG_FS is not set
|
# CONFIG_DEBUG_FS is not set
|
||||||
@ -1052,7 +1020,9 @@ CONFIG_DETECT_SOFTLOCKUP=y
|
|||||||
CONFIG_SCHED_DEBUG=y
|
CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_SCHEDSTATS is not set
|
# CONFIG_SCHEDSTATS is not set
|
||||||
# CONFIG_TIMER_STATS is not set
|
# CONFIG_TIMER_STATS is not set
|
||||||
|
# CONFIG_DEBUG_OBJECTS is not set
|
||||||
# CONFIG_SLUB_DEBUG_ON is not set
|
# CONFIG_SLUB_DEBUG_ON is not set
|
||||||
|
# CONFIG_SLUB_STATS is not set
|
||||||
# CONFIG_DEBUG_RT_MUTEXES is not set
|
# CONFIG_DEBUG_RT_MUTEXES is not set
|
||||||
# CONFIG_RT_MUTEX_TESTER is not set
|
# CONFIG_RT_MUTEX_TESTER is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK is not set
|
# CONFIG_DEBUG_SPINLOCK is not set
|
||||||
@ -1066,12 +1036,14 @@ CONFIG_SCHED_DEBUG=y
|
|||||||
CONFIG_DEBUG_BUGVERBOSE=y
|
CONFIG_DEBUG_BUGVERBOSE=y
|
||||||
# CONFIG_DEBUG_INFO is not set
|
# CONFIG_DEBUG_INFO is not set
|
||||||
# CONFIG_DEBUG_VM is not set
|
# CONFIG_DEBUG_VM is not set
|
||||||
|
# CONFIG_DEBUG_WRITECOUNT is not set
|
||||||
# CONFIG_DEBUG_LIST is not set
|
# CONFIG_DEBUG_LIST is not set
|
||||||
# CONFIG_DEBUG_SG is not set
|
# CONFIG_DEBUG_SG is not set
|
||||||
CONFIG_FRAME_POINTER=y
|
CONFIG_FRAME_POINTER=y
|
||||||
# CONFIG_FORCED_INLINING is not set
|
|
||||||
# CONFIG_BOOT_PRINTK_DELAY is not set
|
# CONFIG_BOOT_PRINTK_DELAY is not set
|
||||||
# CONFIG_RCU_TORTURE_TEST is not set
|
# CONFIG_RCU_TORTURE_TEST is not set
|
||||||
|
# CONFIG_KPROBES_SANITY_TEST is not set
|
||||||
|
# CONFIG_BACKTRACE_SELF_TEST is not set
|
||||||
# CONFIG_LKDTM is not set
|
# CONFIG_LKDTM is not set
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
@ -1083,52 +1055,90 @@ CONFIG_FRAME_POINTER=y
|
|||||||
# CONFIG_SECURITY is not set
|
# CONFIG_SECURITY is not set
|
||||||
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
||||||
CONFIG_CRYPTO=y
|
CONFIG_CRYPTO=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# Crypto core or helper
|
||||||
|
#
|
||||||
CONFIG_CRYPTO_ALGAPI=y
|
CONFIG_CRYPTO_ALGAPI=y
|
||||||
|
CONFIG_CRYPTO_AEAD=y
|
||||||
CONFIG_CRYPTO_BLKCIPHER=y
|
CONFIG_CRYPTO_BLKCIPHER=y
|
||||||
CONFIG_CRYPTO_HASH=y
|
CONFIG_CRYPTO_HASH=y
|
||||||
CONFIG_CRYPTO_MANAGER=y
|
CONFIG_CRYPTO_MANAGER=y
|
||||||
|
# CONFIG_CRYPTO_GF128MUL is not set
|
||||||
|
# CONFIG_CRYPTO_NULL is not set
|
||||||
|
# CONFIG_CRYPTO_CRYPTD is not set
|
||||||
|
CONFIG_CRYPTO_AUTHENC=y
|
||||||
|
# CONFIG_CRYPTO_TEST is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Authenticated Encryption with Associated Data
|
||||||
|
#
|
||||||
|
# CONFIG_CRYPTO_CCM is not set
|
||||||
|
# CONFIG_CRYPTO_GCM is not set
|
||||||
|
# CONFIG_CRYPTO_SEQIV is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Block modes
|
||||||
|
#
|
||||||
|
CONFIG_CRYPTO_CBC=y
|
||||||
|
# CONFIG_CRYPTO_CTR is not set
|
||||||
|
# CONFIG_CRYPTO_CTS is not set
|
||||||
|
CONFIG_CRYPTO_ECB=m
|
||||||
|
# CONFIG_CRYPTO_LRW is not set
|
||||||
|
CONFIG_CRYPTO_PCBC=m
|
||||||
|
# CONFIG_CRYPTO_XTS is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Hash modes
|
||||||
|
#
|
||||||
CONFIG_CRYPTO_HMAC=y
|
CONFIG_CRYPTO_HMAC=y
|
||||||
# CONFIG_CRYPTO_XCBC is not set
|
# CONFIG_CRYPTO_XCBC is not set
|
||||||
# CONFIG_CRYPTO_NULL is not set
|
|
||||||
|
#
|
||||||
|
# Digest
|
||||||
|
#
|
||||||
|
# CONFIG_CRYPTO_CRC32C is not set
|
||||||
# CONFIG_CRYPTO_MD4 is not set
|
# CONFIG_CRYPTO_MD4 is not set
|
||||||
CONFIG_CRYPTO_MD5=y
|
CONFIG_CRYPTO_MD5=y
|
||||||
|
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
||||||
CONFIG_CRYPTO_SHA1=y
|
CONFIG_CRYPTO_SHA1=y
|
||||||
# CONFIG_CRYPTO_SHA256 is not set
|
# CONFIG_CRYPTO_SHA256 is not set
|
||||||
# CONFIG_CRYPTO_SHA512 is not set
|
# CONFIG_CRYPTO_SHA512 is not set
|
||||||
# CONFIG_CRYPTO_WP512 is not set
|
|
||||||
# CONFIG_CRYPTO_TGR192 is not set
|
# CONFIG_CRYPTO_TGR192 is not set
|
||||||
# CONFIG_CRYPTO_GF128MUL is not set
|
# CONFIG_CRYPTO_WP512 is not set
|
||||||
CONFIG_CRYPTO_ECB=m
|
|
||||||
CONFIG_CRYPTO_CBC=y
|
#
|
||||||
CONFIG_CRYPTO_PCBC=m
|
# Ciphers
|
||||||
# CONFIG_CRYPTO_LRW is not set
|
#
|
||||||
# CONFIG_CRYPTO_XTS is not set
|
|
||||||
# CONFIG_CRYPTO_CRYPTD is not set
|
|
||||||
CONFIG_CRYPTO_DES=y
|
|
||||||
# CONFIG_CRYPTO_FCRYPT is not set
|
|
||||||
# CONFIG_CRYPTO_BLOWFISH is not set
|
|
||||||
# CONFIG_CRYPTO_TWOFISH is not set
|
|
||||||
# CONFIG_CRYPTO_SERPENT is not set
|
|
||||||
# CONFIG_CRYPTO_AES is not set
|
# CONFIG_CRYPTO_AES is not set
|
||||||
|
# CONFIG_CRYPTO_ANUBIS is not set
|
||||||
|
CONFIG_CRYPTO_ARC4=m
|
||||||
|
# CONFIG_CRYPTO_BLOWFISH is not set
|
||||||
|
# CONFIG_CRYPTO_CAMELLIA is not set
|
||||||
# CONFIG_CRYPTO_CAST5 is not set
|
# CONFIG_CRYPTO_CAST5 is not set
|
||||||
# CONFIG_CRYPTO_CAST6 is not set
|
# CONFIG_CRYPTO_CAST6 is not set
|
||||||
# CONFIG_CRYPTO_TEA is not set
|
CONFIG_CRYPTO_DES=y
|
||||||
CONFIG_CRYPTO_ARC4=m
|
# CONFIG_CRYPTO_FCRYPT is not set
|
||||||
# CONFIG_CRYPTO_KHAZAD is not set
|
# CONFIG_CRYPTO_KHAZAD is not set
|
||||||
# CONFIG_CRYPTO_ANUBIS is not set
|
# CONFIG_CRYPTO_SALSA20 is not set
|
||||||
# CONFIG_CRYPTO_SEED is not set
|
# CONFIG_CRYPTO_SEED is not set
|
||||||
|
# CONFIG_CRYPTO_SERPENT is not set
|
||||||
|
# CONFIG_CRYPTO_TEA is not set
|
||||||
|
# CONFIG_CRYPTO_TWOFISH is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Compression
|
||||||
|
#
|
||||||
CONFIG_CRYPTO_DEFLATE=y
|
CONFIG_CRYPTO_DEFLATE=y
|
||||||
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
# CONFIG_CRYPTO_LZO is not set
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
|
||||||
# CONFIG_CRYPTO_CAMELLIA is not set
|
|
||||||
# CONFIG_CRYPTO_TEST is not set
|
|
||||||
# CONFIG_CRYPTO_AUTHENC is not set
|
|
||||||
CONFIG_CRYPTO_HW=y
|
CONFIG_CRYPTO_HW=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Library routines
|
# Library routines
|
||||||
#
|
#
|
||||||
CONFIG_BITREVERSE=y
|
CONFIG_BITREVERSE=y
|
||||||
|
# CONFIG_GENERIC_FIND_FIRST_BIT is not set
|
||||||
|
# CONFIG_GENERIC_FIND_NEXT_BIT is not set
|
||||||
CONFIG_CRC_CCITT=m
|
CONFIG_CRC_CCITT=m
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
CONFIG_CRC_ITU_T=m
|
CONFIG_CRC_ITU_T=m
|
||||||
@ -1137,10 +1147,6 @@ CONFIG_CRC7=m
|
|||||||
# CONFIG_LIBCRC32C is not set
|
# CONFIG_LIBCRC32C is not set
|
||||||
CONFIG_ZLIB_INFLATE=y
|
CONFIG_ZLIB_INFLATE=y
|
||||||
CONFIG_ZLIB_DEFLATE=y
|
CONFIG_ZLIB_DEFLATE=y
|
||||||
CONFIG_TEXTSEARCH=y
|
|
||||||
CONFIG_TEXTSEARCH_KMP=m
|
|
||||||
CONFIG_TEXTSEARCH_BM=m
|
|
||||||
CONFIG_TEXTSEARCH_FSM=m
|
|
||||||
CONFIG_PLIST=y
|
CONFIG_PLIST=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_IOPORT=y
|
CONFIG_HAS_IOPORT=y
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.24-rc7
|
# Linux kernel version: 2.6.26-rc3
|
||||||
# Wed Jan 9 23:07:43 2008
|
# Mon May 26 13:30:20 2008
|
||||||
#
|
#
|
||||||
CONFIG_AVR32=y
|
CONFIG_AVR32=y
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
@ -13,10 +13,10 @@ CONFIG_HARDIRQS_SW_RESEND=y
|
|||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
||||||
CONFIG_GENERIC_TIME=y
|
CONFIG_GENERIC_TIME=y
|
||||||
|
CONFIG_GENERIC_CLOCKEVENTS=y
|
||||||
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
||||||
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
|
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
|
||||||
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
|
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
|
||||||
CONFIG_ARCH_SUPPORTS_OPROFILE=y
|
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
CONFIG_GENERIC_HWEIGHT=y
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
CONFIG_GENERIC_BUG=y
|
CONFIG_GENERIC_BUG=y
|
||||||
@ -36,15 +36,15 @@ CONFIG_SYSVIPC_SYSCTL=y
|
|||||||
CONFIG_POSIX_MQUEUE=y
|
CONFIG_POSIX_MQUEUE=y
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_USER_NS is not set
|
|
||||||
# CONFIG_PID_NS is not set
|
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
# CONFIG_IKCONFIG is not set
|
# CONFIG_IKCONFIG is not set
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
# CONFIG_CGROUPS is not set
|
# CONFIG_CGROUPS is not set
|
||||||
# CONFIG_FAIR_GROUP_SCHED is not set
|
# CONFIG_GROUP_SCHED is not set
|
||||||
CONFIG_SYSFS_DEPRECATED=y
|
CONFIG_SYSFS_DEPRECATED=y
|
||||||
|
CONFIG_SYSFS_DEPRECATED_V2=y
|
||||||
CONFIG_RELAY=y
|
CONFIG_RELAY=y
|
||||||
|
# CONFIG_NAMESPACES is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
CONFIG_INITRAMFS_SOURCE=""
|
||||||
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
|
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
|
||||||
@ -58,11 +58,13 @@ CONFIG_HOTPLUG=y
|
|||||||
CONFIG_PRINTK=y
|
CONFIG_PRINTK=y
|
||||||
CONFIG_BUG=y
|
CONFIG_BUG=y
|
||||||
CONFIG_ELF_CORE=y
|
CONFIG_ELF_CORE=y
|
||||||
|
# CONFIG_COMPAT_BRK is not set
|
||||||
# CONFIG_BASE_FULL is not set
|
# CONFIG_BASE_FULL is not set
|
||||||
CONFIG_FUTEX=y
|
CONFIG_FUTEX=y
|
||||||
CONFIG_ANON_INODES=y
|
CONFIG_ANON_INODES=y
|
||||||
CONFIG_EPOLL=y
|
CONFIG_EPOLL=y
|
||||||
CONFIG_SIGNALFD=y
|
CONFIG_SIGNALFD=y
|
||||||
|
CONFIG_TIMERFD=y
|
||||||
CONFIG_EVENTFD=y
|
CONFIG_EVENTFD=y
|
||||||
CONFIG_SHMEM=y
|
CONFIG_SHMEM=y
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
@ -70,11 +72,21 @@ CONFIG_SLUB_DEBUG=y
|
|||||||
# CONFIG_SLAB is not set
|
# CONFIG_SLAB is not set
|
||||||
CONFIG_SLUB=y
|
CONFIG_SLUB=y
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
|
CONFIG_PROFILING=y
|
||||||
|
# CONFIG_MARKERS is not set
|
||||||
|
CONFIG_OPROFILE=m
|
||||||
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
CONFIG_KPROBES=y
|
||||||
|
CONFIG_HAVE_KPROBES=y
|
||||||
|
# CONFIG_HAVE_KRETPROBES is not set
|
||||||
|
# CONFIG_HAVE_DMA_ATTRS is not set
|
||||||
|
CONFIG_PROC_PAGE_MONITOR=y
|
||||||
CONFIG_SLABINFO=y
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_RT_MUTEXES=y
|
CONFIG_RT_MUTEXES=y
|
||||||
# CONFIG_TINY_SHMEM is not set
|
# CONFIG_TINY_SHMEM is not set
|
||||||
CONFIG_BASE_SMALL=1
|
CONFIG_BASE_SMALL=1
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
|
# CONFIG_MODULE_FORCE_LOAD is not set
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
@ -98,10 +110,15 @@ CONFIG_IOSCHED_CFQ=y
|
|||||||
CONFIG_DEFAULT_CFQ=y
|
CONFIG_DEFAULT_CFQ=y
|
||||||
# CONFIG_DEFAULT_NOOP is not set
|
# CONFIG_DEFAULT_NOOP is not set
|
||||||
CONFIG_DEFAULT_IOSCHED="cfq"
|
CONFIG_DEFAULT_IOSCHED="cfq"
|
||||||
|
CONFIG_CLASSIC_RCU=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# System Type and features
|
# System Type and features
|
||||||
#
|
#
|
||||||
|
CONFIG_TICK_ONESHOT=y
|
||||||
|
CONFIG_NO_HZ=y
|
||||||
|
CONFIG_HIGH_RES_TIMERS=y
|
||||||
|
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
|
||||||
CONFIG_SUBARCH_AVR32B=y
|
CONFIG_SUBARCH_AVR32B=y
|
||||||
CONFIG_MMU=y
|
CONFIG_MMU=y
|
||||||
CONFIG_PERFORMANCE_COUNTERS=y
|
CONFIG_PERFORMANCE_COUNTERS=y
|
||||||
@ -147,16 +164,19 @@ CONFIG_FLATMEM=y
|
|||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
# CONFIG_SPARSEMEM_STATIC is not set
|
# CONFIG_SPARSEMEM_STATIC is not set
|
||||||
# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
|
# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
|
||||||
|
CONFIG_PAGEFLAGS_EXTENDED=y
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
# CONFIG_RESOURCES_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=0
|
CONFIG_ZONE_DMA_FLAG=0
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
# CONFIG_OWNERSHIP_TRACE is not set
|
# CONFIG_OWNERSHIP_TRACE is not set
|
||||||
|
CONFIG_NMI_DEBUGGING=y
|
||||||
# CONFIG_HZ_100 is not set
|
# CONFIG_HZ_100 is not set
|
||||||
CONFIG_HZ_250=y
|
CONFIG_HZ_250=y
|
||||||
# CONFIG_HZ_300 is not set
|
# CONFIG_HZ_300 is not set
|
||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=250
|
CONFIG_HZ=250
|
||||||
|
# CONFIG_SCHED_HRTICK is not set
|
||||||
CONFIG_CMDLINE=""
|
CONFIG_CMDLINE=""
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -170,9 +190,10 @@ CONFIG_CPU_FREQ=y
|
|||||||
CONFIG_CPU_FREQ_TABLE=y
|
CONFIG_CPU_FREQ_TABLE=y
|
||||||
# CONFIG_CPU_FREQ_DEBUG is not set
|
# CONFIG_CPU_FREQ_DEBUG is not set
|
||||||
# CONFIG_CPU_FREQ_STAT is not set
|
# CONFIG_CPU_FREQ_STAT is not set
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
||||||
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
|
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
||||||
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
|
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
|
||||||
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
|
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
|
||||||
@ -208,6 +229,7 @@ CONFIG_XFRM=y
|
|||||||
CONFIG_XFRM_USER=m
|
CONFIG_XFRM_USER=m
|
||||||
# CONFIG_XFRM_SUB_POLICY is not set
|
# CONFIG_XFRM_SUB_POLICY is not set
|
||||||
# CONFIG_XFRM_MIGRATE is not set
|
# CONFIG_XFRM_MIGRATE is not set
|
||||||
|
# CONFIG_XFRM_STATISTICS is not set
|
||||||
CONFIG_NET_KEY=m
|
CONFIG_NET_KEY=m
|
||||||
# CONFIG_NET_KEY_MIGRATE is not set
|
# CONFIG_NET_KEY_MIGRATE is not set
|
||||||
CONFIG_INET=y
|
CONFIG_INET=y
|
||||||
@ -252,8 +274,10 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=m
|
|||||||
CONFIG_INET6_XFRM_MODE_BEET=m
|
CONFIG_INET6_XFRM_MODE_BEET=m
|
||||||
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
|
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
|
||||||
CONFIG_IPV6_SIT=m
|
CONFIG_IPV6_SIT=m
|
||||||
|
CONFIG_IPV6_NDISC_NODETYPE=y
|
||||||
CONFIG_IPV6_TUNNEL=m
|
CONFIG_IPV6_TUNNEL=m
|
||||||
# CONFIG_IPV6_MULTIPLE_TABLES is not set
|
# CONFIG_IPV6_MULTIPLE_TABLES is not set
|
||||||
|
# CONFIG_IPV6_MROUTE is not set
|
||||||
# CONFIG_NETWORK_SECMARK is not set
|
# CONFIG_NETWORK_SECMARK is not set
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
@ -279,6 +303,7 @@ CONFIG_LLC=m
|
|||||||
# CONFIG_NET_PKTGEN is not set
|
# CONFIG_NET_PKTGEN is not set
|
||||||
# CONFIG_NET_TCPPROBE is not set
|
# CONFIG_NET_TCPPROBE is not set
|
||||||
# CONFIG_HAMRADIO is not set
|
# CONFIG_HAMRADIO is not set
|
||||||
|
# CONFIG_CAN is not set
|
||||||
# CONFIG_IRDA is not set
|
# CONFIG_IRDA is not set
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
@ -314,6 +339,7 @@ CONFIG_MTD=y
|
|||||||
CONFIG_MTD_PARTITIONS=y
|
CONFIG_MTD_PARTITIONS=y
|
||||||
# CONFIG_MTD_REDBOOT_PARTS is not set
|
# CONFIG_MTD_REDBOOT_PARTS is not set
|
||||||
CONFIG_MTD_CMDLINE_PARTS=y
|
CONFIG_MTD_CMDLINE_PARTS=y
|
||||||
|
# CONFIG_MTD_AR7_PARTS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# User Modules And Translation Layers
|
# User Modules And Translation Layers
|
||||||
@ -368,6 +394,7 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2
|
|||||||
#
|
#
|
||||||
CONFIG_MTD_DATAFLASH=m
|
CONFIG_MTD_DATAFLASH=m
|
||||||
CONFIG_MTD_M25P80=m
|
CONFIG_MTD_M25P80=m
|
||||||
|
CONFIG_M25PXX_USE_FAST_READ=y
|
||||||
# CONFIG_MTD_SLRAM is not set
|
# CONFIG_MTD_SLRAM is not set
|
||||||
# CONFIG_MTD_PHRAM is not set
|
# CONFIG_MTD_PHRAM is not set
|
||||||
# CONFIG_MTD_MTDRAM is not set
|
# CONFIG_MTD_MTDRAM is not set
|
||||||
@ -395,13 +422,18 @@ CONFIG_BLK_DEV_NBD=m
|
|||||||
CONFIG_BLK_DEV_RAM=m
|
CONFIG_BLK_DEV_RAM=m
|
||||||
CONFIG_BLK_DEV_RAM_COUNT=16
|
CONFIG_BLK_DEV_RAM_COUNT=16
|
||||||
CONFIG_BLK_DEV_RAM_SIZE=4096
|
CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
|
# CONFIG_BLK_DEV_XIP is not set
|
||||||
# CONFIG_CDROM_PKTCDVD is not set
|
# CONFIG_CDROM_PKTCDVD is not set
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
CONFIG_MISC_DEVICES=y
|
CONFIG_MISC_DEVICES=y
|
||||||
|
CONFIG_ATMEL_PWM=m
|
||||||
|
CONFIG_ATMEL_TCLIB=y
|
||||||
|
CONFIG_ATMEL_TCB_CLKSRC=y
|
||||||
|
CONFIG_ATMEL_TCB_CLKSRC_BLOCK=0
|
||||||
# CONFIG_EEPROM_93CX6 is not set
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
CONFIG_ATMEL_SSC=m
|
CONFIG_ATMEL_SSC=m
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_ENCLOSURE_SERVICES is not set
|
||||||
|
# CONFIG_HAVE_IDE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SCSI device support
|
# SCSI device support
|
||||||
@ -444,6 +476,9 @@ CONFIG_SCSI_WAIT_SCAN=m
|
|||||||
# CONFIG_SCSI_LOWLEVEL is not set
|
# CONFIG_SCSI_LOWLEVEL is not set
|
||||||
CONFIG_ATA=m
|
CONFIG_ATA=m
|
||||||
# CONFIG_ATA_NONSTANDARD is not set
|
# CONFIG_ATA_NONSTANDARD is not set
|
||||||
|
# CONFIG_SATA_PMP is not set
|
||||||
|
CONFIG_ATA_SFF=y
|
||||||
|
# CONFIG_SATA_MV is not set
|
||||||
CONFIG_PATA_AT32=m
|
CONFIG_PATA_AT32=m
|
||||||
# CONFIG_PATA_PLATFORM is not set
|
# CONFIG_PATA_PLATFORM is not set
|
||||||
# CONFIG_MD is not set
|
# CONFIG_MD is not set
|
||||||
@ -469,11 +504,13 @@ CONFIG_PHYLIB=y
|
|||||||
# CONFIG_SMSC_PHY is not set
|
# CONFIG_SMSC_PHY is not set
|
||||||
# CONFIG_BROADCOM_PHY is not set
|
# CONFIG_BROADCOM_PHY is not set
|
||||||
# CONFIG_ICPLUS_PHY is not set
|
# CONFIG_ICPLUS_PHY is not set
|
||||||
|
# CONFIG_REALTEK_PHY is not set
|
||||||
# CONFIG_FIXED_PHY is not set
|
# CONFIG_FIXED_PHY is not set
|
||||||
# CONFIG_MDIO_BITBANG is not set
|
# CONFIG_MDIO_BITBANG is not set
|
||||||
CONFIG_NET_ETHERNET=y
|
CONFIG_NET_ETHERNET=y
|
||||||
# CONFIG_MII is not set
|
# CONFIG_MII is not set
|
||||||
CONFIG_MACB=y
|
CONFIG_MACB=y
|
||||||
|
# CONFIG_ENC28J60 is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
@ -487,6 +524,7 @@ CONFIG_MACB=y
|
|||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
# CONFIG_WLAN_PRE80211 is not set
|
||||||
# CONFIG_WLAN_80211 is not set
|
# CONFIG_WLAN_80211 is not set
|
||||||
|
# CONFIG_IWLWIFI_LEDS is not set
|
||||||
# CONFIG_WAN is not set
|
# CONFIG_WAN is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
# CONFIG_PPP_MULTILINK is not set
|
# CONFIG_PPP_MULTILINK is not set
|
||||||
@ -500,7 +538,6 @@ CONFIG_PPP_BSDCOMP=m
|
|||||||
# CONFIG_PPPOL2TP is not set
|
# CONFIG_PPPOL2TP is not set
|
||||||
# CONFIG_SLIP is not set
|
# CONFIG_SLIP is not set
|
||||||
CONFIG_SLHC=m
|
CONFIG_SLHC=m
|
||||||
# CONFIG_SHAPER is not set
|
|
||||||
# CONFIG_NETCONSOLE is not set
|
# CONFIG_NETCONSOLE is not set
|
||||||
# CONFIG_NETPOLL is not set
|
# CONFIG_NETPOLL is not set
|
||||||
# CONFIG_NET_POLL_CONTROLLER is not set
|
# CONFIG_NET_POLL_CONTROLLER is not set
|
||||||
@ -556,6 +593,7 @@ CONFIG_MOUSE_GPIO=m
|
|||||||
# Character devices
|
# Character devices
|
||||||
#
|
#
|
||||||
# CONFIG_VT is not set
|
# CONFIG_VT is not set
|
||||||
|
# CONFIG_DEVKMEM is not set
|
||||||
# CONFIG_SERIAL_NONSTANDARD is not set
|
# CONFIG_SERIAL_NONSTANDARD is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -568,6 +606,7 @@ CONFIG_MOUSE_GPIO=m
|
|||||||
#
|
#
|
||||||
CONFIG_SERIAL_ATMEL=y
|
CONFIG_SERIAL_ATMEL=y
|
||||||
CONFIG_SERIAL_ATMEL_CONSOLE=y
|
CONFIG_SERIAL_ATMEL_CONSOLE=y
|
||||||
|
CONFIG_SERIAL_ATMEL_PDC=y
|
||||||
# CONFIG_SERIAL_ATMEL_TTYAT is not set
|
# CONFIG_SERIAL_ATMEL_TTYAT is not set
|
||||||
CONFIG_SERIAL_CORE=y
|
CONFIG_SERIAL_CORE=y
|
||||||
CONFIG_SERIAL_CORE_CONSOLE=y
|
CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
@ -575,21 +614,13 @@ CONFIG_UNIX98_PTYS=y
|
|||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_RTC is not set
|
|
||||||
# CONFIG_GEN_RTC is not set
|
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
# CONFIG_RAW_DRIVER is not set
|
# CONFIG_RAW_DRIVER is not set
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=m
|
CONFIG_I2C=m
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
CONFIG_I2C_CHARDEV=m
|
CONFIG_I2C_CHARDEV=m
|
||||||
|
|
||||||
#
|
|
||||||
# I2C Algorithms
|
|
||||||
#
|
|
||||||
CONFIG_I2C_ALGOBIT=m
|
CONFIG_I2C_ALGOBIT=m
|
||||||
# CONFIG_I2C_ALGOPCF is not set
|
|
||||||
# CONFIG_I2C_ALGOPCA is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# I2C Hardware Bus support
|
# I2C Hardware Bus support
|
||||||
@ -600,27 +631,23 @@ CONFIG_I2C_GPIO=m
|
|||||||
# CONFIG_I2C_SIMTEC is not set
|
# CONFIG_I2C_SIMTEC is not set
|
||||||
# CONFIG_I2C_TAOS_EVM is not set
|
# CONFIG_I2C_TAOS_EVM is not set
|
||||||
# CONFIG_I2C_STUB is not set
|
# CONFIG_I2C_STUB is not set
|
||||||
|
# CONFIG_I2C_PCA_PLATFORM is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_SENSORS_DS1337 is not set
|
|
||||||
# CONFIG_SENSORS_DS1374 is not set
|
|
||||||
# CONFIG_DS1682 is not set
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_SENSORS_EEPROM is not set
|
# CONFIG_SENSORS_EEPROM is not set
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
# CONFIG_SENSORS_PCF8574 is not set
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
# CONFIG_PCF8575 is not set
|
||||||
# CONFIG_SENSORS_PCF8591 is not set
|
# CONFIG_SENSORS_PCF8591 is not set
|
||||||
|
# CONFIG_TPS65010 is not set
|
||||||
# CONFIG_SENSORS_MAX6875 is not set
|
# CONFIG_SENSORS_MAX6875 is not set
|
||||||
# CONFIG_SENSORS_TSL2550 is not set
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
# CONFIG_I2C_DEBUG_BUS is not set
|
# CONFIG_I2C_DEBUG_BUS is not set
|
||||||
# CONFIG_I2C_DEBUG_CHIP is not set
|
# CONFIG_I2C_DEBUG_CHIP is not set
|
||||||
|
|
||||||
#
|
|
||||||
# SPI support
|
|
||||||
#
|
|
||||||
CONFIG_SPI=y
|
CONFIG_SPI=y
|
||||||
# CONFIG_SPI_DEBUG is not set
|
# CONFIG_SPI_DEBUG is not set
|
||||||
CONFIG_SPI_MASTER=y
|
CONFIG_SPI_MASTER=y
|
||||||
@ -637,9 +664,27 @@ CONFIG_SPI_ATMEL=y
|
|||||||
# CONFIG_SPI_AT25 is not set
|
# CONFIG_SPI_AT25 is not set
|
||||||
CONFIG_SPI_SPIDEV=m
|
CONFIG_SPI_SPIDEV=m
|
||||||
# CONFIG_SPI_TLE62X0 is not set
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
|
CONFIG_HAVE_GPIO_LIB=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# GPIO Support
|
||||||
|
#
|
||||||
|
# CONFIG_DEBUG_GPIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# I2C GPIO expanders:
|
||||||
|
#
|
||||||
|
# CONFIG_GPIO_PCA953X is not set
|
||||||
|
# CONFIG_GPIO_PCF857X is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# SPI GPIO expanders:
|
||||||
|
#
|
||||||
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
|
# CONFIG_THERMAL is not set
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
@ -659,12 +704,22 @@ CONFIG_SSB_POSSIBLE=y
|
|||||||
# Multifunction device drivers
|
# Multifunction device drivers
|
||||||
#
|
#
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Multimedia devices
|
# Multimedia devices
|
||||||
#
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Multimedia core support
|
||||||
|
#
|
||||||
# CONFIG_VIDEO_DEV is not set
|
# CONFIG_VIDEO_DEV is not set
|
||||||
# CONFIG_DVB_CORE is not set
|
# CONFIG_DVB_CORE is not set
|
||||||
|
# CONFIG_VIDEO_MEDIA is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Multimedia drivers
|
||||||
|
#
|
||||||
# CONFIG_DAB is not set
|
# CONFIG_DAB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -682,8 +737,8 @@ CONFIG_FB_CFB_IMAGEBLIT=y
|
|||||||
# CONFIG_FB_SYS_FILLRECT is not set
|
# CONFIG_FB_SYS_FILLRECT is not set
|
||||||
# CONFIG_FB_SYS_COPYAREA is not set
|
# CONFIG_FB_SYS_COPYAREA is not set
|
||||||
# CONFIG_FB_SYS_IMAGEBLIT is not set
|
# CONFIG_FB_SYS_IMAGEBLIT is not set
|
||||||
|
# CONFIG_FB_FOREIGN_ENDIAN is not set
|
||||||
# CONFIG_FB_SYS_FOPS is not set
|
# CONFIG_FB_SYS_FOPS is not set
|
||||||
CONFIG_FB_DEFERRED_IO=y
|
|
||||||
# CONFIG_FB_SVGALIB is not set
|
# CONFIG_FB_SVGALIB is not set
|
||||||
# CONFIG_FB_MACMODES is not set
|
# CONFIG_FB_MACMODES is not set
|
||||||
# CONFIG_FB_BACKLIGHT is not set
|
# CONFIG_FB_BACKLIGHT is not set
|
||||||
@ -749,7 +804,11 @@ CONFIG_SND_AT73C213_TARGET_BITRATE=48000
|
|||||||
# CONFIG_SND_SOC is not set
|
# CONFIG_SND_SOC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SoC Audio support for SuperH
|
# ALSA SoC audio for Freescale SOCs
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# SoC Audio for the Texas Instruments OMAP
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -761,14 +820,12 @@ CONFIG_USB_SUPPORT=y
|
|||||||
# CONFIG_USB_ARCH_HAS_HCD is not set
|
# CONFIG_USB_ARCH_HAS_HCD is not set
|
||||||
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
||||||
# CONFIG_USB_ARCH_HAS_EHCI is not set
|
# CONFIG_USB_ARCH_HAS_EHCI is not set
|
||||||
|
# CONFIG_USB_OTG_WHITELIST is not set
|
||||||
|
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
|
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
|
||||||
# USB Gadget Support
|
|
||||||
#
|
|
||||||
CONFIG_USB_GADGET=y
|
CONFIG_USB_GADGET=y
|
||||||
# CONFIG_USB_GADGET_DEBUG is not set
|
# CONFIG_USB_GADGET_DEBUG is not set
|
||||||
# CONFIG_USB_GADGET_DEBUG_FILES is not set
|
# CONFIG_USB_GADGET_DEBUG_FILES is not set
|
||||||
@ -781,6 +838,7 @@ CONFIG_USB_ATMEL_USBA=y
|
|||||||
# CONFIG_USB_GADGET_NET2280 is not set
|
# CONFIG_USB_GADGET_NET2280 is not set
|
||||||
# CONFIG_USB_GADGET_PXA2XX is not set
|
# CONFIG_USB_GADGET_PXA2XX is not set
|
||||||
# CONFIG_USB_GADGET_M66592 is not set
|
# CONFIG_USB_GADGET_M66592 is not set
|
||||||
|
# CONFIG_USB_GADGET_PXA27X is not set
|
||||||
# CONFIG_USB_GADGET_GOKU is not set
|
# CONFIG_USB_GADGET_GOKU is not set
|
||||||
# CONFIG_USB_GADGET_LH7A40X is not set
|
# CONFIG_USB_GADGET_LH7A40X is not set
|
||||||
# CONFIG_USB_GADGET_OMAP is not set
|
# CONFIG_USB_GADGET_OMAP is not set
|
||||||
@ -796,6 +854,7 @@ CONFIG_USB_FILE_STORAGE=m
|
|||||||
# CONFIG_USB_FILE_STORAGE_TEST is not set
|
# CONFIG_USB_FILE_STORAGE_TEST is not set
|
||||||
CONFIG_USB_G_SERIAL=m
|
CONFIG_USB_G_SERIAL=m
|
||||||
# CONFIG_USB_MIDI_GADGET is not set
|
# CONFIG_USB_MIDI_GADGET is not set
|
||||||
|
# CONFIG_USB_G_PRINTER is not set
|
||||||
CONFIG_MMC=m
|
CONFIG_MMC=m
|
||||||
# CONFIG_MMC_DEBUG is not set
|
# CONFIG_MMC_DEBUG is not set
|
||||||
# CONFIG_MMC_UNSAFE_RESUME is not set
|
# CONFIG_MMC_UNSAFE_RESUME is not set
|
||||||
@ -806,17 +865,20 @@ CONFIG_MMC=m
|
|||||||
CONFIG_MMC_BLOCK=m
|
CONFIG_MMC_BLOCK=m
|
||||||
CONFIG_MMC_BLOCK_BOUNCE=y
|
CONFIG_MMC_BLOCK_BOUNCE=y
|
||||||
# CONFIG_SDIO_UART is not set
|
# CONFIG_SDIO_UART is not set
|
||||||
|
CONFIG_MMC_TEST=m
|
||||||
|
|
||||||
#
|
#
|
||||||
# MMC/SD Host Controller Drivers
|
# MMC/SD Host Controller Drivers
|
||||||
#
|
#
|
||||||
CONFIG_MMC_SPI=m
|
CONFIG_MMC_SPI=m
|
||||||
|
# CONFIG_MEMSTICK is not set
|
||||||
CONFIG_NEW_LEDS=y
|
CONFIG_NEW_LEDS=y
|
||||||
CONFIG_LEDS_CLASS=m
|
CONFIG_LEDS_CLASS=m
|
||||||
|
|
||||||
#
|
#
|
||||||
# LED drivers
|
# LED drivers
|
||||||
#
|
#
|
||||||
|
CONFIG_LEDS_ATMEL_PWM=m
|
||||||
CONFIG_LEDS_GPIO=m
|
CONFIG_LEDS_GPIO=m
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -825,6 +887,8 @@ CONFIG_LEDS_GPIO=m
|
|||||||
CONFIG_LEDS_TRIGGERS=y
|
CONFIG_LEDS_TRIGGERS=y
|
||||||
CONFIG_LEDS_TRIGGER_TIMER=m
|
CONFIG_LEDS_TRIGGER_TIMER=m
|
||||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||||
|
CONFIG_LEDS_TRIGGER_DEFAULT_ON=m
|
||||||
|
# CONFIG_ACCESSIBILITY is not set
|
||||||
CONFIG_RTC_LIB=y
|
CONFIG_RTC_LIB=y
|
||||||
CONFIG_RTC_CLASS=y
|
CONFIG_RTC_CLASS=y
|
||||||
CONFIG_RTC_HCTOSYS=y
|
CONFIG_RTC_HCTOSYS=y
|
||||||
@ -853,19 +917,22 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# CONFIG_RTC_DRV_PCF8563 is not set
|
# CONFIG_RTC_DRV_PCF8563 is not set
|
||||||
# CONFIG_RTC_DRV_PCF8583 is not set
|
# CONFIG_RTC_DRV_PCF8583 is not set
|
||||||
# CONFIG_RTC_DRV_M41T80 is not set
|
# CONFIG_RTC_DRV_M41T80 is not set
|
||||||
|
# CONFIG_RTC_DRV_S35390A is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
#
|
#
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
|
||||||
# CONFIG_RTC_DRV_MAX6902 is not set
|
# CONFIG_RTC_DRV_MAX6902 is not set
|
||||||
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
#
|
#
|
||||||
|
# CONFIG_RTC_DRV_DS1511 is not set
|
||||||
# CONFIG_RTC_DRV_DS1553 is not set
|
# CONFIG_RTC_DRV_DS1553 is not set
|
||||||
# CONFIG_RTC_DRV_STK17TA8 is not set
|
|
||||||
# CONFIG_RTC_DRV_DS1742 is not set
|
# CONFIG_RTC_DRV_DS1742 is not set
|
||||||
|
# CONFIG_RTC_DRV_STK17TA8 is not set
|
||||||
# CONFIG_RTC_DRV_M48T86 is not set
|
# CONFIG_RTC_DRV_M48T86 is not set
|
||||||
# CONFIG_RTC_DRV_M48T59 is not set
|
# CONFIG_RTC_DRV_M48T59 is not set
|
||||||
# CONFIG_RTC_DRV_V3020 is not set
|
# CONFIG_RTC_DRV_V3020 is not set
|
||||||
@ -874,10 +941,6 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# on-CPU RTC drivers
|
# on-CPU RTC drivers
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_AT32AP700X=y
|
CONFIG_RTC_DRV_AT32AP700X=y
|
||||||
|
|
||||||
#
|
|
||||||
# Userspace I/O
|
|
||||||
#
|
|
||||||
# CONFIG_UIO is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -895,14 +958,11 @@ CONFIG_JBD=m
|
|||||||
# CONFIG_JFS_FS is not set
|
# CONFIG_JFS_FS is not set
|
||||||
# CONFIG_FS_POSIX_ACL is not set
|
# CONFIG_FS_POSIX_ACL is not set
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
# CONFIG_GFS2_FS is not set
|
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
CONFIG_MINIX_FS=m
|
# CONFIG_DNOTIFY is not set
|
||||||
# CONFIG_ROMFS_FS is not set
|
|
||||||
CONFIG_INOTIFY=y
|
CONFIG_INOTIFY=y
|
||||||
CONFIG_INOTIFY_USER=y
|
CONFIG_INOTIFY_USER=y
|
||||||
# CONFIG_QUOTA is not set
|
# CONFIG_QUOTA is not set
|
||||||
# CONFIG_DNOTIFY is not set
|
|
||||||
# CONFIG_AUTOFS_FS is not set
|
# CONFIG_AUTOFS_FS is not set
|
||||||
# CONFIG_AUTOFS4_FS is not set
|
# CONFIG_AUTOFS4_FS is not set
|
||||||
CONFIG_FUSE_FS=m
|
CONFIG_FUSE_FS=m
|
||||||
@ -957,8 +1017,10 @@ CONFIG_JFFS2_RTIME=y
|
|||||||
# CONFIG_JFFS2_RUBIN is not set
|
# CONFIG_JFFS2_RUBIN is not set
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
# CONFIG_VXFS_FS is not set
|
# CONFIG_VXFS_FS is not set
|
||||||
|
CONFIG_MINIX_FS=m
|
||||||
# CONFIG_HPFS_FS is not set
|
# CONFIG_HPFS_FS is not set
|
||||||
# CONFIG_QNX4FS_FS is not set
|
# CONFIG_QNX4FS_FS is not set
|
||||||
|
# CONFIG_ROMFS_FS is not set
|
||||||
# CONFIG_SYSV_FS is not set
|
# CONFIG_SYSV_FS is not set
|
||||||
# CONFIG_UFS_FS is not set
|
# CONFIG_UFS_FS is not set
|
||||||
CONFIG_NETWORK_FILESYSTEMS=y
|
CONFIG_NETWORK_FILESYSTEMS=y
|
||||||
@ -966,7 +1028,6 @@ CONFIG_NFS_FS=y
|
|||||||
CONFIG_NFS_V3=y
|
CONFIG_NFS_V3=y
|
||||||
# CONFIG_NFS_V3_ACL is not set
|
# CONFIG_NFS_V3_ACL is not set
|
||||||
# CONFIG_NFS_V4 is not set
|
# CONFIG_NFS_V4 is not set
|
||||||
# CONFIG_NFS_DIRECTIO is not set
|
|
||||||
# CONFIG_NFSD is not set
|
# CONFIG_NFSD is not set
|
||||||
CONFIG_ROOT_NFS=y
|
CONFIG_ROOT_NFS=y
|
||||||
CONFIG_LOCKD=y
|
CONFIG_LOCKD=y
|
||||||
@ -1028,11 +1089,6 @@ CONFIG_NLS_ISO8859_1=m
|
|||||||
# CONFIG_NLS_KOI8_U is not set
|
# CONFIG_NLS_KOI8_U is not set
|
||||||
CONFIG_NLS_UTF8=m
|
CONFIG_NLS_UTF8=m
|
||||||
# CONFIG_DLM is not set
|
# CONFIG_DLM is not set
|
||||||
CONFIG_INSTRUMENTATION=y
|
|
||||||
CONFIG_PROFILING=y
|
|
||||||
CONFIG_OPROFILE=m
|
|
||||||
CONFIG_KPROBES=y
|
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Kernel hacking
|
# Kernel hacking
|
||||||
@ -1040,6 +1096,7 @@ CONFIG_KPROBES=y
|
|||||||
# CONFIG_PRINTK_TIME is not set
|
# CONFIG_PRINTK_TIME is not set
|
||||||
CONFIG_ENABLE_WARN_DEPRECATED=y
|
CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
|
CONFIG_FRAME_WARN=1024
|
||||||
CONFIG_MAGIC_SYSRQ=y
|
CONFIG_MAGIC_SYSRQ=y
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
@ -1050,7 +1107,9 @@ CONFIG_DETECT_SOFTLOCKUP=y
|
|||||||
CONFIG_SCHED_DEBUG=y
|
CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_SCHEDSTATS is not set
|
# CONFIG_SCHEDSTATS is not set
|
||||||
# CONFIG_TIMER_STATS is not set
|
# CONFIG_TIMER_STATS is not set
|
||||||
|
# CONFIG_DEBUG_OBJECTS is not set
|
||||||
# CONFIG_SLUB_DEBUG_ON is not set
|
# CONFIG_SLUB_DEBUG_ON is not set
|
||||||
|
# CONFIG_SLUB_STATS is not set
|
||||||
# CONFIG_DEBUG_RT_MUTEXES is not set
|
# CONFIG_DEBUG_RT_MUTEXES is not set
|
||||||
# CONFIG_RT_MUTEX_TESTER is not set
|
# CONFIG_RT_MUTEX_TESTER is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK is not set
|
# CONFIG_DEBUG_SPINLOCK is not set
|
||||||
@ -1064,12 +1123,14 @@ CONFIG_SCHED_DEBUG=y
|
|||||||
CONFIG_DEBUG_BUGVERBOSE=y
|
CONFIG_DEBUG_BUGVERBOSE=y
|
||||||
# CONFIG_DEBUG_INFO is not set
|
# CONFIG_DEBUG_INFO is not set
|
||||||
# CONFIG_DEBUG_VM is not set
|
# CONFIG_DEBUG_VM is not set
|
||||||
|
# CONFIG_DEBUG_WRITECOUNT is not set
|
||||||
# CONFIG_DEBUG_LIST is not set
|
# CONFIG_DEBUG_LIST is not set
|
||||||
# CONFIG_DEBUG_SG is not set
|
# CONFIG_DEBUG_SG is not set
|
||||||
CONFIG_FRAME_POINTER=y
|
CONFIG_FRAME_POINTER=y
|
||||||
CONFIG_FORCED_INLINING=y
|
|
||||||
# CONFIG_BOOT_PRINTK_DELAY is not set
|
# CONFIG_BOOT_PRINTK_DELAY is not set
|
||||||
# CONFIG_RCU_TORTURE_TEST is not set
|
# CONFIG_RCU_TORTURE_TEST is not set
|
||||||
|
# CONFIG_KPROBES_SANITY_TEST is not set
|
||||||
|
# CONFIG_BACKTRACE_SELF_TEST is not set
|
||||||
# CONFIG_LKDTM is not set
|
# CONFIG_LKDTM is not set
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
@ -1081,52 +1142,90 @@ CONFIG_FORCED_INLINING=y
|
|||||||
# CONFIG_SECURITY is not set
|
# CONFIG_SECURITY is not set
|
||||||
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
# CONFIG_SECURITY_FILE_CAPABILITIES is not set
|
||||||
CONFIG_CRYPTO=y
|
CONFIG_CRYPTO=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# Crypto core or helper
|
||||||
|
#
|
||||||
CONFIG_CRYPTO_ALGAPI=m
|
CONFIG_CRYPTO_ALGAPI=m
|
||||||
|
CONFIG_CRYPTO_AEAD=m
|
||||||
CONFIG_CRYPTO_BLKCIPHER=m
|
CONFIG_CRYPTO_BLKCIPHER=m
|
||||||
CONFIG_CRYPTO_HASH=m
|
CONFIG_CRYPTO_HASH=m
|
||||||
CONFIG_CRYPTO_MANAGER=m
|
CONFIG_CRYPTO_MANAGER=m
|
||||||
|
# CONFIG_CRYPTO_GF128MUL is not set
|
||||||
|
# CONFIG_CRYPTO_NULL is not set
|
||||||
|
# CONFIG_CRYPTO_CRYPTD is not set
|
||||||
|
CONFIG_CRYPTO_AUTHENC=m
|
||||||
|
# CONFIG_CRYPTO_TEST is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Authenticated Encryption with Associated Data
|
||||||
|
#
|
||||||
|
# CONFIG_CRYPTO_CCM is not set
|
||||||
|
# CONFIG_CRYPTO_GCM is not set
|
||||||
|
# CONFIG_CRYPTO_SEQIV is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Block modes
|
||||||
|
#
|
||||||
|
CONFIG_CRYPTO_CBC=m
|
||||||
|
# CONFIG_CRYPTO_CTR is not set
|
||||||
|
# CONFIG_CRYPTO_CTS is not set
|
||||||
|
# CONFIG_CRYPTO_ECB is not set
|
||||||
|
# CONFIG_CRYPTO_LRW is not set
|
||||||
|
# CONFIG_CRYPTO_PCBC is not set
|
||||||
|
# CONFIG_CRYPTO_XTS is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Hash modes
|
||||||
|
#
|
||||||
CONFIG_CRYPTO_HMAC=m
|
CONFIG_CRYPTO_HMAC=m
|
||||||
# CONFIG_CRYPTO_XCBC is not set
|
# CONFIG_CRYPTO_XCBC is not set
|
||||||
# CONFIG_CRYPTO_NULL is not set
|
|
||||||
|
#
|
||||||
|
# Digest
|
||||||
|
#
|
||||||
|
# CONFIG_CRYPTO_CRC32C is not set
|
||||||
# CONFIG_CRYPTO_MD4 is not set
|
# CONFIG_CRYPTO_MD4 is not set
|
||||||
CONFIG_CRYPTO_MD5=m
|
CONFIG_CRYPTO_MD5=m
|
||||||
|
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
||||||
CONFIG_CRYPTO_SHA1=m
|
CONFIG_CRYPTO_SHA1=m
|
||||||
# CONFIG_CRYPTO_SHA256 is not set
|
# CONFIG_CRYPTO_SHA256 is not set
|
||||||
# CONFIG_CRYPTO_SHA512 is not set
|
# CONFIG_CRYPTO_SHA512 is not set
|
||||||
# CONFIG_CRYPTO_WP512 is not set
|
|
||||||
# CONFIG_CRYPTO_TGR192 is not set
|
# CONFIG_CRYPTO_TGR192 is not set
|
||||||
# CONFIG_CRYPTO_GF128MUL is not set
|
# CONFIG_CRYPTO_WP512 is not set
|
||||||
# CONFIG_CRYPTO_ECB is not set
|
|
||||||
CONFIG_CRYPTO_CBC=m
|
#
|
||||||
# CONFIG_CRYPTO_PCBC is not set
|
# Ciphers
|
||||||
# CONFIG_CRYPTO_LRW is not set
|
#
|
||||||
# CONFIG_CRYPTO_XTS is not set
|
|
||||||
# CONFIG_CRYPTO_CRYPTD is not set
|
|
||||||
CONFIG_CRYPTO_DES=m
|
|
||||||
# CONFIG_CRYPTO_FCRYPT is not set
|
|
||||||
# CONFIG_CRYPTO_BLOWFISH is not set
|
|
||||||
# CONFIG_CRYPTO_TWOFISH is not set
|
|
||||||
# CONFIG_CRYPTO_SERPENT is not set
|
|
||||||
# CONFIG_CRYPTO_AES is not set
|
# CONFIG_CRYPTO_AES is not set
|
||||||
|
# CONFIG_CRYPTO_ANUBIS is not set
|
||||||
|
# CONFIG_CRYPTO_ARC4 is not set
|
||||||
|
# CONFIG_CRYPTO_BLOWFISH is not set
|
||||||
|
# CONFIG_CRYPTO_CAMELLIA is not set
|
||||||
# CONFIG_CRYPTO_CAST5 is not set
|
# CONFIG_CRYPTO_CAST5 is not set
|
||||||
# CONFIG_CRYPTO_CAST6 is not set
|
# CONFIG_CRYPTO_CAST6 is not set
|
||||||
# CONFIG_CRYPTO_TEA is not set
|
CONFIG_CRYPTO_DES=m
|
||||||
# CONFIG_CRYPTO_ARC4 is not set
|
# CONFIG_CRYPTO_FCRYPT is not set
|
||||||
# CONFIG_CRYPTO_KHAZAD is not set
|
# CONFIG_CRYPTO_KHAZAD is not set
|
||||||
# CONFIG_CRYPTO_ANUBIS is not set
|
# CONFIG_CRYPTO_SALSA20 is not set
|
||||||
# CONFIG_CRYPTO_SEED is not set
|
# CONFIG_CRYPTO_SEED is not set
|
||||||
|
# CONFIG_CRYPTO_SERPENT is not set
|
||||||
|
# CONFIG_CRYPTO_TEA is not set
|
||||||
|
# CONFIG_CRYPTO_TWOFISH is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Compression
|
||||||
|
#
|
||||||
CONFIG_CRYPTO_DEFLATE=m
|
CONFIG_CRYPTO_DEFLATE=m
|
||||||
# CONFIG_CRYPTO_MICHAEL_MIC is not set
|
# CONFIG_CRYPTO_LZO is not set
|
||||||
# CONFIG_CRYPTO_CRC32C is not set
|
|
||||||
# CONFIG_CRYPTO_CAMELLIA is not set
|
|
||||||
# CONFIG_CRYPTO_TEST is not set
|
|
||||||
# CONFIG_CRYPTO_AUTHENC is not set
|
|
||||||
# CONFIG_CRYPTO_HW is not set
|
# CONFIG_CRYPTO_HW is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Library routines
|
# Library routines
|
||||||
#
|
#
|
||||||
CONFIG_BITREVERSE=y
|
CONFIG_BITREVERSE=y
|
||||||
|
# CONFIG_GENERIC_FIND_FIRST_BIT is not set
|
||||||
|
# CONFIG_GENERIC_FIND_NEXT_BIT is not set
|
||||||
CONFIG_CRC_CCITT=m
|
CONFIG_CRC_CCITT=m
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
CONFIG_CRC_ITU_T=m
|
CONFIG_CRC_ITU_T=m
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.24-rc7
|
# Linux kernel version: 2.6.26-rc3
|
||||||
# Wed Jan 9 22:54:34 2008
|
# Mon May 26 13:33:05 2008
|
||||||
#
|
#
|
||||||
CONFIG_AVR32=y
|
CONFIG_AVR32=y
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
@ -13,10 +13,10 @@ CONFIG_HARDIRQS_SW_RESEND=y
|
|||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
||||||
CONFIG_GENERIC_TIME=y
|
CONFIG_GENERIC_TIME=y
|
||||||
|
CONFIG_GENERIC_CLOCKEVENTS=y
|
||||||
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
||||||
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
|
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
|
||||||
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
|
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
|
||||||
CONFIG_ARCH_SUPPORTS_OPROFILE=y
|
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
CONFIG_GENERIC_HWEIGHT=y
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
CONFIG_GENERIC_BUG=y
|
CONFIG_GENERIC_BUG=y
|
||||||
@ -39,17 +39,15 @@ CONFIG_BSD_PROCESS_ACCT_V3=y
|
|||||||
CONFIG_TASKSTATS=y
|
CONFIG_TASKSTATS=y
|
||||||
CONFIG_TASK_DELAY_ACCT=y
|
CONFIG_TASK_DELAY_ACCT=y
|
||||||
# CONFIG_TASK_XACCT is not set
|
# CONFIG_TASK_XACCT is not set
|
||||||
# CONFIG_USER_NS is not set
|
|
||||||
# CONFIG_PID_NS is not set
|
|
||||||
CONFIG_AUDIT=y
|
CONFIG_AUDIT=y
|
||||||
# CONFIG_IKCONFIG is not set
|
# CONFIG_IKCONFIG is not set
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
# CONFIG_CGROUPS is not set
|
# CONFIG_CGROUPS is not set
|
||||||
CONFIG_FAIR_GROUP_SCHED=y
|
# CONFIG_GROUP_SCHED is not set
|
||||||
CONFIG_FAIR_USER_SCHED=y
|
|
||||||
# CONFIG_FAIR_CGROUP_SCHED is not set
|
|
||||||
CONFIG_SYSFS_DEPRECATED=y
|
CONFIG_SYSFS_DEPRECATED=y
|
||||||
|
CONFIG_SYSFS_DEPRECATED_V2=y
|
||||||
CONFIG_RELAY=y
|
CONFIG_RELAY=y
|
||||||
|
# CONFIG_NAMESPACES is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
CONFIG_INITRAMFS_SOURCE=""
|
CONFIG_INITRAMFS_SOURCE=""
|
||||||
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
|
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
|
||||||
@ -63,11 +61,13 @@ CONFIG_HOTPLUG=y
|
|||||||
CONFIG_PRINTK=y
|
CONFIG_PRINTK=y
|
||||||
CONFIG_BUG=y
|
CONFIG_BUG=y
|
||||||
CONFIG_ELF_CORE=y
|
CONFIG_ELF_CORE=y
|
||||||
|
# CONFIG_COMPAT_BRK is not set
|
||||||
# CONFIG_BASE_FULL is not set
|
# CONFIG_BASE_FULL is not set
|
||||||
CONFIG_FUTEX=y
|
CONFIG_FUTEX=y
|
||||||
CONFIG_ANON_INODES=y
|
CONFIG_ANON_INODES=y
|
||||||
CONFIG_EPOLL=y
|
CONFIG_EPOLL=y
|
||||||
CONFIG_SIGNALFD=y
|
CONFIG_SIGNALFD=y
|
||||||
|
CONFIG_TIMERFD=y
|
||||||
CONFIG_EVENTFD=y
|
CONFIG_EVENTFD=y
|
||||||
CONFIG_SHMEM=y
|
CONFIG_SHMEM=y
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
@ -75,11 +75,20 @@ CONFIG_VM_EVENT_COUNTERS=y
|
|||||||
# CONFIG_SLAB is not set
|
# CONFIG_SLAB is not set
|
||||||
CONFIG_SLUB=y
|
CONFIG_SLUB=y
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
CONFIG_SLABINFO=y
|
CONFIG_PROFILING=y
|
||||||
|
# CONFIG_MARKERS is not set
|
||||||
|
CONFIG_OPROFILE=m
|
||||||
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
CONFIG_KPROBES=y
|
||||||
|
CONFIG_HAVE_KPROBES=y
|
||||||
|
# CONFIG_HAVE_KRETPROBES is not set
|
||||||
|
# CONFIG_HAVE_DMA_ATTRS is not set
|
||||||
|
CONFIG_PROC_PAGE_MONITOR=y
|
||||||
CONFIG_RT_MUTEXES=y
|
CONFIG_RT_MUTEXES=y
|
||||||
# CONFIG_TINY_SHMEM is not set
|
# CONFIG_TINY_SHMEM is not set
|
||||||
CONFIG_BASE_SMALL=1
|
CONFIG_BASE_SMALL=1
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
|
# CONFIG_MODULE_FORCE_LOAD is not set
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
@ -103,10 +112,15 @@ CONFIG_IOSCHED_CFQ=y
|
|||||||
CONFIG_DEFAULT_CFQ=y
|
CONFIG_DEFAULT_CFQ=y
|
||||||
# CONFIG_DEFAULT_NOOP is not set
|
# CONFIG_DEFAULT_NOOP is not set
|
||||||
CONFIG_DEFAULT_IOSCHED="cfq"
|
CONFIG_DEFAULT_IOSCHED="cfq"
|
||||||
|
CONFIG_CLASSIC_RCU=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# System Type and features
|
# System Type and features
|
||||||
#
|
#
|
||||||
|
CONFIG_TICK_ONESHOT=y
|
||||||
|
CONFIG_NO_HZ=y
|
||||||
|
CONFIG_HIGH_RES_TIMERS=y
|
||||||
|
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
|
||||||
CONFIG_SUBARCH_AVR32B=y
|
CONFIG_SUBARCH_AVR32B=y
|
||||||
CONFIG_MMU=y
|
CONFIG_MMU=y
|
||||||
CONFIG_PERFORMANCE_COUNTERS=y
|
CONFIG_PERFORMANCE_COUNTERS=y
|
||||||
@ -152,16 +166,19 @@ CONFIG_FLATMEM=y
|
|||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
# CONFIG_SPARSEMEM_STATIC is not set
|
# CONFIG_SPARSEMEM_STATIC is not set
|
||||||
# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
|
# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
|
||||||
|
CONFIG_PAGEFLAGS_EXTENDED=y
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
# CONFIG_RESOURCES_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=0
|
CONFIG_ZONE_DMA_FLAG=0
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
# CONFIG_OWNERSHIP_TRACE is not set
|
# CONFIG_OWNERSHIP_TRACE is not set
|
||||||
|
CONFIG_NMI_DEBUGGING=y
|
||||||
# CONFIG_HZ_100 is not set
|
# CONFIG_HZ_100 is not set
|
||||||
CONFIG_HZ_250=y
|
CONFIG_HZ_250=y
|
||||||
# CONFIG_HZ_300 is not set
|
# CONFIG_HZ_300 is not set
|
||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=250
|
CONFIG_HZ=250
|
||||||
|
# CONFIG_SCHED_HRTICK is not set
|
||||||
CONFIG_CMDLINE=""
|
CONFIG_CMDLINE=""
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -175,9 +192,10 @@ CONFIG_CPU_FREQ=y
|
|||||||
CONFIG_CPU_FREQ_TABLE=y
|
CONFIG_CPU_FREQ_TABLE=y
|
||||||
# CONFIG_CPU_FREQ_DEBUG is not set
|
# CONFIG_CPU_FREQ_DEBUG is not set
|
||||||
# CONFIG_CPU_FREQ_STAT is not set
|
# CONFIG_CPU_FREQ_STAT is not set
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
|
||||||
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
|
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
||||||
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
|
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
|
||||||
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
|
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
|
||||||
@ -234,8 +252,6 @@ CONFIG_TCP_CONG_CUBIC=y
|
|||||||
CONFIG_DEFAULT_TCP_CONG="cubic"
|
CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_TCP_MD5SIG is not set
|
# CONFIG_TCP_MD5SIG is not set
|
||||||
# CONFIG_IPV6 is not set
|
# CONFIG_IPV6 is not set
|
||||||
# CONFIG_INET6_XFRM_TUNNEL is not set
|
|
||||||
# CONFIG_INET6_TUNNEL is not set
|
|
||||||
# CONFIG_NETWORK_SECMARK is not set
|
# CONFIG_NETWORK_SECMARK is not set
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
@ -260,6 +276,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
|||||||
# CONFIG_NET_PKTGEN is not set
|
# CONFIG_NET_PKTGEN is not set
|
||||||
# CONFIG_NET_TCPPROBE is not set
|
# CONFIG_NET_TCPPROBE is not set
|
||||||
# CONFIG_HAMRADIO is not set
|
# CONFIG_HAMRADIO is not set
|
||||||
|
# CONFIG_CAN is not set
|
||||||
# CONFIG_IRDA is not set
|
# CONFIG_IRDA is not set
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
@ -295,6 +312,7 @@ CONFIG_MTD=y
|
|||||||
CONFIG_MTD_PARTITIONS=y
|
CONFIG_MTD_PARTITIONS=y
|
||||||
# CONFIG_MTD_REDBOOT_PARTS is not set
|
# CONFIG_MTD_REDBOOT_PARTS is not set
|
||||||
CONFIG_MTD_CMDLINE_PARTS=y
|
CONFIG_MTD_CMDLINE_PARTS=y
|
||||||
|
# CONFIG_MTD_AR7_PARTS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# User Modules And Translation Layers
|
# User Modules And Translation Layers
|
||||||
@ -349,6 +367,7 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2
|
|||||||
#
|
#
|
||||||
CONFIG_MTD_DATAFLASH=m
|
CONFIG_MTD_DATAFLASH=m
|
||||||
CONFIG_MTD_M25P80=m
|
CONFIG_MTD_M25P80=m
|
||||||
|
CONFIG_M25PXX_USE_FAST_READ=y
|
||||||
# CONFIG_MTD_SLRAM is not set
|
# CONFIG_MTD_SLRAM is not set
|
||||||
# CONFIG_MTD_PHRAM is not set
|
# CONFIG_MTD_PHRAM is not set
|
||||||
# CONFIG_MTD_MTDRAM is not set
|
# CONFIG_MTD_MTDRAM is not set
|
||||||
@ -376,13 +395,18 @@ CONFIG_BLK_DEV_NBD=m
|
|||||||
CONFIG_BLK_DEV_RAM=m
|
CONFIG_BLK_DEV_RAM=m
|
||||||
CONFIG_BLK_DEV_RAM_COUNT=16
|
CONFIG_BLK_DEV_RAM_COUNT=16
|
||||||
CONFIG_BLK_DEV_RAM_SIZE=4096
|
CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
|
# CONFIG_BLK_DEV_XIP is not set
|
||||||
# CONFIG_CDROM_PKTCDVD is not set
|
# CONFIG_CDROM_PKTCDVD is not set
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
CONFIG_MISC_DEVICES=y
|
CONFIG_MISC_DEVICES=y
|
||||||
|
CONFIG_ATMEL_PWM=m
|
||||||
|
CONFIG_ATMEL_TCLIB=y
|
||||||
|
CONFIG_ATMEL_TCB_CLKSRC=y
|
||||||
|
CONFIG_ATMEL_TCB_CLKSRC_BLOCK=0
|
||||||
# CONFIG_EEPROM_93CX6 is not set
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
CONFIG_ATMEL_SSC=m
|
CONFIG_ATMEL_SSC=m
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_ENCLOSURE_SERVICES is not set
|
||||||
|
# CONFIG_HAVE_IDE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SCSI device support
|
# SCSI device support
|
||||||
@ -427,6 +451,9 @@ CONFIG_SCSI_LOWLEVEL=y
|
|||||||
# CONFIG_SCSI_DEBUG is not set
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
CONFIG_ATA=m
|
CONFIG_ATA=m
|
||||||
# CONFIG_ATA_NONSTANDARD is not set
|
# CONFIG_ATA_NONSTANDARD is not set
|
||||||
|
# CONFIG_SATA_PMP is not set
|
||||||
|
CONFIG_ATA_SFF=y
|
||||||
|
# CONFIG_SATA_MV is not set
|
||||||
CONFIG_PATA_AT32=m
|
CONFIG_PATA_AT32=m
|
||||||
# CONFIG_PATA_PLATFORM is not set
|
# CONFIG_PATA_PLATFORM is not set
|
||||||
# CONFIG_MD is not set
|
# CONFIG_MD is not set
|
||||||
@ -447,6 +474,7 @@ CONFIG_NETDEVICES=y
|
|||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
# CONFIG_WLAN_PRE80211 is not set
|
||||||
# CONFIG_WLAN_80211 is not set
|
# CONFIG_WLAN_80211 is not set
|
||||||
|
# CONFIG_IWLWIFI_LEDS is not set
|
||||||
# CONFIG_WAN is not set
|
# CONFIG_WAN is not set
|
||||||
CONFIG_PPP=m
|
CONFIG_PPP=m
|
||||||
# CONFIG_PPP_MULTILINK is not set
|
# CONFIG_PPP_MULTILINK is not set
|
||||||
@ -460,7 +488,6 @@ CONFIG_PPP_BSDCOMP=m
|
|||||||
# CONFIG_PPPOL2TP is not set
|
# CONFIG_PPPOL2TP is not set
|
||||||
# CONFIG_SLIP is not set
|
# CONFIG_SLIP is not set
|
||||||
CONFIG_SLHC=m
|
CONFIG_SLHC=m
|
||||||
# CONFIG_SHAPER is not set
|
|
||||||
# CONFIG_NETCONSOLE is not set
|
# CONFIG_NETCONSOLE is not set
|
||||||
# CONFIG_NETPOLL is not set
|
# CONFIG_NETPOLL is not set
|
||||||
# CONFIG_NET_POLL_CONTROLLER is not set
|
# CONFIG_NET_POLL_CONTROLLER is not set
|
||||||
@ -516,6 +543,7 @@ CONFIG_MOUSE_GPIO=m
|
|||||||
# Character devices
|
# Character devices
|
||||||
#
|
#
|
||||||
# CONFIG_VT is not set
|
# CONFIG_VT is not set
|
||||||
|
# CONFIG_DEVKMEM is not set
|
||||||
# CONFIG_SERIAL_NONSTANDARD is not set
|
# CONFIG_SERIAL_NONSTANDARD is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -528,6 +556,7 @@ CONFIG_MOUSE_GPIO=m
|
|||||||
#
|
#
|
||||||
CONFIG_SERIAL_ATMEL=y
|
CONFIG_SERIAL_ATMEL=y
|
||||||
CONFIG_SERIAL_ATMEL_CONSOLE=y
|
CONFIG_SERIAL_ATMEL_CONSOLE=y
|
||||||
|
CONFIG_SERIAL_ATMEL_PDC=y
|
||||||
# CONFIG_SERIAL_ATMEL_TTYAT is not set
|
# CONFIG_SERIAL_ATMEL_TTYAT is not set
|
||||||
CONFIG_SERIAL_CORE=y
|
CONFIG_SERIAL_CORE=y
|
||||||
CONFIG_SERIAL_CORE_CONSOLE=y
|
CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
@ -535,21 +564,13 @@ CONFIG_UNIX98_PTYS=y
|
|||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_RTC is not set
|
|
||||||
# CONFIG_GEN_RTC is not set
|
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
# CONFIG_RAW_DRIVER is not set
|
# CONFIG_RAW_DRIVER is not set
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=m
|
CONFIG_I2C=m
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
CONFIG_I2C_CHARDEV=m
|
CONFIG_I2C_CHARDEV=m
|
||||||
|
|
||||||
#
|
|
||||||
# I2C Algorithms
|
|
||||||
#
|
|
||||||
CONFIG_I2C_ALGOBIT=m
|
CONFIG_I2C_ALGOBIT=m
|
||||||
# CONFIG_I2C_ALGOPCF is not set
|
|
||||||
# CONFIG_I2C_ALGOPCA is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# I2C Hardware Bus support
|
# I2C Hardware Bus support
|
||||||
@ -560,27 +581,23 @@ CONFIG_I2C_GPIO=m
|
|||||||
# CONFIG_I2C_SIMTEC is not set
|
# CONFIG_I2C_SIMTEC is not set
|
||||||
# CONFIG_I2C_TAOS_EVM is not set
|
# CONFIG_I2C_TAOS_EVM is not set
|
||||||
# CONFIG_I2C_STUB is not set
|
# CONFIG_I2C_STUB is not set
|
||||||
|
# CONFIG_I2C_PCA_PLATFORM is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_SENSORS_DS1337 is not set
|
|
||||||
# CONFIG_SENSORS_DS1374 is not set
|
|
||||||
# CONFIG_DS1682 is not set
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_SENSORS_EEPROM is not set
|
# CONFIG_SENSORS_EEPROM is not set
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
# CONFIG_SENSORS_PCF8574 is not set
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
# CONFIG_PCF8575 is not set
|
||||||
# CONFIG_SENSORS_PCF8591 is not set
|
# CONFIG_SENSORS_PCF8591 is not set
|
||||||
|
# CONFIG_TPS65010 is not set
|
||||||
# CONFIG_SENSORS_MAX6875 is not set
|
# CONFIG_SENSORS_MAX6875 is not set
|
||||||
# CONFIG_SENSORS_TSL2550 is not set
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
# CONFIG_I2C_DEBUG_BUS is not set
|
# CONFIG_I2C_DEBUG_BUS is not set
|
||||||
# CONFIG_I2C_DEBUG_CHIP is not set
|
# CONFIG_I2C_DEBUG_CHIP is not set
|
||||||
|
|
||||||
#
|
|
||||||
# SPI support
|
|
||||||
#
|
|
||||||
CONFIG_SPI=y
|
CONFIG_SPI=y
|
||||||
# CONFIG_SPI_DEBUG is not set
|
# CONFIG_SPI_DEBUG is not set
|
||||||
CONFIG_SPI_MASTER=y
|
CONFIG_SPI_MASTER=y
|
||||||
@ -597,9 +614,27 @@ CONFIG_SPI_ATMEL=y
|
|||||||
# CONFIG_SPI_AT25 is not set
|
# CONFIG_SPI_AT25 is not set
|
||||||
CONFIG_SPI_SPIDEV=m
|
CONFIG_SPI_SPIDEV=m
|
||||||
# CONFIG_SPI_TLE62X0 is not set
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
|
CONFIG_HAVE_GPIO_LIB=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# GPIO Support
|
||||||
|
#
|
||||||
|
# CONFIG_DEBUG_GPIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# I2C GPIO expanders:
|
||||||
|
#
|
||||||
|
# CONFIG_GPIO_PCA953X is not set
|
||||||
|
# CONFIG_GPIO_PCF857X is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# SPI GPIO expanders:
|
||||||
|
#
|
||||||
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
|
# CONFIG_THERMAL is not set
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
@ -619,12 +654,22 @@ CONFIG_SSB_POSSIBLE=y
|
|||||||
# Multifunction device drivers
|
# Multifunction device drivers
|
||||||
#
|
#
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Multimedia devices
|
# Multimedia devices
|
||||||
#
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Multimedia core support
|
||||||
|
#
|
||||||
# CONFIG_VIDEO_DEV is not set
|
# CONFIG_VIDEO_DEV is not set
|
||||||
# CONFIG_DVB_CORE is not set
|
# CONFIG_DVB_CORE is not set
|
||||||
|
# CONFIG_VIDEO_MEDIA is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Multimedia drivers
|
||||||
|
#
|
||||||
# CONFIG_DAB is not set
|
# CONFIG_DAB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -682,7 +727,11 @@ CONFIG_SND_AT73C213_TARGET_BITRATE=48000
|
|||||||
# CONFIG_SND_SOC is not set
|
# CONFIG_SND_SOC is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SoC Audio support for SuperH
|
# ALSA SoC audio for Freescale SOCs
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# SoC Audio for the Texas Instruments OMAP
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -694,14 +743,12 @@ CONFIG_USB_SUPPORT=y
|
|||||||
# CONFIG_USB_ARCH_HAS_HCD is not set
|
# CONFIG_USB_ARCH_HAS_HCD is not set
|
||||||
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
||||||
# CONFIG_USB_ARCH_HAS_EHCI is not set
|
# CONFIG_USB_ARCH_HAS_EHCI is not set
|
||||||
|
# CONFIG_USB_OTG_WHITELIST is not set
|
||||||
|
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
|
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
|
||||||
# USB Gadget Support
|
|
||||||
#
|
|
||||||
CONFIG_USB_GADGET=y
|
CONFIG_USB_GADGET=y
|
||||||
# CONFIG_USB_GADGET_DEBUG is not set
|
# CONFIG_USB_GADGET_DEBUG is not set
|
||||||
# CONFIG_USB_GADGET_DEBUG_FILES is not set
|
# CONFIG_USB_GADGET_DEBUG_FILES is not set
|
||||||
@ -714,6 +761,7 @@ CONFIG_USB_ATMEL_USBA=y
|
|||||||
# CONFIG_USB_GADGET_NET2280 is not set
|
# CONFIG_USB_GADGET_NET2280 is not set
|
||||||
# CONFIG_USB_GADGET_PXA2XX is not set
|
# CONFIG_USB_GADGET_PXA2XX is not set
|
||||||
# CONFIG_USB_GADGET_M66592 is not set
|
# CONFIG_USB_GADGET_M66592 is not set
|
||||||
|
# CONFIG_USB_GADGET_PXA27X is not set
|
||||||
# CONFIG_USB_GADGET_GOKU is not set
|
# CONFIG_USB_GADGET_GOKU is not set
|
||||||
# CONFIG_USB_GADGET_LH7A40X is not set
|
# CONFIG_USB_GADGET_LH7A40X is not set
|
||||||
# CONFIG_USB_GADGET_OMAP is not set
|
# CONFIG_USB_GADGET_OMAP is not set
|
||||||
@ -729,6 +777,7 @@ CONFIG_USB_FILE_STORAGE=m
|
|||||||
# CONFIG_USB_FILE_STORAGE_TEST is not set
|
# CONFIG_USB_FILE_STORAGE_TEST is not set
|
||||||
CONFIG_USB_G_SERIAL=m
|
CONFIG_USB_G_SERIAL=m
|
||||||
# CONFIG_USB_MIDI_GADGET is not set
|
# CONFIG_USB_MIDI_GADGET is not set
|
||||||
|
# CONFIG_USB_G_PRINTER is not set
|
||||||
CONFIG_MMC=m
|
CONFIG_MMC=m
|
||||||
# CONFIG_MMC_DEBUG is not set
|
# CONFIG_MMC_DEBUG is not set
|
||||||
# CONFIG_MMC_UNSAFE_RESUME is not set
|
# CONFIG_MMC_UNSAFE_RESUME is not set
|
||||||
@ -739,17 +788,20 @@ CONFIG_MMC=m
|
|||||||
CONFIG_MMC_BLOCK=m
|
CONFIG_MMC_BLOCK=m
|
||||||
# CONFIG_MMC_BLOCK_BOUNCE is not set
|
# CONFIG_MMC_BLOCK_BOUNCE is not set
|
||||||
# CONFIG_SDIO_UART is not set
|
# CONFIG_SDIO_UART is not set
|
||||||
|
# CONFIG_MMC_TEST is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# MMC/SD Host Controller Drivers
|
# MMC/SD Host Controller Drivers
|
||||||
#
|
#
|
||||||
CONFIG_MMC_SPI=m
|
CONFIG_MMC_SPI=m
|
||||||
|
# CONFIG_MEMSTICK is not set
|
||||||
CONFIG_NEW_LEDS=y
|
CONFIG_NEW_LEDS=y
|
||||||
CONFIG_LEDS_CLASS=y
|
CONFIG_LEDS_CLASS=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# LED drivers
|
# LED drivers
|
||||||
#
|
#
|
||||||
|
CONFIG_LEDS_ATMEL_PWM=m
|
||||||
CONFIG_LEDS_GPIO=y
|
CONFIG_LEDS_GPIO=y
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -758,6 +810,8 @@ CONFIG_LEDS_GPIO=y
|
|||||||
CONFIG_LEDS_TRIGGERS=y
|
CONFIG_LEDS_TRIGGERS=y
|
||||||
CONFIG_LEDS_TRIGGER_TIMER=y
|
CONFIG_LEDS_TRIGGER_TIMER=y
|
||||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=y
|
CONFIG_LEDS_TRIGGER_HEARTBEAT=y
|
||||||
|
CONFIG_LEDS_TRIGGER_DEFAULT_ON=y
|
||||||
|
# CONFIG_ACCESSIBILITY is not set
|
||||||
CONFIG_RTC_LIB=y
|
CONFIG_RTC_LIB=y
|
||||||
CONFIG_RTC_CLASS=y
|
CONFIG_RTC_CLASS=y
|
||||||
CONFIG_RTC_HCTOSYS=y
|
CONFIG_RTC_HCTOSYS=y
|
||||||
@ -786,19 +840,22 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# CONFIG_RTC_DRV_PCF8563 is not set
|
# CONFIG_RTC_DRV_PCF8563 is not set
|
||||||
# CONFIG_RTC_DRV_PCF8583 is not set
|
# CONFIG_RTC_DRV_PCF8583 is not set
|
||||||
# CONFIG_RTC_DRV_M41T80 is not set
|
# CONFIG_RTC_DRV_M41T80 is not set
|
||||||
|
# CONFIG_RTC_DRV_S35390A is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
#
|
#
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
|
||||||
# CONFIG_RTC_DRV_MAX6902 is not set
|
# CONFIG_RTC_DRV_MAX6902 is not set
|
||||||
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
#
|
#
|
||||||
|
# CONFIG_RTC_DRV_DS1511 is not set
|
||||||
# CONFIG_RTC_DRV_DS1553 is not set
|
# CONFIG_RTC_DRV_DS1553 is not set
|
||||||
# CONFIG_RTC_DRV_STK17TA8 is not set
|
|
||||||
# CONFIG_RTC_DRV_DS1742 is not set
|
# CONFIG_RTC_DRV_DS1742 is not set
|
||||||
|
# CONFIG_RTC_DRV_STK17TA8 is not set
|
||||||
# CONFIG_RTC_DRV_M48T86 is not set
|
# CONFIG_RTC_DRV_M48T86 is not set
|
||||||
# CONFIG_RTC_DRV_M48T59 is not set
|
# CONFIG_RTC_DRV_M48T59 is not set
|
||||||
# CONFIG_RTC_DRV_V3020 is not set
|
# CONFIG_RTC_DRV_V3020 is not set
|
||||||
@ -807,11 +864,8 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# on-CPU RTC drivers
|
# on-CPU RTC drivers
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_AT32AP700X=y
|
CONFIG_RTC_DRV_AT32AP700X=y
|
||||||
|
|
||||||
#
|
|
||||||
# Userspace I/O
|
|
||||||
#
|
|
||||||
CONFIG_UIO=m
|
CONFIG_UIO=m
|
||||||
|
# CONFIG_UIO_SMX is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
@ -828,14 +882,11 @@ CONFIG_JBD=m
|
|||||||
# CONFIG_JFS_FS is not set
|
# CONFIG_JFS_FS is not set
|
||||||
# CONFIG_FS_POSIX_ACL is not set
|
# CONFIG_FS_POSIX_ACL is not set
|
||||||
# CONFIG_XFS_FS is not set
|
# CONFIG_XFS_FS is not set
|
||||||
# CONFIG_GFS2_FS is not set
|
|
||||||
# CONFIG_OCFS2_FS is not set
|
# CONFIG_OCFS2_FS is not set
|
||||||
# CONFIG_MINIX_FS is not set
|
# CONFIG_DNOTIFY is not set
|
||||||
# CONFIG_ROMFS_FS is not set
|
|
||||||
CONFIG_INOTIFY=y
|
CONFIG_INOTIFY=y
|
||||||
CONFIG_INOTIFY_USER=y
|
CONFIG_INOTIFY_USER=y
|
||||||
# CONFIG_QUOTA is not set
|
# CONFIG_QUOTA is not set
|
||||||
# CONFIG_DNOTIFY is not set
|
|
||||||
# CONFIG_AUTOFS_FS is not set
|
# CONFIG_AUTOFS_FS is not set
|
||||||
# CONFIG_AUTOFS4_FS is not set
|
# CONFIG_AUTOFS4_FS is not set
|
||||||
CONFIG_FUSE_FS=m
|
CONFIG_FUSE_FS=m
|
||||||
@ -891,8 +942,10 @@ CONFIG_JFFS2_RTIME=y
|
|||||||
# CONFIG_JFFS2_RUBIN is not set
|
# CONFIG_JFFS2_RUBIN is not set
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
# CONFIG_VXFS_FS is not set
|
# CONFIG_VXFS_FS is not set
|
||||||
|
# CONFIG_MINIX_FS is not set
|
||||||
# CONFIG_HPFS_FS is not set
|
# CONFIG_HPFS_FS is not set
|
||||||
# CONFIG_QNX4FS_FS is not set
|
# CONFIG_QNX4FS_FS is not set
|
||||||
|
# CONFIG_ROMFS_FS is not set
|
||||||
# CONFIG_SYSV_FS is not set
|
# CONFIG_SYSV_FS is not set
|
||||||
# CONFIG_UFS_FS is not set
|
# CONFIG_UFS_FS is not set
|
||||||
# CONFIG_NETWORK_FILESYSTEMS is not set
|
# CONFIG_NETWORK_FILESYSTEMS is not set
|
||||||
@ -943,11 +996,6 @@ CONFIG_NLS_ISO8859_1=m
|
|||||||
# CONFIG_NLS_KOI8_U is not set
|
# CONFIG_NLS_KOI8_U is not set
|
||||||
CONFIG_NLS_UTF8=m
|
CONFIG_NLS_UTF8=m
|
||||||
# CONFIG_DLM is not set
|
# CONFIG_DLM is not set
|
||||||
CONFIG_INSTRUMENTATION=y
|
|
||||||
CONFIG_PROFILING=y
|
|
||||||
CONFIG_OPROFILE=m
|
|
||||||
CONFIG_KPROBES=y
|
|
||||||
# CONFIG_MARKERS is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Kernel hacking
|
# Kernel hacking
|
||||||
@ -955,6 +1003,7 @@ CONFIG_KPROBES=y
|
|||||||
# CONFIG_PRINTK_TIME is not set
|
# CONFIG_PRINTK_TIME is not set
|
||||||
CONFIG_ENABLE_WARN_DEPRECATED=y
|
CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
|
CONFIG_FRAME_WARN=1024
|
||||||
CONFIG_MAGIC_SYSRQ=y
|
CONFIG_MAGIC_SYSRQ=y
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
CONFIG_DEBUG_FS=y
|
CONFIG_DEBUG_FS=y
|
||||||
@ -965,6 +1014,7 @@ CONFIG_DETECT_SOFTLOCKUP=y
|
|||||||
CONFIG_SCHED_DEBUG=y
|
CONFIG_SCHED_DEBUG=y
|
||||||
# CONFIG_SCHEDSTATS is not set
|
# CONFIG_SCHEDSTATS is not set
|
||||||
# CONFIG_TIMER_STATS is not set
|
# CONFIG_TIMER_STATS is not set
|
||||||
|
# CONFIG_DEBUG_OBJECTS is not set
|
||||||
# CONFIG_DEBUG_RT_MUTEXES is not set
|
# CONFIG_DEBUG_RT_MUTEXES is not set
|
||||||
# CONFIG_RT_MUTEX_TESTER is not set
|
# CONFIG_RT_MUTEX_TESTER is not set
|
||||||
# CONFIG_DEBUG_SPINLOCK is not set
|
# CONFIG_DEBUG_SPINLOCK is not set
|
||||||
@ -978,12 +1028,14 @@ CONFIG_SCHED_DEBUG=y
|
|||||||
CONFIG_DEBUG_BUGVERBOSE=y
|
CONFIG_DEBUG_BUGVERBOSE=y
|
||||||
# CONFIG_DEBUG_INFO is not set
|
# CONFIG_DEBUG_INFO is not set
|
||||||
# CONFIG_DEBUG_VM is not set
|
# CONFIG_DEBUG_VM is not set
|
||||||
|
# CONFIG_DEBUG_WRITECOUNT is not set
|
||||||
# CONFIG_DEBUG_LIST is not set
|
# CONFIG_DEBUG_LIST is not set
|
||||||
# CONFIG_DEBUG_SG is not set
|
# CONFIG_DEBUG_SG is not set
|
||||||
CONFIG_FRAME_POINTER=y
|
CONFIG_FRAME_POINTER=y
|
||||||
CONFIG_FORCED_INLINING=y
|
|
||||||
# CONFIG_BOOT_PRINTK_DELAY is not set
|
# CONFIG_BOOT_PRINTK_DELAY is not set
|
||||||
# CONFIG_RCU_TORTURE_TEST is not set
|
# CONFIG_RCU_TORTURE_TEST is not set
|
||||||
|
# CONFIG_KPROBES_SANITY_TEST is not set
|
||||||
|
# CONFIG_BACKTRACE_SELF_TEST is not set
|
||||||
# CONFIG_LKDTM is not set
|
# CONFIG_LKDTM is not set
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
# CONFIG_FAULT_INJECTION is not set
|
||||||
# CONFIG_SAMPLES is not set
|
# CONFIG_SAMPLES is not set
|
||||||
@ -1000,6 +1052,8 @@ CONFIG_FORCED_INLINING=y
|
|||||||
# Library routines
|
# Library routines
|
||||||
#
|
#
|
||||||
CONFIG_BITREVERSE=y
|
CONFIG_BITREVERSE=y
|
||||||
|
# CONFIG_GENERIC_FIND_FIRST_BIT is not set
|
||||||
|
# CONFIG_GENERIC_FIND_NEXT_BIT is not set
|
||||||
CONFIG_CRC_CCITT=m
|
CONFIG_CRC_CCITT=m
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
CONFIG_CRC_ITU_T=m
|
CONFIG_CRC_ITU_T=m
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.24-rc7
|
# Linux kernel version: 2.6.26-rc3
|
||||||
# Wed Jan 9 23:04:20 2008
|
# Mon May 26 13:34:57 2008
|
||||||
#
|
#
|
||||||
CONFIG_AVR32=y
|
CONFIG_AVR32=y
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
@ -13,10 +13,10 @@ CONFIG_HARDIRQS_SW_RESEND=y
|
|||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
CONFIG_RWSEM_GENERIC_SPINLOCK=y
|
||||||
CONFIG_GENERIC_TIME=y
|
CONFIG_GENERIC_TIME=y
|
||||||
|
CONFIG_GENERIC_CLOCKEVENTS=y
|
||||||
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
# CONFIG_RWSEM_XCHGADD_ALGORITHM is not set
|
||||||
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
|
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
|
||||||
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
|
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
|
||||||
CONFIG_ARCH_SUPPORTS_OPROFILE=y
|
|
||||||
CONFIG_GENERIC_HWEIGHT=y
|
CONFIG_GENERIC_HWEIGHT=y
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
CONFIG_GENERIC_BUG=y
|
CONFIG_GENERIC_BUG=y
|
||||||
@ -34,15 +34,15 @@ CONFIG_LOCALVERSION=""
|
|||||||
# CONFIG_POSIX_MQUEUE is not set
|
# CONFIG_POSIX_MQUEUE is not set
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_USER_NS is not set
|
|
||||||
# CONFIG_PID_NS is not set
|
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
# CONFIG_IKCONFIG is not set
|
# CONFIG_IKCONFIG is not set
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
# CONFIG_CGROUPS is not set
|
# CONFIG_CGROUPS is not set
|
||||||
# CONFIG_FAIR_GROUP_SCHED is not set
|
# CONFIG_GROUP_SCHED is not set
|
||||||
CONFIG_SYSFS_DEPRECATED=y
|
CONFIG_SYSFS_DEPRECATED=y
|
||||||
|
CONFIG_SYSFS_DEPRECATED_V2=y
|
||||||
# CONFIG_RELAY is not set
|
# CONFIG_RELAY is not set
|
||||||
|
# CONFIG_NAMESPACES is not set
|
||||||
# CONFIG_BLK_DEV_INITRD is not set
|
# CONFIG_BLK_DEV_INITRD is not set
|
||||||
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
|
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
|
||||||
CONFIG_SYSCTL=y
|
CONFIG_SYSCTL=y
|
||||||
@ -54,24 +54,38 @@ CONFIG_HOTPLUG=y
|
|||||||
CONFIG_PRINTK=y
|
CONFIG_PRINTK=y
|
||||||
CONFIG_BUG=y
|
CONFIG_BUG=y
|
||||||
CONFIG_ELF_CORE=y
|
CONFIG_ELF_CORE=y
|
||||||
|
# CONFIG_COMPAT_BRK is not set
|
||||||
# CONFIG_BASE_FULL is not set
|
# CONFIG_BASE_FULL is not set
|
||||||
# CONFIG_FUTEX is not set
|
# CONFIG_FUTEX is not set
|
||||||
# CONFIG_EPOLL is not set
|
# CONFIG_EPOLL is not set
|
||||||
# CONFIG_SIGNALFD is not set
|
# CONFIG_SIGNALFD is not set
|
||||||
|
# CONFIG_TIMERFD is not set
|
||||||
# CONFIG_EVENTFD is not set
|
# CONFIG_EVENTFD is not set
|
||||||
CONFIG_SHMEM=y
|
CONFIG_SHMEM=y
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
# CONFIG_SLAB is not set
|
# CONFIG_SLAB is not set
|
||||||
# CONFIG_SLUB is not set
|
# CONFIG_SLUB is not set
|
||||||
CONFIG_SLOB=y
|
CONFIG_SLOB=y
|
||||||
|
# CONFIG_PROFILING is not set
|
||||||
|
# CONFIG_MARKERS is not set
|
||||||
|
CONFIG_HAVE_OPROFILE=y
|
||||||
|
CONFIG_HAVE_KPROBES=y
|
||||||
|
# CONFIG_HAVE_KRETPROBES is not set
|
||||||
|
# CONFIG_HAVE_DMA_ATTRS is not set
|
||||||
|
# CONFIG_PROC_PAGE_MONITOR is not set
|
||||||
# CONFIG_TINY_SHMEM is not set
|
# CONFIG_TINY_SHMEM is not set
|
||||||
CONFIG_BASE_SMALL=1
|
CONFIG_BASE_SMALL=1
|
||||||
# CONFIG_MODULES is not set
|
# CONFIG_MODULES is not set
|
||||||
# CONFIG_BLOCK is not set
|
# CONFIG_BLOCK is not set
|
||||||
|
CONFIG_CLASSIC_RCU=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# System Type and features
|
# System Type and features
|
||||||
#
|
#
|
||||||
|
# CONFIG_TICK_ONESHOT is not set
|
||||||
|
# CONFIG_NO_HZ is not set
|
||||||
|
# CONFIG_HIGH_RES_TIMERS is not set
|
||||||
|
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
|
||||||
CONFIG_SUBARCH_AVR32B=y
|
CONFIG_SUBARCH_AVR32B=y
|
||||||
CONFIG_MMU=y
|
CONFIG_MMU=y
|
||||||
CONFIG_PERFORMANCE_COUNTERS=y
|
CONFIG_PERFORMANCE_COUNTERS=y
|
||||||
@ -115,16 +129,19 @@ CONFIG_FLATMEM=y
|
|||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
# CONFIG_SPARSEMEM_STATIC is not set
|
# CONFIG_SPARSEMEM_STATIC is not set
|
||||||
# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
|
# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
|
||||||
|
CONFIG_PAGEFLAGS_EXTENDED=y
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
# CONFIG_RESOURCES_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=0
|
CONFIG_ZONE_DMA_FLAG=0
|
||||||
CONFIG_VIRT_TO_BUS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
# CONFIG_OWNERSHIP_TRACE is not set
|
# CONFIG_OWNERSHIP_TRACE is not set
|
||||||
|
# CONFIG_NMI_DEBUGGING is not set
|
||||||
# CONFIG_HZ_100 is not set
|
# CONFIG_HZ_100 is not set
|
||||||
CONFIG_HZ_250=y
|
CONFIG_HZ_250=y
|
||||||
# CONFIG_HZ_300 is not set
|
# CONFIG_HZ_300 is not set
|
||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=250
|
CONFIG_HZ=250
|
||||||
|
# CONFIG_SCHED_HRTICK is not set
|
||||||
CONFIG_CMDLINE=""
|
CONFIG_CMDLINE=""
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -134,20 +151,7 @@ CONFIG_CMDLINE=""
|
|||||||
#
|
#
|
||||||
# CPU Frequency scaling
|
# CPU Frequency scaling
|
||||||
#
|
#
|
||||||
CONFIG_CPU_FREQ=y
|
# CONFIG_CPU_FREQ is not set
|
||||||
CONFIG_CPU_FREQ_TABLE=y
|
|
||||||
# CONFIG_CPU_FREQ_DEBUG is not set
|
|
||||||
# CONFIG_CPU_FREQ_STAT is not set
|
|
||||||
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
|
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
|
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
|
|
||||||
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
|
|
||||||
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
|
|
||||||
# CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
|
|
||||||
CONFIG_CPU_FREQ_GOV_USERSPACE=y
|
|
||||||
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
|
|
||||||
# CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
|
|
||||||
CONFIG_CPU_FREQ_AT32AP=y
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Bus options
|
# Bus options
|
||||||
@ -197,8 +201,6 @@ CONFIG_TCP_CONG_CUBIC=y
|
|||||||
CONFIG_DEFAULT_TCP_CONG="cubic"
|
CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_TCP_MD5SIG is not set
|
# CONFIG_TCP_MD5SIG is not set
|
||||||
# CONFIG_IPV6 is not set
|
# CONFIG_IPV6 is not set
|
||||||
# CONFIG_INET6_XFRM_TUNNEL is not set
|
|
||||||
# CONFIG_INET6_TUNNEL is not set
|
|
||||||
# CONFIG_NETWORK_SECMARK is not set
|
# CONFIG_NETWORK_SECMARK is not set
|
||||||
# CONFIG_NETFILTER is not set
|
# CONFIG_NETFILTER is not set
|
||||||
# CONFIG_IP_DCCP is not set
|
# CONFIG_IP_DCCP is not set
|
||||||
@ -222,6 +224,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
|||||||
#
|
#
|
||||||
# CONFIG_NET_PKTGEN is not set
|
# CONFIG_NET_PKTGEN is not set
|
||||||
# CONFIG_HAMRADIO is not set
|
# CONFIG_HAMRADIO is not set
|
||||||
|
# CONFIG_CAN is not set
|
||||||
# CONFIG_IRDA is not set
|
# CONFIG_IRDA is not set
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
@ -255,6 +258,7 @@ CONFIG_MTD=y
|
|||||||
CONFIG_MTD_PARTITIONS=y
|
CONFIG_MTD_PARTITIONS=y
|
||||||
# CONFIG_MTD_REDBOOT_PARTS is not set
|
# CONFIG_MTD_REDBOOT_PARTS is not set
|
||||||
CONFIG_MTD_CMDLINE_PARTS=y
|
CONFIG_MTD_CMDLINE_PARTS=y
|
||||||
|
# CONFIG_MTD_AR7_PARTS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# User Modules And Translation Layers
|
# User Modules And Translation Layers
|
||||||
@ -321,6 +325,7 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2
|
|||||||
# CONFIG_MTD_UBI is not set
|
# CONFIG_MTD_UBI is not set
|
||||||
# CONFIG_PARPORT is not set
|
# CONFIG_PARPORT is not set
|
||||||
# CONFIG_MISC_DEVICES is not set
|
# CONFIG_MISC_DEVICES is not set
|
||||||
|
# CONFIG_HAVE_IDE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SCSI device support
|
# SCSI device support
|
||||||
@ -346,6 +351,7 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2
|
|||||||
# Character devices
|
# Character devices
|
||||||
#
|
#
|
||||||
# CONFIG_VT is not set
|
# CONFIG_VT is not set
|
||||||
|
# CONFIG_DEVKMEM is not set
|
||||||
# CONFIG_SERIAL_NONSTANDARD is not set
|
# CONFIG_SERIAL_NONSTANDARD is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -358,6 +364,7 @@ CONFIG_MTD_PHYSMAP_BANKWIDTH=2
|
|||||||
#
|
#
|
||||||
CONFIG_SERIAL_ATMEL=y
|
CONFIG_SERIAL_ATMEL=y
|
||||||
CONFIG_SERIAL_ATMEL_CONSOLE=y
|
CONFIG_SERIAL_ATMEL_CONSOLE=y
|
||||||
|
# CONFIG_SERIAL_ATMEL_PDC is not set
|
||||||
# CONFIG_SERIAL_ATMEL_TTYAT is not set
|
# CONFIG_SERIAL_ATMEL_TTYAT is not set
|
||||||
CONFIG_SERIAL_CORE=y
|
CONFIG_SERIAL_CORE=y
|
||||||
CONFIG_SERIAL_CORE_CONSOLE=y
|
CONFIG_SERIAL_CORE_CONSOLE=y
|
||||||
@ -365,15 +372,9 @@ CONFIG_UNIX98_PTYS=y
|
|||||||
# CONFIG_LEGACY_PTYS is not set
|
# CONFIG_LEGACY_PTYS is not set
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
# CONFIG_HW_RANDOM is not set
|
# CONFIG_HW_RANDOM is not set
|
||||||
# CONFIG_RTC is not set
|
|
||||||
# CONFIG_GEN_RTC is not set
|
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
# CONFIG_I2C is not set
|
# CONFIG_I2C is not set
|
||||||
|
|
||||||
#
|
|
||||||
# SPI support
|
|
||||||
#
|
|
||||||
CONFIG_SPI=y
|
CONFIG_SPI=y
|
||||||
CONFIG_SPI_MASTER=y
|
CONFIG_SPI_MASTER=y
|
||||||
|
|
||||||
@ -389,9 +390,24 @@ CONFIG_SPI_ATMEL=y
|
|||||||
# CONFIG_SPI_AT25 is not set
|
# CONFIG_SPI_AT25 is not set
|
||||||
# CONFIG_SPI_SPIDEV is not set
|
# CONFIG_SPI_SPIDEV is not set
|
||||||
# CONFIG_SPI_TLE62X0 is not set
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
|
CONFIG_HAVE_GPIO_LIB=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# GPIO Support
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# I2C GPIO expanders:
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# SPI GPIO expanders:
|
||||||
|
#
|
||||||
|
# CONFIG_GPIO_MCP23S08 is not set
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
# CONFIG_POWER_SUPPLY is not set
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
|
# CONFIG_THERMAL is not set
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
@ -411,12 +427,22 @@ CONFIG_SSB_POSSIBLE=y
|
|||||||
# Multifunction device drivers
|
# Multifunction device drivers
|
||||||
#
|
#
|
||||||
# CONFIG_MFD_SM501 is not set
|
# CONFIG_MFD_SM501 is not set
|
||||||
|
# CONFIG_HTC_PASIC3 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Multimedia devices
|
# Multimedia devices
|
||||||
#
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# Multimedia core support
|
||||||
|
#
|
||||||
# CONFIG_VIDEO_DEV is not set
|
# CONFIG_VIDEO_DEV is not set
|
||||||
# CONFIG_DVB_CORE is not set
|
# CONFIG_DVB_CORE is not set
|
||||||
|
# CONFIG_VIDEO_MEDIA is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Multimedia drivers
|
||||||
|
#
|
||||||
# CONFIG_DAB is not set
|
# CONFIG_DAB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -434,8 +460,8 @@ CONFIG_FB_CFB_IMAGEBLIT=y
|
|||||||
# CONFIG_FB_SYS_FILLRECT is not set
|
# CONFIG_FB_SYS_FILLRECT is not set
|
||||||
# CONFIG_FB_SYS_COPYAREA is not set
|
# CONFIG_FB_SYS_COPYAREA is not set
|
||||||
# CONFIG_FB_SYS_IMAGEBLIT is not set
|
# CONFIG_FB_SYS_IMAGEBLIT is not set
|
||||||
|
# CONFIG_FB_FOREIGN_ENDIAN is not set
|
||||||
# CONFIG_FB_SYS_FOPS is not set
|
# CONFIG_FB_SYS_FOPS is not set
|
||||||
CONFIG_FB_DEFERRED_IO=y
|
|
||||||
# CONFIG_FB_SVGALIB is not set
|
# CONFIG_FB_SVGALIB is not set
|
||||||
# CONFIG_FB_MACMODES is not set
|
# CONFIG_FB_MACMODES is not set
|
||||||
# CONFIG_FB_BACKLIGHT is not set
|
# CONFIG_FB_BACKLIGHT is not set
|
||||||
@ -467,14 +493,12 @@ CONFIG_USB_SUPPORT=y
|
|||||||
# CONFIG_USB_ARCH_HAS_HCD is not set
|
# CONFIG_USB_ARCH_HAS_HCD is not set
|
||||||
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
||||||
# CONFIG_USB_ARCH_HAS_EHCI is not set
|
# CONFIG_USB_ARCH_HAS_EHCI is not set
|
||||||
|
# CONFIG_USB_OTG_WHITELIST is not set
|
||||||
|
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
|
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
|
||||||
# USB Gadget Support
|
|
||||||
#
|
|
||||||
CONFIG_USB_GADGET=y
|
CONFIG_USB_GADGET=y
|
||||||
# CONFIG_USB_GADGET_DEBUG_FILES is not set
|
# CONFIG_USB_GADGET_DEBUG_FILES is not set
|
||||||
CONFIG_USB_GADGET_SELECTED=y
|
CONFIG_USB_GADGET_SELECTED=y
|
||||||
@ -485,6 +509,7 @@ CONFIG_USB_ATMEL_USBA=y
|
|||||||
# CONFIG_USB_GADGET_NET2280 is not set
|
# CONFIG_USB_GADGET_NET2280 is not set
|
||||||
# CONFIG_USB_GADGET_PXA2XX is not set
|
# CONFIG_USB_GADGET_PXA2XX is not set
|
||||||
# CONFIG_USB_GADGET_M66592 is not set
|
# CONFIG_USB_GADGET_M66592 is not set
|
||||||
|
# CONFIG_USB_GADGET_PXA27X is not set
|
||||||
# CONFIG_USB_GADGET_GOKU is not set
|
# CONFIG_USB_GADGET_GOKU is not set
|
||||||
# CONFIG_USB_GADGET_LH7A40X is not set
|
# CONFIG_USB_GADGET_LH7A40X is not set
|
||||||
# CONFIG_USB_GADGET_OMAP is not set
|
# CONFIG_USB_GADGET_OMAP is not set
|
||||||
@ -499,8 +524,11 @@ CONFIG_USB_ETH=y
|
|||||||
# CONFIG_USB_FILE_STORAGE is not set
|
# CONFIG_USB_FILE_STORAGE is not set
|
||||||
# CONFIG_USB_G_SERIAL is not set
|
# CONFIG_USB_G_SERIAL is not set
|
||||||
# CONFIG_USB_MIDI_GADGET is not set
|
# CONFIG_USB_MIDI_GADGET is not set
|
||||||
|
# CONFIG_USB_G_PRINTER is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
|
# CONFIG_MEMSTICK is not set
|
||||||
# CONFIG_NEW_LEDS is not set
|
# CONFIG_NEW_LEDS is not set
|
||||||
|
# CONFIG_ACCESSIBILITY is not set
|
||||||
CONFIG_RTC_LIB=y
|
CONFIG_RTC_LIB=y
|
||||||
CONFIG_RTC_CLASS=y
|
CONFIG_RTC_CLASS=y
|
||||||
CONFIG_RTC_HCTOSYS=y
|
CONFIG_RTC_HCTOSYS=y
|
||||||
@ -519,15 +547,17 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
#
|
#
|
||||||
# CONFIG_RTC_DRV_RS5C348 is not set
|
|
||||||
# CONFIG_RTC_DRV_MAX6902 is not set
|
# CONFIG_RTC_DRV_MAX6902 is not set
|
||||||
|
# CONFIG_RTC_DRV_R9701 is not set
|
||||||
|
# CONFIG_RTC_DRV_RS5C348 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
#
|
#
|
||||||
|
# CONFIG_RTC_DRV_DS1511 is not set
|
||||||
# CONFIG_RTC_DRV_DS1553 is not set
|
# CONFIG_RTC_DRV_DS1553 is not set
|
||||||
# CONFIG_RTC_DRV_STK17TA8 is not set
|
|
||||||
# CONFIG_RTC_DRV_DS1742 is not set
|
# CONFIG_RTC_DRV_DS1742 is not set
|
||||||
|
# CONFIG_RTC_DRV_STK17TA8 is not set
|
||||||
# CONFIG_RTC_DRV_M48T86 is not set
|
# CONFIG_RTC_DRV_M48T86 is not set
|
||||||
# CONFIG_RTC_DRV_M48T59 is not set
|
# CONFIG_RTC_DRV_M48T59 is not set
|
||||||
# CONFIG_RTC_DRV_V3020 is not set
|
# CONFIG_RTC_DRV_V3020 is not set
|
||||||
@ -536,18 +566,14 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# on-CPU RTC drivers
|
# on-CPU RTC drivers
|
||||||
#
|
#
|
||||||
CONFIG_RTC_DRV_AT32AP700X=y
|
CONFIG_RTC_DRV_AT32AP700X=y
|
||||||
|
|
||||||
#
|
|
||||||
# Userspace I/O
|
|
||||||
#
|
|
||||||
# CONFIG_UIO is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
#
|
#
|
||||||
|
# CONFIG_DNOTIFY is not set
|
||||||
# CONFIG_INOTIFY is not set
|
# CONFIG_INOTIFY is not set
|
||||||
# CONFIG_QUOTA is not set
|
# CONFIG_QUOTA is not set
|
||||||
# CONFIG_DNOTIFY is not set
|
|
||||||
# CONFIG_AUTOFS_FS is not set
|
# CONFIG_AUTOFS_FS is not set
|
||||||
# CONFIG_AUTOFS4_FS is not set
|
# CONFIG_AUTOFS4_FS is not set
|
||||||
# CONFIG_FUSE_FS is not set
|
# CONFIG_FUSE_FS is not set
|
||||||
@ -580,7 +606,6 @@ CONFIG_JFFS2_RTIME=y
|
|||||||
# CONFIG_NETWORK_FILESYSTEMS is not set
|
# CONFIG_NETWORK_FILESYSTEMS is not set
|
||||||
# CONFIG_NLS is not set
|
# CONFIG_NLS is not set
|
||||||
# CONFIG_DLM is not set
|
# CONFIG_DLM is not set
|
||||||
# CONFIG_INSTRUMENTATION is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Kernel hacking
|
# Kernel hacking
|
||||||
@ -588,6 +613,7 @@ CONFIG_JFFS2_RTIME=y
|
|||||||
# CONFIG_PRINTK_TIME is not set
|
# CONFIG_PRINTK_TIME is not set
|
||||||
CONFIG_ENABLE_WARN_DEPRECATED=y
|
CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
|
CONFIG_FRAME_WARN=1024
|
||||||
CONFIG_MAGIC_SYSRQ=y
|
CONFIG_MAGIC_SYSRQ=y
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
# CONFIG_DEBUG_FS is not set
|
# CONFIG_DEBUG_FS is not set
|
||||||
@ -608,6 +634,8 @@ CONFIG_MAGIC_SYSRQ=y
|
|||||||
# Library routines
|
# Library routines
|
||||||
#
|
#
|
||||||
CONFIG_BITREVERSE=y
|
CONFIG_BITREVERSE=y
|
||||||
|
# CONFIG_GENERIC_FIND_FIRST_BIT is not set
|
||||||
|
# CONFIG_GENERIC_FIND_NEXT_BIT is not set
|
||||||
# CONFIG_CRC_CCITT is not set
|
# CONFIG_CRC_CCITT is not set
|
||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
# CONFIG_CRC_ITU_T is not set
|
# CONFIG_CRC_ITU_T is not set
|
||||||
|
@ -29,7 +29,9 @@ EXPORT_SYMBOL(__avr32_asr64);
|
|||||||
*/
|
*/
|
||||||
EXPORT_SYMBOL(memset);
|
EXPORT_SYMBOL(memset);
|
||||||
EXPORT_SYMBOL(memcpy);
|
EXPORT_SYMBOL(memcpy);
|
||||||
|
|
||||||
EXPORT_SYMBOL(clear_page);
|
EXPORT_SYMBOL(clear_page);
|
||||||
|
EXPORT_SYMBOL(copy_page);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Userspace access stuff.
|
* Userspace access stuff.
|
||||||
@ -41,6 +43,8 @@ EXPORT_SYMBOL(strncpy_from_user);
|
|||||||
EXPORT_SYMBOL(__strncpy_from_user);
|
EXPORT_SYMBOL(__strncpy_from_user);
|
||||||
EXPORT_SYMBOL(clear_user);
|
EXPORT_SYMBOL(clear_user);
|
||||||
EXPORT_SYMBOL(__clear_user);
|
EXPORT_SYMBOL(__clear_user);
|
||||||
|
EXPORT_SYMBOL(strnlen_user);
|
||||||
|
|
||||||
EXPORT_SYMBOL(csum_partial);
|
EXPORT_SYMBOL(csum_partial);
|
||||||
EXPORT_SYMBOL(csum_partial_copy_generic);
|
EXPORT_SYMBOL(csum_partial_copy_generic);
|
||||||
|
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
#include <asm/pgtable.h>
|
#include <asm/pgtable.h>
|
||||||
|
|
||||||
static struct fs_struct init_fs = INIT_FS;
|
static struct fs_struct init_fs = INIT_FS;
|
||||||
static struct files_struct init_files = INIT_FILES;
|
|
||||||
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
||||||
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
||||||
struct mm_struct init_mm = INIT_MM(init_mm);
|
struct mm_struct init_mm = INIT_MM(init_mm);
|
||||||
|
@ -108,5 +108,4 @@ static int __init at32_cpufreq_init(void)
|
|||||||
{
|
{
|
||||||
return cpufreq_register_driver(&at32_driver);
|
return cpufreq_register_driver(&at32_driver);
|
||||||
}
|
}
|
||||||
|
late_initcall(at32_cpufreq_init);
|
||||||
arch_initcall(at32_cpufreq_init);
|
|
||||||
|
@ -479,16 +479,6 @@ comment "Memory Setup"
|
|||||||
|
|
||||||
comment "Misc"
|
comment "Misc"
|
||||||
|
|
||||||
config ENET_FLASH_PIN
|
|
||||||
int "PF port/pin used for flash and ethernet sharing"
|
|
||||||
depends on (BFIN533_STAMP)
|
|
||||||
default 0
|
|
||||||
help
|
|
||||||
PF port/pin used for flash and ethernet sharing to allow other PF
|
|
||||||
pins to be used on other platforms without having to touch common
|
|
||||||
code.
|
|
||||||
For example: PF0 --> 0,PF1 --> 1,PF2 --> 2, etc.
|
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "Blackfin Exception Scratch Register"
|
prompt "Blackfin Exception Scratch Register"
|
||||||
default BFIN_SCRATCH_REG_RETN
|
default BFIN_SCRATCH_REG_RETN
|
||||||
@ -695,6 +685,8 @@ choice
|
|||||||
prompt "Uncached SDRAM region"
|
prompt "Uncached SDRAM region"
|
||||||
default DMA_UNCACHED_1M
|
default DMA_UNCACHED_1M
|
||||||
depends on BFIN_DMA_5XX
|
depends on BFIN_DMA_5XX
|
||||||
|
config DMA_UNCACHED_4M
|
||||||
|
bool "Enable 4M DMA region"
|
||||||
config DMA_UNCACHED_2M
|
config DMA_UNCACHED_2M
|
||||||
bool "Enable 2M DMA region"
|
bool "Enable 2M DMA region"
|
||||||
config DMA_UNCACHED_1M
|
config DMA_UNCACHED_1M
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.22.16
|
# Linux kernel version: 2.6.24.7
|
||||||
|
# Fri May 16 10:02:29 2008
|
||||||
#
|
#
|
||||||
# CONFIG_MMU is not set
|
# CONFIG_MMU is not set
|
||||||
# CONFIG_FPU is not set
|
# CONFIG_FPU is not set
|
||||||
@ -13,35 +14,34 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y
|
|||||||
CONFIG_GENERIC_HWEIGHT=y
|
CONFIG_GENERIC_HWEIGHT=y
|
||||||
CONFIG_GENERIC_HARDIRQS=y
|
CONFIG_GENERIC_HARDIRQS=y
|
||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
CONFIG_GENERIC_TIME=y
|
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
CONFIG_FORCE_MAX_ZONEORDER=14
|
CONFIG_FORCE_MAX_ZONEORDER=14
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
||||||
|
|
||||||
#
|
#
|
||||||
# Code maturity level options
|
# General setup
|
||||||
#
|
#
|
||||||
CONFIG_EXPERIMENTAL=y
|
CONFIG_EXPERIMENTAL=y
|
||||||
CONFIG_BROKEN_ON_SMP=y
|
CONFIG_BROKEN_ON_SMP=y
|
||||||
CONFIG_INIT_ENV_ARG_LIMIT=32
|
CONFIG_INIT_ENV_ARG_LIMIT=32
|
||||||
|
|
||||||
#
|
|
||||||
# General setup
|
|
||||||
#
|
|
||||||
CONFIG_LOCALVERSION=""
|
CONFIG_LOCALVERSION=""
|
||||||
CONFIG_LOCALVERSION_AUTO=y
|
CONFIG_LOCALVERSION_AUTO=y
|
||||||
CONFIG_SYSVIPC=y
|
CONFIG_SYSVIPC=y
|
||||||
# CONFIG_IPC_NS is not set
|
|
||||||
CONFIG_SYSVIPC_SYSCTL=y
|
CONFIG_SYSVIPC_SYSCTL=y
|
||||||
# CONFIG_POSIX_MQUEUE is not set
|
# CONFIG_POSIX_MQUEUE is not set
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_UTS_NS is not set
|
# CONFIG_USER_NS is not set
|
||||||
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
CONFIG_IKCONFIG=y
|
CONFIG_IKCONFIG=y
|
||||||
CONFIG_IKCONFIG_PROC=y
|
CONFIG_IKCONFIG_PROC=y
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
|
# CONFIG_CGROUPS is not set
|
||||||
|
CONFIG_FAIR_GROUP_SCHED=y
|
||||||
|
CONFIG_FAIR_USER_SCHED=y
|
||||||
|
# CONFIG_FAIR_CGROUP_SCHED is not set
|
||||||
CONFIG_SYSFS_DEPRECATED=y
|
CONFIG_SYSFS_DEPRECATED=y
|
||||||
# CONFIG_RELAY is not set
|
# CONFIG_RELAY is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
@ -64,32 +64,24 @@ CONFIG_EPOLL=y
|
|||||||
CONFIG_SIGNALFD=y
|
CONFIG_SIGNALFD=y
|
||||||
CONFIG_EVENTFD=y
|
CONFIG_EVENTFD=y
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
CONFIG_BIG_ORDER_ALLOC_NOFAIL_MAGIC=3
|
|
||||||
# CONFIG_NP2 is not set
|
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
# CONFIG_SLUB is not set
|
# CONFIG_SLUB is not set
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_RT_MUTEXES=y
|
CONFIG_RT_MUTEXES=y
|
||||||
CONFIG_TINY_SHMEM=y
|
CONFIG_TINY_SHMEM=y
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
|
|
||||||
#
|
|
||||||
# Loadable module support
|
|
||||||
#
|
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
||||||
CONFIG_KMOD=y
|
CONFIG_KMOD=y
|
||||||
|
|
||||||
#
|
|
||||||
# Block layer
|
|
||||||
#
|
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
# CONFIG_LBD is not set
|
# CONFIG_LBD is not set
|
||||||
# CONFIG_BLK_DEV_IO_TRACE is not set
|
# CONFIG_BLK_DEV_IO_TRACE is not set
|
||||||
# CONFIG_LSF is not set
|
# CONFIG_LSF is not set
|
||||||
|
# CONFIG_BLK_DEV_BSG is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# IO Schedulers
|
# IO Schedulers
|
||||||
@ -141,7 +133,6 @@ CONFIG_BF_REV_0_0=y
|
|||||||
# CONFIG_BF_REV_ANY is not set
|
# CONFIG_BF_REV_ANY is not set
|
||||||
# CONFIG_BF_REV_NONE is not set
|
# CONFIG_BF_REV_NONE is not set
|
||||||
CONFIG_BF52x=y
|
CONFIG_BF52x=y
|
||||||
CONFIG_BFIN_SINGLE_CORE=y
|
|
||||||
CONFIG_MEM_MT48LC32M16A2TG_75=y
|
CONFIG_MEM_MT48LC32M16A2TG_75=y
|
||||||
CONFIG_BFIN527_EZKIT=y
|
CONFIG_BFIN527_EZKIT=y
|
||||||
|
|
||||||
@ -227,12 +218,14 @@ CONFIG_IRQ_USB_DMA=11
|
|||||||
# Board customizations
|
# Board customizations
|
||||||
#
|
#
|
||||||
# CONFIG_CMDLINE_BOOL is not set
|
# CONFIG_CMDLINE_BOOL is not set
|
||||||
|
CONFIG_BOOT_LOAD=0x1000
|
||||||
|
|
||||||
#
|
#
|
||||||
# Clock/PLL Setup
|
# Clock/PLL Setup
|
||||||
#
|
#
|
||||||
CONFIG_CLKIN_HZ=25000000
|
CONFIG_CLKIN_HZ=25000000
|
||||||
# CONFIG_BFIN_KERNEL_CLOCK is not set
|
# CONFIG_BFIN_KERNEL_CLOCK is not set
|
||||||
|
CONFIG_MAX_MEM_SIZE=512
|
||||||
CONFIG_MAX_VCO_HZ=600000000
|
CONFIG_MAX_VCO_HZ=600000000
|
||||||
CONFIG_MIN_VCO_HZ=50000000
|
CONFIG_MIN_VCO_HZ=50000000
|
||||||
CONFIG_MAX_SCLK_HZ=133333333
|
CONFIG_MAX_SCLK_HZ=133333333
|
||||||
@ -246,13 +239,17 @@ CONFIG_HZ_250=y
|
|||||||
# CONFIG_HZ_300 is not set
|
# CONFIG_HZ_300 is not set
|
||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=250
|
CONFIG_HZ=250
|
||||||
|
CONFIG_GENERIC_TIME=y
|
||||||
|
CONFIG_GENERIC_CLOCKEVENTS=y
|
||||||
|
# CONFIG_CYCLES_CLOCKSOURCE is not set
|
||||||
|
# CONFIG_TICK_ONESHOT is not set
|
||||||
|
# CONFIG_NO_HZ is not set
|
||||||
|
# CONFIG_HIGH_RES_TIMERS is not set
|
||||||
|
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Memory Setup
|
# Misc
|
||||||
#
|
#
|
||||||
CONFIG_MAX_MEM_SIZE=512
|
|
||||||
CONFIG_MEM_ADD_WIDTH=10
|
|
||||||
CONFIG_BOOT_LOAD=0x1000
|
|
||||||
CONFIG_BFIN_SCRATCH_REG_RETN=y
|
CONFIG_BFIN_SCRATCH_REG_RETN=y
|
||||||
# CONFIG_BFIN_SCRATCH_REG_RETE is not set
|
# CONFIG_BFIN_SCRATCH_REG_RETE is not set
|
||||||
# CONFIG_BFIN_SCRATCH_REG_CYCLES is not set
|
# CONFIG_BFIN_SCRATCH_REG_CYCLES is not set
|
||||||
@ -288,12 +285,14 @@ CONFIG_FLATMEM_MANUAL=y
|
|||||||
CONFIG_FLATMEM=y
|
CONFIG_FLATMEM=y
|
||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
# CONFIG_SPARSEMEM_STATIC is not set
|
# CONFIG_SPARSEMEM_STATIC is not set
|
||||||
|
# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
# CONFIG_RESOURCES_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=1
|
CONFIG_ZONE_DMA_FLAG=1
|
||||||
CONFIG_LARGE_ALLOCS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
# CONFIG_BFIN_GPTIMERS is not set
|
# CONFIG_BFIN_GPTIMERS is not set
|
||||||
CONFIG_BFIN_DMA_5XX=y
|
CONFIG_BFIN_DMA_5XX=y
|
||||||
|
# CONFIG_DMA_UNCACHED_4M is not set
|
||||||
# CONFIG_DMA_UNCACHED_2M is not set
|
# CONFIG_DMA_UNCACHED_2M is not set
|
||||||
CONFIG_DMA_UNCACHED_1M=y
|
CONFIG_DMA_UNCACHED_1M=y
|
||||||
# CONFIG_DMA_UNCACHED_NONE is not set
|
# CONFIG_DMA_UNCACHED_NONE is not set
|
||||||
@ -338,10 +337,6 @@ CONFIG_BANK_3=0xFFC0
|
|||||||
#
|
#
|
||||||
# CONFIG_PCI is not set
|
# CONFIG_PCI is not set
|
||||||
# CONFIG_ARCH_SUPPORTS_MSI is not set
|
# CONFIG_ARCH_SUPPORTS_MSI is not set
|
||||||
|
|
||||||
#
|
|
||||||
# PCCARD (PCMCIA/CardBus) support
|
|
||||||
#
|
|
||||||
# CONFIG_PCCARD is not set
|
# CONFIG_PCCARD is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -357,8 +352,14 @@ CONFIG_BINFMT_ZFLAT=y
|
|||||||
# Power management options
|
# Power management options
|
||||||
#
|
#
|
||||||
# CONFIG_PM is not set
|
# CONFIG_PM is not set
|
||||||
|
CONFIG_SUSPEND_UP_POSSIBLE=y
|
||||||
# CONFIG_PM_WAKEUP_BY_GPIO is not set
|
# CONFIG_PM_WAKEUP_BY_GPIO is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# CPU Frequency scaling
|
||||||
|
#
|
||||||
|
# CONFIG_CPU_FREQ is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Networking
|
# Networking
|
||||||
#
|
#
|
||||||
@ -395,6 +396,7 @@ CONFIG_SYN_COOKIES=y
|
|||||||
CONFIG_INET_XFRM_MODE_TRANSPORT=y
|
CONFIG_INET_XFRM_MODE_TRANSPORT=y
|
||||||
CONFIG_INET_XFRM_MODE_TUNNEL=y
|
CONFIG_INET_XFRM_MODE_TUNNEL=y
|
||||||
CONFIG_INET_XFRM_MODE_BEET=y
|
CONFIG_INET_XFRM_MODE_BEET=y
|
||||||
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=y
|
CONFIG_INET_DIAG=y
|
||||||
CONFIG_INET_TCP_DIAG=y
|
CONFIG_INET_TCP_DIAG=y
|
||||||
# CONFIG_TCP_CONG_ADVANCED is not set
|
# CONFIG_TCP_CONG_ADVANCED is not set
|
||||||
@ -421,10 +423,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
|||||||
# CONFIG_LAPB is not set
|
# CONFIG_LAPB is not set
|
||||||
# CONFIG_ECONET is not set
|
# CONFIG_ECONET is not set
|
||||||
# CONFIG_WAN_ROUTER is not set
|
# CONFIG_WAN_ROUTER is not set
|
||||||
|
|
||||||
#
|
|
||||||
# QoS and/or fair queueing
|
|
||||||
#
|
|
||||||
# CONFIG_NET_SCHED is not set
|
# CONFIG_NET_SCHED is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -444,6 +442,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
|||||||
# CONFIG_MAC80211 is not set
|
# CONFIG_MAC80211 is not set
|
||||||
# CONFIG_IEEE80211 is not set
|
# CONFIG_IEEE80211 is not set
|
||||||
# CONFIG_RFKILL is not set
|
# CONFIG_RFKILL is not set
|
||||||
|
# CONFIG_NET_9P is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Device Drivers
|
# Device Drivers
|
||||||
@ -452,14 +451,11 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
|||||||
#
|
#
|
||||||
# Generic Driver Options
|
# Generic Driver Options
|
||||||
#
|
#
|
||||||
|
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
|
||||||
CONFIG_STANDALONE=y
|
CONFIG_STANDALONE=y
|
||||||
CONFIG_PREVENT_FIRMWARE_BUILD=y
|
CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
# CONFIG_FW_LOADER is not set
|
# CONFIG_FW_LOADER is not set
|
||||||
# CONFIG_SYS_HYPERVISOR is not set
|
# CONFIG_SYS_HYPERVISOR is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Connector - unified userspace <-> kernelspace linker
|
|
||||||
#
|
|
||||||
# CONFIG_CONNECTOR is not set
|
# CONFIG_CONNECTOR is not set
|
||||||
CONFIG_MTD=y
|
CONFIG_MTD=y
|
||||||
# CONFIG_MTD_DEBUG is not set
|
# CONFIG_MTD_DEBUG is not set
|
||||||
@ -479,6 +475,7 @@ CONFIG_MTD_BLOCK=y
|
|||||||
# CONFIG_INFTL is not set
|
# CONFIG_INFTL is not set
|
||||||
# CONFIG_RFD_FTL is not set
|
# CONFIG_RFD_FTL is not set
|
||||||
# CONFIG_SSFDC is not set
|
# CONFIG_SSFDC is not set
|
||||||
|
# CONFIG_MTD_OOPS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# RAM/ROM/Flash chip drivers
|
# RAM/ROM/Flash chip drivers
|
||||||
@ -542,39 +539,27 @@ CONFIG_MTD_NAND_IDS=m
|
|||||||
# CONFIG_MTD_NAND_DISKONCHIP is not set
|
# CONFIG_MTD_NAND_DISKONCHIP is not set
|
||||||
# CONFIG_MTD_NAND_NANDSIM is not set
|
# CONFIG_MTD_NAND_NANDSIM is not set
|
||||||
# CONFIG_MTD_NAND_PLATFORM is not set
|
# CONFIG_MTD_NAND_PLATFORM is not set
|
||||||
|
# CONFIG_MTD_ALAUDA is not set
|
||||||
# CONFIG_MTD_ONENAND is not set
|
# CONFIG_MTD_ONENAND is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# UBI - Unsorted block images
|
# UBI - Unsorted block images
|
||||||
#
|
#
|
||||||
# CONFIG_MTD_UBI is not set
|
# CONFIG_MTD_UBI is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Parallel port support
|
|
||||||
#
|
|
||||||
# CONFIG_PARPORT is not set
|
# CONFIG_PARPORT is not set
|
||||||
|
CONFIG_BLK_DEV=y
|
||||||
#
|
|
||||||
# Plug and Play support
|
|
||||||
#
|
|
||||||
# CONFIG_PNPACPI is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Block devices
|
|
||||||
#
|
|
||||||
# CONFIG_BLK_DEV_COW_COMMON is not set
|
# CONFIG_BLK_DEV_COW_COMMON is not set
|
||||||
# CONFIG_BLK_DEV_LOOP is not set
|
# CONFIG_BLK_DEV_LOOP is not set
|
||||||
# CONFIG_BLK_DEV_NBD is not set
|
# CONFIG_BLK_DEV_NBD is not set
|
||||||
|
# CONFIG_BLK_DEV_UB is not set
|
||||||
CONFIG_BLK_DEV_RAM=y
|
CONFIG_BLK_DEV_RAM=y
|
||||||
CONFIG_BLK_DEV_RAM_COUNT=16
|
CONFIG_BLK_DEV_RAM_COUNT=16
|
||||||
CONFIG_BLK_DEV_RAM_SIZE=4096
|
CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
|
CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
|
||||||
# CONFIG_CDROM_PKTCDVD is not set
|
# CONFIG_CDROM_PKTCDVD is not set
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
|
CONFIG_MISC_DEVICES=y
|
||||||
#
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
# Misc devices
|
|
||||||
#
|
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -582,22 +567,18 @@ CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
|
|||||||
#
|
#
|
||||||
# CONFIG_RAID_ATTRS is not set
|
# CONFIG_RAID_ATTRS is not set
|
||||||
# CONFIG_SCSI is not set
|
# CONFIG_SCSI is not set
|
||||||
|
# CONFIG_SCSI_DMA is not set
|
||||||
# CONFIG_SCSI_NETLINK is not set
|
# CONFIG_SCSI_NETLINK is not set
|
||||||
# CONFIG_ATA is not set
|
# CONFIG_ATA is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Multi-device support (RAID and LVM)
|
|
||||||
#
|
|
||||||
# CONFIG_MD is not set
|
# CONFIG_MD is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Network device support
|
|
||||||
#
|
|
||||||
CONFIG_NETDEVICES=y
|
CONFIG_NETDEVICES=y
|
||||||
|
# CONFIG_NETDEVICES_MULTIQUEUE is not set
|
||||||
# CONFIG_DUMMY is not set
|
# CONFIG_DUMMY is not set
|
||||||
# CONFIG_BONDING is not set
|
# CONFIG_BONDING is not set
|
||||||
|
# CONFIG_MACVLAN is not set
|
||||||
# CONFIG_EQUALIZER is not set
|
# CONFIG_EQUALIZER is not set
|
||||||
# CONFIG_TUN is not set
|
# CONFIG_TUN is not set
|
||||||
|
# CONFIG_VETH is not set
|
||||||
CONFIG_PHYLIB=y
|
CONFIG_PHYLIB=y
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -611,21 +592,24 @@ CONFIG_PHYLIB=y
|
|||||||
# CONFIG_VITESSE_PHY is not set
|
# CONFIG_VITESSE_PHY is not set
|
||||||
# CONFIG_SMSC_PHY is not set
|
# CONFIG_SMSC_PHY is not set
|
||||||
# CONFIG_BROADCOM_PHY is not set
|
# CONFIG_BROADCOM_PHY is not set
|
||||||
|
# CONFIG_ICPLUS_PHY is not set
|
||||||
# CONFIG_FIXED_PHY is not set
|
# CONFIG_FIXED_PHY is not set
|
||||||
|
# CONFIG_MDIO_BITBANG is not set
|
||||||
#
|
|
||||||
# Ethernet (10 or 100Mbit)
|
|
||||||
#
|
|
||||||
CONFIG_NET_ETHERNET=y
|
CONFIG_NET_ETHERNET=y
|
||||||
CONFIG_MII=y
|
CONFIG_MII=y
|
||||||
# CONFIG_SMC91X is not set
|
|
||||||
CONFIG_BFIN_MAC=y
|
CONFIG_BFIN_MAC=y
|
||||||
CONFIG_BFIN_MAC_USE_L1=y
|
CONFIG_BFIN_MAC_USE_L1=y
|
||||||
CONFIG_BFIN_TX_DESC_NUM=10
|
CONFIG_BFIN_TX_DESC_NUM=10
|
||||||
CONFIG_BFIN_RX_DESC_NUM=20
|
CONFIG_BFIN_RX_DESC_NUM=20
|
||||||
CONFIG_BFIN_MAC_RMII=y
|
CONFIG_BFIN_MAC_RMII=y
|
||||||
|
# CONFIG_SMC91X is not set
|
||||||
# CONFIG_SMSC911X is not set
|
# CONFIG_SMSC911X is not set
|
||||||
# CONFIG_DM9000 is not set
|
# CONFIG_DM9000 is not set
|
||||||
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
|
# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
|
||||||
|
# CONFIG_B44 is not set
|
||||||
CONFIG_NETDEV_1000=y
|
CONFIG_NETDEV_1000=y
|
||||||
# CONFIG_AX88180 is not set
|
# CONFIG_AX88180 is not set
|
||||||
CONFIG_NETDEV_10000=y
|
CONFIG_NETDEV_10000=y
|
||||||
@ -635,6 +619,15 @@ CONFIG_NETDEV_10000=y
|
|||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
# CONFIG_WLAN_PRE80211 is not set
|
||||||
# CONFIG_WLAN_80211 is not set
|
# CONFIG_WLAN_80211 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB Network Adapters
|
||||||
|
#
|
||||||
|
# CONFIG_USB_CATC is not set
|
||||||
|
# CONFIG_USB_KAWETH is not set
|
||||||
|
# CONFIG_USB_PEGASUS is not set
|
||||||
|
# CONFIG_USB_RTL8150 is not set
|
||||||
|
# CONFIG_USB_USBNET is not set
|
||||||
# CONFIG_WAN is not set
|
# CONFIG_WAN is not set
|
||||||
# CONFIG_PPP is not set
|
# CONFIG_PPP is not set
|
||||||
# CONFIG_SLIP is not set
|
# CONFIG_SLIP is not set
|
||||||
@ -642,15 +635,7 @@ CONFIG_NETDEV_10000=y
|
|||||||
# CONFIG_NETCONSOLE is not set
|
# CONFIG_NETCONSOLE is not set
|
||||||
# CONFIG_NETPOLL is not set
|
# CONFIG_NETPOLL is not set
|
||||||
# CONFIG_NET_POLL_CONTROLLER is not set
|
# CONFIG_NET_POLL_CONTROLLER is not set
|
||||||
|
|
||||||
#
|
|
||||||
# ISDN subsystem
|
|
||||||
#
|
|
||||||
# CONFIG_ISDN is not set
|
# CONFIG_ISDN is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Telephony Support
|
|
||||||
#
|
|
||||||
# CONFIG_PHONE is not set
|
# CONFIG_PHONE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -665,7 +650,6 @@ CONFIG_INPUT=y
|
|||||||
#
|
#
|
||||||
# CONFIG_INPUT_MOUSEDEV is not set
|
# CONFIG_INPUT_MOUSEDEV is not set
|
||||||
# CONFIG_INPUT_JOYDEV is not set
|
# CONFIG_INPUT_JOYDEV is not set
|
||||||
# CONFIG_INPUT_TSDEV is not set
|
|
||||||
# CONFIG_INPUT_EVDEV is not set
|
# CONFIG_INPUT_EVDEV is not set
|
||||||
# CONFIG_INPUT_EVBUG is not set
|
# CONFIG_INPUT_EVBUG is not set
|
||||||
|
|
||||||
@ -697,7 +681,6 @@ CONFIG_INPUT_MISC=y
|
|||||||
#
|
#
|
||||||
# CONFIG_AD9960 is not set
|
# CONFIG_AD9960 is not set
|
||||||
# CONFIG_SPI_ADC_BF533 is not set
|
# CONFIG_SPI_ADC_BF533 is not set
|
||||||
# CONFIG_BF5xx_PFLAGS is not set
|
|
||||||
# CONFIG_BF5xx_PPIFCD is not set
|
# CONFIG_BF5xx_PPIFCD is not set
|
||||||
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
||||||
# CONFIG_BF5xx_PPI is not set
|
# CONFIG_BF5xx_PPI is not set
|
||||||
@ -706,7 +689,7 @@ CONFIG_BFIN_OTP=y
|
|||||||
# CONFIG_BFIN_SPORT is not set
|
# CONFIG_BFIN_SPORT is not set
|
||||||
# CONFIG_BFIN_TIMER_LATENCY is not set
|
# CONFIG_BFIN_TIMER_LATENCY is not set
|
||||||
# CONFIG_TWI_LCD is not set
|
# CONFIG_TWI_LCD is not set
|
||||||
# CONFIG_AD5304 is not set
|
# CONFIG_SIMPLE_GPIO is not set
|
||||||
# CONFIG_VT is not set
|
# CONFIG_VT is not set
|
||||||
# CONFIG_SERIAL_NONSTANDARD is not set
|
# CONFIG_SERIAL_NONSTANDARD is not set
|
||||||
|
|
||||||
@ -735,27 +718,11 @@ CONFIG_UNIX98_PTYS=y
|
|||||||
# CAN, the car bus and industrial fieldbus
|
# CAN, the car bus and industrial fieldbus
|
||||||
#
|
#
|
||||||
# CONFIG_CAN4LINUX is not set
|
# CONFIG_CAN4LINUX is not set
|
||||||
|
|
||||||
#
|
|
||||||
# IPMI
|
|
||||||
#
|
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
CONFIG_WATCHDOG=y
|
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Watchdog Device Drivers
|
|
||||||
#
|
|
||||||
# CONFIG_SOFT_WATCHDOG is not set
|
|
||||||
CONFIG_BFIN_WDT=y
|
|
||||||
CONFIG_HW_RANDOM=y
|
CONFIG_HW_RANDOM=y
|
||||||
# CONFIG_GEN_RTC is not set
|
# CONFIG_GEN_RTC is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
# CONFIG_RAW_DRIVER is not set
|
# CONFIG_RAW_DRIVER is not set
|
||||||
|
|
||||||
#
|
|
||||||
# TPM devices
|
|
||||||
#
|
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=y
|
CONFIG_I2C=y
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
@ -777,21 +744,24 @@ CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=50
|
|||||||
# CONFIG_I2C_OCORES is not set
|
# CONFIG_I2C_OCORES is not set
|
||||||
# CONFIG_I2C_PARPORT_LIGHT is not set
|
# CONFIG_I2C_PARPORT_LIGHT is not set
|
||||||
# CONFIG_I2C_SIMTEC is not set
|
# CONFIG_I2C_SIMTEC is not set
|
||||||
|
# CONFIG_I2C_TAOS_EVM is not set
|
||||||
# CONFIG_I2C_STUB is not set
|
# CONFIG_I2C_STUB is not set
|
||||||
|
# CONFIG_I2C_TINY_USB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_SENSORS_DS1337 is not set
|
# CONFIG_SENSORS_DS1337 is not set
|
||||||
# CONFIG_SENSORS_DS1374 is not set
|
# CONFIG_SENSORS_DS1374 is not set
|
||||||
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_SENSORS_AD5252 is not set
|
# CONFIG_SENSORS_AD5252 is not set
|
||||||
# CONFIG_SENSORS_EEPROM is not set
|
# CONFIG_SENSORS_EEPROM is not set
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
# CONFIG_SENSORS_PCF8574 is not set
|
||||||
# CONFIG_SENSORS_PCF8575 is not set
|
# CONFIG_SENSORS_PCF8575 is not set
|
||||||
# CONFIG_SENSORS_PCA9543 is not set
|
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
# CONFIG_SENSORS_PCA9539 is not set
|
||||||
# CONFIG_SENSORS_PCF8591 is not set
|
# CONFIG_SENSORS_PCF8591 is not set
|
||||||
# CONFIG_SENSORS_MAX6875 is not set
|
# CONFIG_SENSORS_MAX6875 is not set
|
||||||
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
# CONFIG_I2C_DEBUG_BUS is not set
|
# CONFIG_I2C_DEBUG_BUS is not set
|
||||||
@ -814,14 +784,11 @@ CONFIG_SPI_BFIN=y
|
|||||||
#
|
#
|
||||||
# CONFIG_SPI_AT25 is not set
|
# CONFIG_SPI_AT25 is not set
|
||||||
# CONFIG_SPI_SPIDEV is not set
|
# CONFIG_SPI_SPIDEV is not set
|
||||||
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
#
|
|
||||||
# Dallas's 1-wire bus
|
|
||||||
#
|
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
CONFIG_HWMON=y
|
CONFIG_HWMON=y
|
||||||
# CONFIG_HWMON_VID is not set
|
# CONFIG_HWMON_VID is not set
|
||||||
# CONFIG_SENSORS_ABITUGURU is not set
|
|
||||||
# CONFIG_SENSORS_AD7418 is not set
|
# CONFIG_SENSORS_AD7418 is not set
|
||||||
# CONFIG_SENSORS_ADM1021 is not set
|
# CONFIG_SENSORS_ADM1021 is not set
|
||||||
# CONFIG_SENSORS_ADM1025 is not set
|
# CONFIG_SENSORS_ADM1025 is not set
|
||||||
@ -829,12 +796,12 @@ CONFIG_HWMON=y
|
|||||||
# CONFIG_SENSORS_ADM1029 is not set
|
# CONFIG_SENSORS_ADM1029 is not set
|
||||||
# CONFIG_SENSORS_ADM1031 is not set
|
# CONFIG_SENSORS_ADM1031 is not set
|
||||||
# CONFIG_SENSORS_ADM9240 is not set
|
# CONFIG_SENSORS_ADM9240 is not set
|
||||||
# CONFIG_SENSORS_ASB100 is not set
|
# CONFIG_SENSORS_ADT7470 is not set
|
||||||
# CONFIG_SENSORS_ATXP1 is not set
|
# CONFIG_SENSORS_ATXP1 is not set
|
||||||
# CONFIG_SENSORS_DS1621 is not set
|
# CONFIG_SENSORS_DS1621 is not set
|
||||||
# CONFIG_SENSORS_F71805F is not set
|
# CONFIG_SENSORS_F71805F is not set
|
||||||
# CONFIG_SENSORS_FSCHER is not set
|
# CONFIG_SENSORS_F71882FG is not set
|
||||||
# CONFIG_SENSORS_FSCPOS is not set
|
# CONFIG_SENSORS_F75375S is not set
|
||||||
# CONFIG_SENSORS_GL518SM is not set
|
# CONFIG_SENSORS_GL518SM is not set
|
||||||
# CONFIG_SENSORS_GL520SM is not set
|
# CONFIG_SENSORS_GL520SM is not set
|
||||||
# CONFIG_SENSORS_IT87 is not set
|
# CONFIG_SENSORS_IT87 is not set
|
||||||
@ -849,13 +816,16 @@ CONFIG_HWMON=y
|
|||||||
# CONFIG_SENSORS_LM87 is not set
|
# CONFIG_SENSORS_LM87 is not set
|
||||||
# CONFIG_SENSORS_LM90 is not set
|
# CONFIG_SENSORS_LM90 is not set
|
||||||
# CONFIG_SENSORS_LM92 is not set
|
# CONFIG_SENSORS_LM92 is not set
|
||||||
|
# CONFIG_SENSORS_LM93 is not set
|
||||||
# CONFIG_SENSORS_MAX1619 is not set
|
# CONFIG_SENSORS_MAX1619 is not set
|
||||||
# CONFIG_SENSORS_MAX6650 is not set
|
# CONFIG_SENSORS_MAX6650 is not set
|
||||||
# CONFIG_SENSORS_PC87360 is not set
|
# CONFIG_SENSORS_PC87360 is not set
|
||||||
# CONFIG_SENSORS_PC87427 is not set
|
# CONFIG_SENSORS_PC87427 is not set
|
||||||
|
# CONFIG_SENSORS_DME1737 is not set
|
||||||
# CONFIG_SENSORS_SMSC47M1 is not set
|
# CONFIG_SENSORS_SMSC47M1 is not set
|
||||||
# CONFIG_SENSORS_SMSC47M192 is not set
|
# CONFIG_SENSORS_SMSC47M192 is not set
|
||||||
# CONFIG_SENSORS_SMSC47B397 is not set
|
# CONFIG_SENSORS_SMSC47B397 is not set
|
||||||
|
# CONFIG_SENSORS_THMC50 is not set
|
||||||
# CONFIG_SENSORS_VT1211 is not set
|
# CONFIG_SENSORS_VT1211 is not set
|
||||||
# CONFIG_SENSORS_W83781D is not set
|
# CONFIG_SENSORS_W83781D is not set
|
||||||
# CONFIG_SENSORS_W83791D is not set
|
# CONFIG_SENSORS_W83791D is not set
|
||||||
@ -865,6 +835,25 @@ CONFIG_HWMON=y
|
|||||||
# CONFIG_SENSORS_W83627HF is not set
|
# CONFIG_SENSORS_W83627HF is not set
|
||||||
# CONFIG_SENSORS_W83627EHF is not set
|
# CONFIG_SENSORS_W83627EHF is not set
|
||||||
# CONFIG_HWMON_DEBUG_CHIP is not set
|
# CONFIG_HWMON_DEBUG_CHIP is not set
|
||||||
|
CONFIG_WATCHDOG=y
|
||||||
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Watchdog Device Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_SOFT_WATCHDOG is not set
|
||||||
|
CONFIG_BFIN_WDT=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB-based Watchdog Cards
|
||||||
|
#
|
||||||
|
# CONFIG_USBPCWATCHDOG is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Sonics Silicon Backplane
|
||||||
|
#
|
||||||
|
CONFIG_SSB_POSSIBLE=y
|
||||||
|
# CONFIG_SSB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Multifunction device drivers
|
# Multifunction device drivers
|
||||||
@ -881,72 +870,133 @@ CONFIG_HWMON=y
|
|||||||
#
|
#
|
||||||
# Graphics support
|
# Graphics support
|
||||||
#
|
#
|
||||||
|
# CONFIG_VGASTATE is not set
|
||||||
|
# CONFIG_VIDEO_OUTPUT_CONTROL is not set
|
||||||
|
# CONFIG_FB is not set
|
||||||
# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
|
# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Display device support
|
# Display device support
|
||||||
#
|
#
|
||||||
# CONFIG_DISPLAY_SUPPORT is not set
|
# CONFIG_DISPLAY_SUPPORT is not set
|
||||||
# CONFIG_VGASTATE is not set
|
|
||||||
# CONFIG_FB is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Sound
|
# Sound
|
||||||
#
|
#
|
||||||
# CONFIG_SOUND is not set
|
# CONFIG_SOUND is not set
|
||||||
|
CONFIG_HID_SUPPORT=y
|
||||||
#
|
|
||||||
# HID Devices
|
|
||||||
#
|
|
||||||
CONFIG_HID=y
|
CONFIG_HID=y
|
||||||
# CONFIG_HID_DEBUG is not set
|
# CONFIG_HID_DEBUG is not set
|
||||||
|
# CONFIG_HIDRAW is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# USB support
|
# USB Input Devices
|
||||||
#
|
#
|
||||||
|
CONFIG_USB_HID=y
|
||||||
|
# CONFIG_USB_HIDINPUT_POWERBOOK is not set
|
||||||
|
# CONFIG_HID_FF is not set
|
||||||
|
# CONFIG_USB_HIDDEV is not set
|
||||||
|
CONFIG_USB_SUPPORT=y
|
||||||
CONFIG_USB_ARCH_HAS_HCD=y
|
CONFIG_USB_ARCH_HAS_HCD=y
|
||||||
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
||||||
# CONFIG_USB_ARCH_HAS_EHCI is not set
|
# CONFIG_USB_ARCH_HAS_EHCI is not set
|
||||||
# CONFIG_USB is not set
|
CONFIG_USB=y
|
||||||
|
# CONFIG_USB_DEBUG is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Enable Host or Gadget support to see Inventra options
|
# Miscellaneous USB options
|
||||||
#
|
#
|
||||||
|
# CONFIG_USB_DEVICEFS is not set
|
||||||
|
CONFIG_USB_DEVICE_CLASS=y
|
||||||
|
# CONFIG_USB_DYNAMIC_MINORS is not set
|
||||||
|
# CONFIG_USB_OTG is not set
|
||||||
|
# CONFIG_USB_OTG_WHITELIST is not set
|
||||||
|
CONFIG_USB_OTG_BLACKLIST_HUB=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB Host Controller Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_USB_ISP116X_HCD is not set
|
||||||
|
# CONFIG_USB_ISP1362_HCD is not set
|
||||||
|
# CONFIG_USB_ISP1760_HCD is not set
|
||||||
|
# CONFIG_USB_SL811_HCD is not set
|
||||||
|
# CONFIG_USB_R8A66597_HCD is not set
|
||||||
|
CONFIG_USB_MUSB_HDRC=y
|
||||||
|
CONFIG_USB_MUSB_SOC=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# Blackfin high speed USB support
|
||||||
|
#
|
||||||
|
CONFIG_USB_MUSB_HOST=y
|
||||||
|
# CONFIG_USB_MUSB_PERIPHERAL is not set
|
||||||
|
# CONFIG_USB_MUSB_OTG is not set
|
||||||
|
CONFIG_USB_MUSB_HDRC_HCD=y
|
||||||
|
CONFIG_MUSB_PIO_ONLY=y
|
||||||
|
CONFIG_USB_MUSB_LOGLEVEL=0
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB Device Class drivers
|
||||||
|
#
|
||||||
|
# CONFIG_USB_ACM is not set
|
||||||
|
# CONFIG_USB_PRINTER is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
|
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
|
||||||
#
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# may also be needed; see USB_STORAGE Help for more information
|
||||||
|
#
|
||||||
|
# CONFIG_USB_LIBUSUAL is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB Imaging devices
|
||||||
|
#
|
||||||
|
# CONFIG_USB_MDC800 is not set
|
||||||
|
CONFIG_USB_MON=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB port drivers
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB Serial Converter support
|
||||||
|
#
|
||||||
|
# CONFIG_USB_SERIAL is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB Miscellaneous drivers
|
||||||
|
#
|
||||||
|
# CONFIG_USB_EMI62 is not set
|
||||||
|
# CONFIG_USB_EMI26 is not set
|
||||||
|
# CONFIG_USB_ADUTUX is not set
|
||||||
|
# CONFIG_USB_AUERSWALD is not set
|
||||||
|
# CONFIG_USB_RIO500 is not set
|
||||||
|
# CONFIG_USB_LEGOTOWER is not set
|
||||||
|
# CONFIG_USB_LCD is not set
|
||||||
|
# CONFIG_USB_BERRY_CHARGE is not set
|
||||||
|
# CONFIG_USB_LED is not set
|
||||||
|
# CONFIG_USB_CYPRESS_CY7C63 is not set
|
||||||
|
# CONFIG_USB_CYTHERM is not set
|
||||||
|
# CONFIG_USB_PHIDGET is not set
|
||||||
|
# CONFIG_USB_IDMOUSE is not set
|
||||||
|
# CONFIG_USB_FTDI_ELAN is not set
|
||||||
|
# CONFIG_USB_APPLEDISPLAY is not set
|
||||||
|
# CONFIG_USB_SISUSBVGA is not set
|
||||||
|
# CONFIG_USB_LD is not set
|
||||||
|
# CONFIG_USB_TRANCEVIBRATOR is not set
|
||||||
|
# CONFIG_USB_IOWARRIOR is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB DSL modem support
|
||||||
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# USB Gadget Support
|
# USB Gadget Support
|
||||||
#
|
#
|
||||||
# CONFIG_USB_GADGET is not set
|
# CONFIG_USB_GADGET is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
|
|
||||||
#
|
|
||||||
# LED devices
|
|
||||||
#
|
|
||||||
# CONFIG_NEW_LEDS is not set
|
# CONFIG_NEW_LEDS is not set
|
||||||
|
|
||||||
#
|
|
||||||
# LED drivers
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# LED Triggers
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# InfiniBand support
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# EDAC - error detection and reporting (RAS) (EXPERIMENTAL)
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Real Time Clock
|
|
||||||
#
|
|
||||||
CONFIG_RTC_LIB=y
|
CONFIG_RTC_LIB=y
|
||||||
CONFIG_RTC_CLASS=y
|
CONFIG_RTC_CLASS=y
|
||||||
CONFIG_RTC_HCTOSYS=y
|
CONFIG_RTC_HCTOSYS=y
|
||||||
@ -966,6 +1016,7 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# I2C RTC drivers
|
# I2C RTC drivers
|
||||||
#
|
#
|
||||||
# CONFIG_RTC_DRV_DS1307 is not set
|
# CONFIG_RTC_DRV_DS1307 is not set
|
||||||
|
# CONFIG_RTC_DRV_DS1374 is not set
|
||||||
# CONFIG_RTC_DRV_DS1672 is not set
|
# CONFIG_RTC_DRV_DS1672 is not set
|
||||||
# CONFIG_RTC_DRV_MAX6900 is not set
|
# CONFIG_RTC_DRV_MAX6900 is not set
|
||||||
# CONFIG_RTC_DRV_RS5C372 is not set
|
# CONFIG_RTC_DRV_RS5C372 is not set
|
||||||
@ -973,6 +1024,7 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# CONFIG_RTC_DRV_X1205 is not set
|
# CONFIG_RTC_DRV_X1205 is not set
|
||||||
# CONFIG_RTC_DRV_PCF8563 is not set
|
# CONFIG_RTC_DRV_PCF8563 is not set
|
||||||
# CONFIG_RTC_DRV_PCF8583 is not set
|
# CONFIG_RTC_DRV_PCF8583 is not set
|
||||||
|
# CONFIG_RTC_DRV_M41T80 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
@ -984,8 +1036,10 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
#
|
#
|
||||||
# CONFIG_RTC_DRV_DS1553 is not set
|
# CONFIG_RTC_DRV_DS1553 is not set
|
||||||
|
# CONFIG_RTC_DRV_STK17TA8 is not set
|
||||||
# CONFIG_RTC_DRV_DS1742 is not set
|
# CONFIG_RTC_DRV_DS1742 is not set
|
||||||
# CONFIG_RTC_DRV_M48T86 is not set
|
# CONFIG_RTC_DRV_M48T86 is not set
|
||||||
|
# CONFIG_RTC_DRV_M48T59 is not set
|
||||||
# CONFIG_RTC_DRV_V3020 is not set
|
# CONFIG_RTC_DRV_V3020 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -994,22 +1048,9 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
CONFIG_RTC_DRV_BFIN=y
|
CONFIG_RTC_DRV_BFIN=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# DMA Engine support
|
# Userspace I/O
|
||||||
#
|
#
|
||||||
# CONFIG_DMA_ENGINE is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
#
|
|
||||||
# DMA Clients
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# DMA Devices
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# PBX support
|
|
||||||
#
|
|
||||||
# CONFIG_PBX is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
@ -1054,7 +1095,6 @@ CONFIG_PROC_SYSCTL=y
|
|||||||
CONFIG_SYSFS=y
|
CONFIG_SYSFS=y
|
||||||
# CONFIG_TMPFS is not set
|
# CONFIG_TMPFS is not set
|
||||||
# CONFIG_HUGETLB_PAGE is not set
|
# CONFIG_HUGETLB_PAGE is not set
|
||||||
CONFIG_RAMFS=y
|
|
||||||
# CONFIG_CONFIGFS_FS is not set
|
# CONFIG_CONFIGFS_FS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -1080,10 +1120,12 @@ CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y
|
|||||||
CONFIG_JFFS2_FS=m
|
CONFIG_JFFS2_FS=m
|
||||||
CONFIG_JFFS2_FS_DEBUG=0
|
CONFIG_JFFS2_FS_DEBUG=0
|
||||||
CONFIG_JFFS2_FS_WRITEBUFFER=y
|
CONFIG_JFFS2_FS_WRITEBUFFER=y
|
||||||
|
# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
|
||||||
# CONFIG_JFFS2_SUMMARY is not set
|
# CONFIG_JFFS2_SUMMARY is not set
|
||||||
# CONFIG_JFFS2_FS_XATTR is not set
|
# CONFIG_JFFS2_FS_XATTR is not set
|
||||||
# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
|
# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
|
||||||
CONFIG_JFFS2_ZLIB=y
|
CONFIG_JFFS2_ZLIB=y
|
||||||
|
# CONFIG_JFFS2_LZO is not set
|
||||||
CONFIG_JFFS2_RTIME=y
|
CONFIG_JFFS2_RTIME=y
|
||||||
# CONFIG_JFFS2_RUBIN is not set
|
# CONFIG_JFFS2_RUBIN is not set
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
@ -1092,10 +1134,7 @@ CONFIG_JFFS2_RTIME=y
|
|||||||
# CONFIG_QNX4FS_FS is not set
|
# CONFIG_QNX4FS_FS is not set
|
||||||
# CONFIG_SYSV_FS is not set
|
# CONFIG_SYSV_FS is not set
|
||||||
# CONFIG_UFS_FS is not set
|
# CONFIG_UFS_FS is not set
|
||||||
|
CONFIG_NETWORK_FILESYSTEMS=y
|
||||||
#
|
|
||||||
# Network File Systems
|
|
||||||
#
|
|
||||||
CONFIG_NFS_FS=m
|
CONFIG_NFS_FS=m
|
||||||
CONFIG_NFS_V3=y
|
CONFIG_NFS_V3=y
|
||||||
# CONFIG_NFS_V3_ACL is not set
|
# CONFIG_NFS_V3_ACL is not set
|
||||||
@ -1115,17 +1154,12 @@ CONFIG_SMB_FS=m
|
|||||||
# CONFIG_NCP_FS is not set
|
# CONFIG_NCP_FS is not set
|
||||||
# CONFIG_CODA_FS is not set
|
# CONFIG_CODA_FS is not set
|
||||||
# CONFIG_AFS_FS is not set
|
# CONFIG_AFS_FS is not set
|
||||||
# CONFIG_9P_FS is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Partition Types
|
# Partition Types
|
||||||
#
|
#
|
||||||
# CONFIG_PARTITION_ADVANCED is not set
|
# CONFIG_PARTITION_ADVANCED is not set
|
||||||
CONFIG_MSDOS_PARTITION=y
|
CONFIG_MSDOS_PARTITION=y
|
||||||
|
|
||||||
#
|
|
||||||
# Native Language Support
|
|
||||||
#
|
|
||||||
CONFIG_NLS=m
|
CONFIG_NLS=m
|
||||||
CONFIG_NLS_DEFAULT="iso8859-1"
|
CONFIG_NLS_DEFAULT="iso8859-1"
|
||||||
# CONFIG_NLS_CODEPAGE_437 is not set
|
# CONFIG_NLS_CODEPAGE_437 is not set
|
||||||
@ -1166,21 +1200,16 @@ CONFIG_NLS_DEFAULT="iso8859-1"
|
|||||||
# CONFIG_NLS_KOI8_R is not set
|
# CONFIG_NLS_KOI8_R is not set
|
||||||
# CONFIG_NLS_KOI8_U is not set
|
# CONFIG_NLS_KOI8_U is not set
|
||||||
# CONFIG_NLS_UTF8 is not set
|
# CONFIG_NLS_UTF8 is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Distributed Lock Manager
|
|
||||||
#
|
|
||||||
# CONFIG_DLM is not set
|
# CONFIG_DLM is not set
|
||||||
|
CONFIG_INSTRUMENTATION=y
|
||||||
#
|
|
||||||
# Profiling support
|
|
||||||
#
|
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
|
# CONFIG_MARKERS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Kernel hacking
|
# Kernel hacking
|
||||||
#
|
#
|
||||||
# CONFIG_PRINTK_TIME is not set
|
# CONFIG_PRINTK_TIME is not set
|
||||||
|
CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
# CONFIG_MAGIC_SYSRQ is not set
|
# CONFIG_MAGIC_SYSRQ is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
@ -1188,6 +1217,7 @@ CONFIG_DEBUG_FS=y
|
|||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
# CONFIG_DEBUG_KERNEL is not set
|
# CONFIG_DEBUG_KERNEL is not set
|
||||||
# CONFIG_DEBUG_BUGVERBOSE is not set
|
# CONFIG_DEBUG_BUGVERBOSE is not set
|
||||||
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_DEBUG_MMRS=y
|
CONFIG_DEBUG_MMRS=y
|
||||||
CONFIG_DEBUG_HUNT_FOR_ZERO=y
|
CONFIG_DEBUG_HUNT_FOR_ZERO=y
|
||||||
CONFIG_DEBUG_BFIN_HWTRACE_ON=y
|
CONFIG_DEBUG_BFIN_HWTRACE_ON=y
|
||||||
@ -1207,11 +1237,8 @@ CONFIG_ACCESS_CHECK=y
|
|||||||
# CONFIG_KEYS is not set
|
# CONFIG_KEYS is not set
|
||||||
CONFIG_SECURITY=y
|
CONFIG_SECURITY=y
|
||||||
# CONFIG_SECURITY_NETWORK is not set
|
# CONFIG_SECURITY_NETWORK is not set
|
||||||
CONFIG_SECURITY_CAPABILITIES=m
|
# CONFIG_SECURITY_CAPABILITIES is not set
|
||||||
|
# CONFIG_SECURITY_ROOTPLUG is not set
|
||||||
#
|
|
||||||
# Cryptographic options
|
|
||||||
#
|
|
||||||
# CONFIG_CRYPTO is not set
|
# CONFIG_CRYPTO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -1222,6 +1249,7 @@ CONFIG_CRC_CCITT=m
|
|||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
# CONFIG_CRC_ITU_T is not set
|
# CONFIG_CRC_ITU_T is not set
|
||||||
CONFIG_CRC32=y
|
CONFIG_CRC32=y
|
||||||
|
# CONFIG_CRC7 is not set
|
||||||
# CONFIG_LIBCRC32C is not set
|
# CONFIG_LIBCRC32C is not set
|
||||||
CONFIG_ZLIB_INFLATE=y
|
CONFIG_ZLIB_INFLATE=y
|
||||||
CONFIG_ZLIB_DEFLATE=m
|
CONFIG_ZLIB_DEFLATE=m
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.22.16
|
# Linux kernel version: 2.6.24.7
|
||||||
#
|
#
|
||||||
# CONFIG_MMU is not set
|
# CONFIG_MMU is not set
|
||||||
# CONFIG_FPU is not set
|
# CONFIG_FPU is not set
|
||||||
@ -13,35 +13,34 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y
|
|||||||
CONFIG_GENERIC_HWEIGHT=y
|
CONFIG_GENERIC_HWEIGHT=y
|
||||||
CONFIG_GENERIC_HARDIRQS=y
|
CONFIG_GENERIC_HARDIRQS=y
|
||||||
CONFIG_GENERIC_IRQ_PROBE=y
|
CONFIG_GENERIC_IRQ_PROBE=y
|
||||||
CONFIG_GENERIC_TIME=y
|
|
||||||
CONFIG_GENERIC_GPIO=y
|
CONFIG_GENERIC_GPIO=y
|
||||||
CONFIG_FORCE_MAX_ZONEORDER=14
|
CONFIG_FORCE_MAX_ZONEORDER=14
|
||||||
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
CONFIG_GENERIC_CALIBRATE_DELAY=y
|
||||||
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
|
||||||
|
|
||||||
#
|
#
|
||||||
# Code maturity level options
|
# General setup
|
||||||
#
|
#
|
||||||
CONFIG_EXPERIMENTAL=y
|
CONFIG_EXPERIMENTAL=y
|
||||||
CONFIG_BROKEN_ON_SMP=y
|
CONFIG_BROKEN_ON_SMP=y
|
||||||
CONFIG_INIT_ENV_ARG_LIMIT=32
|
CONFIG_INIT_ENV_ARG_LIMIT=32
|
||||||
|
|
||||||
#
|
|
||||||
# General setup
|
|
||||||
#
|
|
||||||
CONFIG_LOCALVERSION=""
|
CONFIG_LOCALVERSION=""
|
||||||
CONFIG_LOCALVERSION_AUTO=y
|
CONFIG_LOCALVERSION_AUTO=y
|
||||||
CONFIG_SYSVIPC=y
|
CONFIG_SYSVIPC=y
|
||||||
# CONFIG_IPC_NS is not set
|
|
||||||
CONFIG_SYSVIPC_SYSCTL=y
|
CONFIG_SYSVIPC_SYSCTL=y
|
||||||
# CONFIG_POSIX_MQUEUE is not set
|
# CONFIG_POSIX_MQUEUE is not set
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_UTS_NS is not set
|
# CONFIG_USER_NS is not set
|
||||||
|
# CONFIG_PID_NS is not set
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
CONFIG_IKCONFIG=y
|
CONFIG_IKCONFIG=y
|
||||||
CONFIG_IKCONFIG_PROC=y
|
CONFIG_IKCONFIG_PROC=y
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
|
# CONFIG_CGROUPS is not set
|
||||||
|
CONFIG_FAIR_GROUP_SCHED=y
|
||||||
|
CONFIG_FAIR_USER_SCHED=y
|
||||||
|
# CONFIG_FAIR_CGROUP_SCHED is not set
|
||||||
CONFIG_SYSFS_DEPRECATED=y
|
CONFIG_SYSFS_DEPRECATED=y
|
||||||
# CONFIG_RELAY is not set
|
# CONFIG_RELAY is not set
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
@ -64,32 +63,24 @@ CONFIG_EPOLL=y
|
|||||||
CONFIG_SIGNALFD=y
|
CONFIG_SIGNALFD=y
|
||||||
CONFIG_EVENTFD=y
|
CONFIG_EVENTFD=y
|
||||||
CONFIG_VM_EVENT_COUNTERS=y
|
CONFIG_VM_EVENT_COUNTERS=y
|
||||||
CONFIG_BIG_ORDER_ALLOC_NOFAIL_MAGIC=3
|
|
||||||
# CONFIG_NP2 is not set
|
|
||||||
CONFIG_SLAB=y
|
CONFIG_SLAB=y
|
||||||
# CONFIG_SLUB is not set
|
# CONFIG_SLUB is not set
|
||||||
# CONFIG_SLOB is not set
|
# CONFIG_SLOB is not set
|
||||||
|
CONFIG_SLABINFO=y
|
||||||
CONFIG_RT_MUTEXES=y
|
CONFIG_RT_MUTEXES=y
|
||||||
CONFIG_TINY_SHMEM=y
|
CONFIG_TINY_SHMEM=y
|
||||||
CONFIG_BASE_SMALL=0
|
CONFIG_BASE_SMALL=0
|
||||||
|
|
||||||
#
|
|
||||||
# Loadable module support
|
|
||||||
#
|
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
||||||
# CONFIG_MODVERSIONS is not set
|
# CONFIG_MODVERSIONS is not set
|
||||||
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
# CONFIG_MODULE_SRCVERSION_ALL is not set
|
||||||
CONFIG_KMOD=y
|
CONFIG_KMOD=y
|
||||||
|
|
||||||
#
|
|
||||||
# Block layer
|
|
||||||
#
|
|
||||||
CONFIG_BLOCK=y
|
CONFIG_BLOCK=y
|
||||||
# CONFIG_LBD is not set
|
# CONFIG_LBD is not set
|
||||||
# CONFIG_BLK_DEV_IO_TRACE is not set
|
# CONFIG_BLK_DEV_IO_TRACE is not set
|
||||||
# CONFIG_LSF is not set
|
# CONFIG_LSF is not set
|
||||||
|
# CONFIG_BLK_DEV_BSG is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# IO Schedulers
|
# IO Schedulers
|
||||||
@ -141,7 +132,6 @@ CONFIG_BF_REV_0_0=y
|
|||||||
# CONFIG_BF_REV_ANY is not set
|
# CONFIG_BF_REV_ANY is not set
|
||||||
# CONFIG_BF_REV_NONE is not set
|
# CONFIG_BF_REV_NONE is not set
|
||||||
CONFIG_BF54x=y
|
CONFIG_BF54x=y
|
||||||
CONFIG_BFIN_SINGLE_CORE=y
|
|
||||||
CONFIG_IRQ_PLL_WAKEUP=7
|
CONFIG_IRQ_PLL_WAKEUP=7
|
||||||
CONFIG_IRQ_RTC=8
|
CONFIG_IRQ_RTC=8
|
||||||
CONFIG_IRQ_SPORT0_RX=9
|
CONFIG_IRQ_SPORT0_RX=9
|
||||||
@ -169,6 +159,7 @@ CONFIG_IRQ_TIMER8=11
|
|||||||
CONFIG_IRQ_TIMER9=11
|
CONFIG_IRQ_TIMER9=11
|
||||||
CONFIG_IRQ_TIMER10=11
|
CONFIG_IRQ_TIMER10=11
|
||||||
CONFIG_BFIN548_EZKIT=y
|
CONFIG_BFIN548_EZKIT=y
|
||||||
|
# CONFIG_BFIN548_BLUETECHNIX_CM is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# BF548 Specific Configuration
|
# BF548 Specific Configuration
|
||||||
@ -262,12 +253,14 @@ CONFIG_PINT3_ASSIGN=0x02020303
|
|||||||
# Board customizations
|
# Board customizations
|
||||||
#
|
#
|
||||||
# CONFIG_CMDLINE_BOOL is not set
|
# CONFIG_CMDLINE_BOOL is not set
|
||||||
|
CONFIG_BOOT_LOAD=0x1000
|
||||||
|
|
||||||
#
|
#
|
||||||
# Clock/PLL Setup
|
# Clock/PLL Setup
|
||||||
#
|
#
|
||||||
CONFIG_CLKIN_HZ=25000000
|
CONFIG_CLKIN_HZ=25000000
|
||||||
# CONFIG_BFIN_KERNEL_CLOCK is not set
|
# CONFIG_BFIN_KERNEL_CLOCK is not set
|
||||||
|
CONFIG_MAX_MEM_SIZE=512
|
||||||
CONFIG_MAX_VCO_HZ=600000000
|
CONFIG_MAX_VCO_HZ=600000000
|
||||||
CONFIG_MIN_VCO_HZ=50000000
|
CONFIG_MIN_VCO_HZ=50000000
|
||||||
CONFIG_MAX_SCLK_HZ=133333333
|
CONFIG_MAX_SCLK_HZ=133333333
|
||||||
@ -281,14 +274,17 @@ CONFIG_HZ_250=y
|
|||||||
# CONFIG_HZ_300 is not set
|
# CONFIG_HZ_300 is not set
|
||||||
# CONFIG_HZ_1000 is not set
|
# CONFIG_HZ_1000 is not set
|
||||||
CONFIG_HZ=250
|
CONFIG_HZ=250
|
||||||
|
CONFIG_GENERIC_TIME=y
|
||||||
|
CONFIG_GENERIC_CLOCKEVENTS=y
|
||||||
|
# CONFIG_CYCLES_CLOCKSOURCE is not set
|
||||||
|
# CONFIG_TICK_ONESHOT is not set
|
||||||
|
# CONFIG_NO_HZ is not set
|
||||||
|
# CONFIG_HIGH_RES_TIMERS is not set
|
||||||
|
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# Memory Setup
|
# Misc
|
||||||
#
|
#
|
||||||
CONFIG_MAX_MEM_SIZE=512
|
|
||||||
# CONFIG_MEM_MT46V32M16_6T is not set
|
|
||||||
CONFIG_MEM_MT46V32M16_5B=y
|
|
||||||
CONFIG_BOOT_LOAD=0x1000
|
|
||||||
CONFIG_BFIN_SCRATCH_REG_RETN=y
|
CONFIG_BFIN_SCRATCH_REG_RETN=y
|
||||||
# CONFIG_BFIN_SCRATCH_REG_RETE is not set
|
# CONFIG_BFIN_SCRATCH_REG_RETE is not set
|
||||||
# CONFIG_BFIN_SCRATCH_REG_CYCLES is not set
|
# CONFIG_BFIN_SCRATCH_REG_CYCLES is not set
|
||||||
@ -324,12 +320,14 @@ CONFIG_FLATMEM_MANUAL=y
|
|||||||
CONFIG_FLATMEM=y
|
CONFIG_FLATMEM=y
|
||||||
CONFIG_FLAT_NODE_MEM_MAP=y
|
CONFIG_FLAT_NODE_MEM_MAP=y
|
||||||
# CONFIG_SPARSEMEM_STATIC is not set
|
# CONFIG_SPARSEMEM_STATIC is not set
|
||||||
|
# CONFIG_SPARSEMEM_VMEMMAP_ENABLE is not set
|
||||||
CONFIG_SPLIT_PTLOCK_CPUS=4
|
CONFIG_SPLIT_PTLOCK_CPUS=4
|
||||||
# CONFIG_RESOURCES_64BIT is not set
|
# CONFIG_RESOURCES_64BIT is not set
|
||||||
CONFIG_ZONE_DMA_FLAG=1
|
CONFIG_ZONE_DMA_FLAG=1
|
||||||
CONFIG_LARGE_ALLOCS=y
|
CONFIG_VIRT_TO_BUS=y
|
||||||
# CONFIG_BFIN_GPTIMERS is not set
|
# CONFIG_BFIN_GPTIMERS is not set
|
||||||
CONFIG_BFIN_DMA_5XX=y
|
CONFIG_BFIN_DMA_5XX=y
|
||||||
|
# CONFIG_DMA_UNCACHED_4M is not set
|
||||||
CONFIG_DMA_UNCACHED_2M=y
|
CONFIG_DMA_UNCACHED_2M=y
|
||||||
# CONFIG_DMA_UNCACHED_1M is not set
|
# CONFIG_DMA_UNCACHED_1M is not set
|
||||||
# CONFIG_DMA_UNCACHED_NONE is not set
|
# CONFIG_DMA_UNCACHED_NONE is not set
|
||||||
@ -377,10 +375,6 @@ CONFIG_EBIU_FCTLVAL=0x6
|
|||||||
#
|
#
|
||||||
# CONFIG_PCI is not set
|
# CONFIG_PCI is not set
|
||||||
# CONFIG_ARCH_SUPPORTS_MSI is not set
|
# CONFIG_ARCH_SUPPORTS_MSI is not set
|
||||||
|
|
||||||
#
|
|
||||||
# PCCARD (PCMCIA/CardBus) support
|
|
||||||
#
|
|
||||||
# CONFIG_PCCARD is not set
|
# CONFIG_PCCARD is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -396,6 +390,7 @@ CONFIG_BINFMT_ZFLAT=y
|
|||||||
# Power management options
|
# Power management options
|
||||||
#
|
#
|
||||||
# CONFIG_PM is not set
|
# CONFIG_PM is not set
|
||||||
|
CONFIG_SUSPEND_UP_POSSIBLE=y
|
||||||
# CONFIG_PM_WAKEUP_BY_GPIO is not set
|
# CONFIG_PM_WAKEUP_BY_GPIO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -439,6 +434,7 @@ CONFIG_SYN_COOKIES=y
|
|||||||
CONFIG_INET_XFRM_MODE_TRANSPORT=y
|
CONFIG_INET_XFRM_MODE_TRANSPORT=y
|
||||||
CONFIG_INET_XFRM_MODE_TUNNEL=y
|
CONFIG_INET_XFRM_MODE_TUNNEL=y
|
||||||
CONFIG_INET_XFRM_MODE_BEET=y
|
CONFIG_INET_XFRM_MODE_BEET=y
|
||||||
|
# CONFIG_INET_LRO is not set
|
||||||
CONFIG_INET_DIAG=y
|
CONFIG_INET_DIAG=y
|
||||||
CONFIG_INET_TCP_DIAG=y
|
CONFIG_INET_TCP_DIAG=y
|
||||||
# CONFIG_TCP_CONG_ADVANCED is not set
|
# CONFIG_TCP_CONG_ADVANCED is not set
|
||||||
@ -465,10 +461,6 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
|||||||
# CONFIG_LAPB is not set
|
# CONFIG_LAPB is not set
|
||||||
# CONFIG_ECONET is not set
|
# CONFIG_ECONET is not set
|
||||||
# CONFIG_WAN_ROUTER is not set
|
# CONFIG_WAN_ROUTER is not set
|
||||||
|
|
||||||
#
|
|
||||||
# QoS and/or fair queueing
|
|
||||||
#
|
|
||||||
# CONFIG_NET_SCHED is not set
|
# CONFIG_NET_SCHED is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -488,6 +480,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
|||||||
# CONFIG_MAC80211 is not set
|
# CONFIG_MAC80211 is not set
|
||||||
# CONFIG_IEEE80211 is not set
|
# CONFIG_IEEE80211 is not set
|
||||||
# CONFIG_RFKILL is not set
|
# CONFIG_RFKILL is not set
|
||||||
|
# CONFIG_NET_9P is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Device Drivers
|
# Device Drivers
|
||||||
@ -496,14 +489,11 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
|||||||
#
|
#
|
||||||
# Generic Driver Options
|
# Generic Driver Options
|
||||||
#
|
#
|
||||||
|
CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug"
|
||||||
CONFIG_STANDALONE=y
|
CONFIG_STANDALONE=y
|
||||||
CONFIG_PREVENT_FIRMWARE_BUILD=y
|
CONFIG_PREVENT_FIRMWARE_BUILD=y
|
||||||
# CONFIG_FW_LOADER is not set
|
# CONFIG_FW_LOADER is not set
|
||||||
# CONFIG_SYS_HYPERVISOR is not set
|
# CONFIG_SYS_HYPERVISOR is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Connector - unified userspace <-> kernelspace linker
|
|
||||||
#
|
|
||||||
# CONFIG_CONNECTOR is not set
|
# CONFIG_CONNECTOR is not set
|
||||||
CONFIG_MTD=y
|
CONFIG_MTD=y
|
||||||
# CONFIG_MTD_DEBUG is not set
|
# CONFIG_MTD_DEBUG is not set
|
||||||
@ -523,6 +513,7 @@ CONFIG_MTD_BLOCK=y
|
|||||||
# CONFIG_INFTL is not set
|
# CONFIG_INFTL is not set
|
||||||
# CONFIG_RFD_FTL is not set
|
# CONFIG_RFD_FTL is not set
|
||||||
# CONFIG_SSFDC is not set
|
# CONFIG_SSFDC is not set
|
||||||
|
# CONFIG_MTD_OOPS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# RAM/ROM/Flash chip drivers
|
# RAM/ROM/Flash chip drivers
|
||||||
@ -587,39 +578,27 @@ CONFIG_MTD_NAND_BF5XX_HWECC=y
|
|||||||
# CONFIG_MTD_NAND_DISKONCHIP is not set
|
# CONFIG_MTD_NAND_DISKONCHIP is not set
|
||||||
# CONFIG_MTD_NAND_NANDSIM is not set
|
# CONFIG_MTD_NAND_NANDSIM is not set
|
||||||
# CONFIG_MTD_NAND_PLATFORM is not set
|
# CONFIG_MTD_NAND_PLATFORM is not set
|
||||||
|
# CONFIG_MTD_ALAUDA is not set
|
||||||
# CONFIG_MTD_ONENAND is not set
|
# CONFIG_MTD_ONENAND is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# UBI - Unsorted block images
|
# UBI - Unsorted block images
|
||||||
#
|
#
|
||||||
# CONFIG_MTD_UBI is not set
|
# CONFIG_MTD_UBI is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Parallel port support
|
|
||||||
#
|
|
||||||
# CONFIG_PARPORT is not set
|
# CONFIG_PARPORT is not set
|
||||||
|
CONFIG_BLK_DEV=y
|
||||||
#
|
|
||||||
# Plug and Play support
|
|
||||||
#
|
|
||||||
# CONFIG_PNPACPI is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Block devices
|
|
||||||
#
|
|
||||||
# CONFIG_BLK_DEV_COW_COMMON is not set
|
# CONFIG_BLK_DEV_COW_COMMON is not set
|
||||||
# CONFIG_BLK_DEV_LOOP is not set
|
# CONFIG_BLK_DEV_LOOP is not set
|
||||||
# CONFIG_BLK_DEV_NBD is not set
|
# CONFIG_BLK_DEV_NBD is not set
|
||||||
|
# CONFIG_BLK_DEV_UB is not set
|
||||||
CONFIG_BLK_DEV_RAM=y
|
CONFIG_BLK_DEV_RAM=y
|
||||||
CONFIG_BLK_DEV_RAM_COUNT=16
|
CONFIG_BLK_DEV_RAM_COUNT=16
|
||||||
CONFIG_BLK_DEV_RAM_SIZE=4096
|
CONFIG_BLK_DEV_RAM_SIZE=4096
|
||||||
CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
|
CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
|
||||||
# CONFIG_CDROM_PKTCDVD is not set
|
# CONFIG_CDROM_PKTCDVD is not set
|
||||||
# CONFIG_ATA_OVER_ETH is not set
|
# CONFIG_ATA_OVER_ETH is not set
|
||||||
|
CONFIG_MISC_DEVICES=y
|
||||||
#
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
# Misc devices
|
|
||||||
#
|
|
||||||
# CONFIG_IDE is not set
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -627,6 +606,7 @@ CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024
|
|||||||
#
|
#
|
||||||
# CONFIG_RAID_ATTRS is not set
|
# CONFIG_RAID_ATTRS is not set
|
||||||
CONFIG_SCSI=y
|
CONFIG_SCSI=y
|
||||||
|
CONFIG_SCSI_DMA=y
|
||||||
# CONFIG_SCSI_TGT is not set
|
# CONFIG_SCSI_TGT is not set
|
||||||
# CONFIG_SCSI_NETLINK is not set
|
# CONFIG_SCSI_NETLINK is not set
|
||||||
CONFIG_SCSI_PROC_FS=y
|
CONFIG_SCSI_PROC_FS=y
|
||||||
@ -657,43 +637,35 @@ CONFIG_SCSI_WAIT_SCAN=m
|
|||||||
# CONFIG_SCSI_SPI_ATTRS is not set
|
# CONFIG_SCSI_SPI_ATTRS is not set
|
||||||
# CONFIG_SCSI_FC_ATTRS is not set
|
# CONFIG_SCSI_FC_ATTRS is not set
|
||||||
# CONFIG_SCSI_ISCSI_ATTRS is not set
|
# CONFIG_SCSI_ISCSI_ATTRS is not set
|
||||||
# CONFIG_SCSI_SAS_ATTRS is not set
|
|
||||||
# CONFIG_SCSI_SAS_LIBSAS is not set
|
# CONFIG_SCSI_SAS_LIBSAS is not set
|
||||||
|
# CONFIG_SCSI_SRP_ATTRS is not set
|
||||||
#
|
CONFIG_SCSI_LOWLEVEL=y
|
||||||
# SCSI low-level drivers
|
|
||||||
#
|
|
||||||
# CONFIG_ISCSI_TCP is not set
|
# CONFIG_ISCSI_TCP is not set
|
||||||
# CONFIG_SCSI_DEBUG is not set
|
# CONFIG_SCSI_DEBUG is not set
|
||||||
CONFIG_ATA=y
|
CONFIG_ATA=y
|
||||||
# CONFIG_ATA_NONSTANDARD is not set
|
# CONFIG_ATA_NONSTANDARD is not set
|
||||||
# CONFIG_PATA_PLATFORM is not set
|
# CONFIG_PATA_PLATFORM is not set
|
||||||
CONFIG_PATA_BF54X=y
|
CONFIG_PATA_BF54X=y
|
||||||
CONFIG_PATA_BF54X_DMA=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# Multi-device support (RAID and LVM)
|
|
||||||
#
|
|
||||||
# CONFIG_MD is not set
|
# CONFIG_MD is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Network device support
|
|
||||||
#
|
|
||||||
CONFIG_NETDEVICES=y
|
CONFIG_NETDEVICES=y
|
||||||
|
# CONFIG_NETDEVICES_MULTIQUEUE is not set
|
||||||
# CONFIG_DUMMY is not set
|
# CONFIG_DUMMY is not set
|
||||||
# CONFIG_BONDING is not set
|
# CONFIG_BONDING is not set
|
||||||
|
# CONFIG_MACVLAN is not set
|
||||||
# CONFIG_EQUALIZER is not set
|
# CONFIG_EQUALIZER is not set
|
||||||
# CONFIG_TUN is not set
|
# CONFIG_TUN is not set
|
||||||
|
# CONFIG_VETH is not set
|
||||||
# CONFIG_PHYLIB is not set
|
# CONFIG_PHYLIB is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Ethernet (10 or 100Mbit)
|
|
||||||
#
|
|
||||||
CONFIG_NET_ETHERNET=y
|
CONFIG_NET_ETHERNET=y
|
||||||
CONFIG_MII=y
|
CONFIG_MII=y
|
||||||
# CONFIG_SMC91X is not set
|
# CONFIG_SMC91X is not set
|
||||||
CONFIG_SMSC911X=y
|
CONFIG_SMSC911X=y
|
||||||
# CONFIG_DM9000 is not set
|
# CONFIG_DM9000 is not set
|
||||||
|
# CONFIG_IBM_NEW_EMAC_ZMII is not set
|
||||||
|
# CONFIG_IBM_NEW_EMAC_RGMII is not set
|
||||||
|
# CONFIG_IBM_NEW_EMAC_TAH is not set
|
||||||
|
# CONFIG_IBM_NEW_EMAC_EMAC4 is not set
|
||||||
|
# CONFIG_B44 is not set
|
||||||
CONFIG_NETDEV_1000=y
|
CONFIG_NETDEV_1000=y
|
||||||
# CONFIG_AX88180 is not set
|
# CONFIG_AX88180 is not set
|
||||||
CONFIG_NETDEV_10000=y
|
CONFIG_NETDEV_10000=y
|
||||||
@ -703,6 +675,15 @@ CONFIG_NETDEV_10000=y
|
|||||||
#
|
#
|
||||||
# CONFIG_WLAN_PRE80211 is not set
|
# CONFIG_WLAN_PRE80211 is not set
|
||||||
# CONFIG_WLAN_80211 is not set
|
# CONFIG_WLAN_80211 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB Network Adapters
|
||||||
|
#
|
||||||
|
# CONFIG_USB_CATC is not set
|
||||||
|
# CONFIG_USB_KAWETH is not set
|
||||||
|
# CONFIG_USB_PEGASUS is not set
|
||||||
|
# CONFIG_USB_RTL8150 is not set
|
||||||
|
# CONFIG_USB_USBNET is not set
|
||||||
# CONFIG_WAN is not set
|
# CONFIG_WAN is not set
|
||||||
# CONFIG_PPP is not set
|
# CONFIG_PPP is not set
|
||||||
# CONFIG_SLIP is not set
|
# CONFIG_SLIP is not set
|
||||||
@ -710,15 +691,7 @@ CONFIG_NETDEV_10000=y
|
|||||||
# CONFIG_NETCONSOLE is not set
|
# CONFIG_NETCONSOLE is not set
|
||||||
# CONFIG_NETPOLL is not set
|
# CONFIG_NETPOLL is not set
|
||||||
# CONFIG_NET_POLL_CONTROLLER is not set
|
# CONFIG_NET_POLL_CONTROLLER is not set
|
||||||
|
|
||||||
#
|
|
||||||
# ISDN subsystem
|
|
||||||
#
|
|
||||||
# CONFIG_ISDN is not set
|
# CONFIG_ISDN is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Telephony Support
|
|
||||||
#
|
|
||||||
# CONFIG_PHONE is not set
|
# CONFIG_PHONE is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -733,9 +706,6 @@ CONFIG_INPUT=y
|
|||||||
#
|
#
|
||||||
# CONFIG_INPUT_MOUSEDEV is not set
|
# CONFIG_INPUT_MOUSEDEV is not set
|
||||||
# CONFIG_INPUT_JOYDEV is not set
|
# CONFIG_INPUT_JOYDEV is not set
|
||||||
CONFIG_INPUT_TSDEV=m
|
|
||||||
CONFIG_INPUT_TSDEV_SCREEN_X=240
|
|
||||||
CONFIG_INPUT_TSDEV_SCREEN_Y=320
|
|
||||||
CONFIG_INPUT_EVDEV=m
|
CONFIG_INPUT_EVDEV=m
|
||||||
CONFIG_INPUT_EVBUG=m
|
CONFIG_INPUT_EVBUG=m
|
||||||
|
|
||||||
@ -758,6 +728,7 @@ CONFIG_KEYBOARD_BFIN=y
|
|||||||
CONFIG_INPUT_TOUCHSCREEN=y
|
CONFIG_INPUT_TOUCHSCREEN=y
|
||||||
# CONFIG_TOUCHSCREEN_ADS7846 is not set
|
# CONFIG_TOUCHSCREEN_ADS7846 is not set
|
||||||
CONFIG_TOUCHSCREEN_AD7877=m
|
CONFIG_TOUCHSCREEN_AD7877=m
|
||||||
|
# CONFIG_TOUCHSCREEN_FUJITSU is not set
|
||||||
# CONFIG_TOUCHSCREEN_GUNZE is not set
|
# CONFIG_TOUCHSCREEN_GUNZE is not set
|
||||||
# CONFIG_TOUCHSCREEN_ELO is not set
|
# CONFIG_TOUCHSCREEN_ELO is not set
|
||||||
# CONFIG_TOUCHSCREEN_MTOUCH is not set
|
# CONFIG_TOUCHSCREEN_MTOUCH is not set
|
||||||
@ -787,7 +758,6 @@ CONFIG_INPUT_MISC=y
|
|||||||
#
|
#
|
||||||
# CONFIG_AD9960 is not set
|
# CONFIG_AD9960 is not set
|
||||||
# CONFIG_SPI_ADC_BF533 is not set
|
# CONFIG_SPI_ADC_BF533 is not set
|
||||||
# CONFIG_BF5xx_PFLAGS is not set
|
|
||||||
# CONFIG_BF5xx_PPIFCD is not set
|
# CONFIG_BF5xx_PPIFCD is not set
|
||||||
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
# CONFIG_BFIN_SIMPLE_TIMER is not set
|
||||||
# CONFIG_BF5xx_PPI is not set
|
# CONFIG_BF5xx_PPI is not set
|
||||||
@ -796,7 +766,7 @@ CONFIG_BFIN_OTP=y
|
|||||||
# CONFIG_BFIN_SPORT is not set
|
# CONFIG_BFIN_SPORT is not set
|
||||||
# CONFIG_BFIN_TIMER_LATENCY is not set
|
# CONFIG_BFIN_TIMER_LATENCY is not set
|
||||||
# CONFIG_TWI_LCD is not set
|
# CONFIG_TWI_LCD is not set
|
||||||
# CONFIG_AD5304 is not set
|
# CONFIG_SIMPLE_GPIO is not set
|
||||||
CONFIG_VT=y
|
CONFIG_VT=y
|
||||||
CONFIG_VT_CONSOLE=y
|
CONFIG_VT_CONSOLE=y
|
||||||
CONFIG_HW_CONSOLE=y
|
CONFIG_HW_CONSOLE=y
|
||||||
@ -830,27 +800,11 @@ CONFIG_UNIX98_PTYS=y
|
|||||||
# CAN, the car bus and industrial fieldbus
|
# CAN, the car bus and industrial fieldbus
|
||||||
#
|
#
|
||||||
# CONFIG_CAN4LINUX is not set
|
# CONFIG_CAN4LINUX is not set
|
||||||
|
|
||||||
#
|
|
||||||
# IPMI
|
|
||||||
#
|
|
||||||
# CONFIG_IPMI_HANDLER is not set
|
# CONFIG_IPMI_HANDLER is not set
|
||||||
CONFIG_WATCHDOG=y
|
|
||||||
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Watchdog Device Drivers
|
|
||||||
#
|
|
||||||
# CONFIG_SOFT_WATCHDOG is not set
|
|
||||||
CONFIG_BFIN_WDT=y
|
|
||||||
CONFIG_HW_RANDOM=y
|
CONFIG_HW_RANDOM=y
|
||||||
# CONFIG_GEN_RTC is not set
|
# CONFIG_GEN_RTC is not set
|
||||||
# CONFIG_R3964 is not set
|
# CONFIG_R3964 is not set
|
||||||
# CONFIG_RAW_DRIVER is not set
|
# CONFIG_RAW_DRIVER is not set
|
||||||
|
|
||||||
#
|
|
||||||
# TPM devices
|
|
||||||
#
|
|
||||||
# CONFIG_TCG_TPM is not set
|
# CONFIG_TCG_TPM is not set
|
||||||
CONFIG_I2C=y
|
CONFIG_I2C=y
|
||||||
CONFIG_I2C_BOARDINFO=y
|
CONFIG_I2C_BOARDINFO=y
|
||||||
@ -872,21 +826,24 @@ CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ=50
|
|||||||
# CONFIG_I2C_OCORES is not set
|
# CONFIG_I2C_OCORES is not set
|
||||||
# CONFIG_I2C_PARPORT_LIGHT is not set
|
# CONFIG_I2C_PARPORT_LIGHT is not set
|
||||||
# CONFIG_I2C_SIMTEC is not set
|
# CONFIG_I2C_SIMTEC is not set
|
||||||
|
# CONFIG_I2C_TAOS_EVM is not set
|
||||||
# CONFIG_I2C_STUB is not set
|
# CONFIG_I2C_STUB is not set
|
||||||
|
# CONFIG_I2C_TINY_USB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_SENSORS_DS1337 is not set
|
# CONFIG_SENSORS_DS1337 is not set
|
||||||
# CONFIG_SENSORS_DS1374 is not set
|
# CONFIG_SENSORS_DS1374 is not set
|
||||||
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_SENSORS_AD5252 is not set
|
# CONFIG_SENSORS_AD5252 is not set
|
||||||
# CONFIG_SENSORS_EEPROM is not set
|
# CONFIG_SENSORS_EEPROM is not set
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
# CONFIG_SENSORS_PCF8574 is not set
|
||||||
# CONFIG_SENSORS_PCF8575 is not set
|
# CONFIG_SENSORS_PCF8575 is not set
|
||||||
# CONFIG_SENSORS_PCA9543 is not set
|
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
# CONFIG_SENSORS_PCA9539 is not set
|
||||||
# CONFIG_SENSORS_PCF8591 is not set
|
# CONFIG_SENSORS_PCF8591 is not set
|
||||||
# CONFIG_SENSORS_MAX6875 is not set
|
# CONFIG_SENSORS_MAX6875 is not set
|
||||||
|
# CONFIG_SENSORS_TSL2550 is not set
|
||||||
# CONFIG_I2C_DEBUG_CORE is not set
|
# CONFIG_I2C_DEBUG_CORE is not set
|
||||||
# CONFIG_I2C_DEBUG_ALGO is not set
|
# CONFIG_I2C_DEBUG_ALGO is not set
|
||||||
# CONFIG_I2C_DEBUG_BUS is not set
|
# CONFIG_I2C_DEBUG_BUS is not set
|
||||||
@ -909,14 +866,11 @@ CONFIG_SPI_BFIN=y
|
|||||||
#
|
#
|
||||||
# CONFIG_SPI_AT25 is not set
|
# CONFIG_SPI_AT25 is not set
|
||||||
# CONFIG_SPI_SPIDEV is not set
|
# CONFIG_SPI_SPIDEV is not set
|
||||||
|
# CONFIG_SPI_TLE62X0 is not set
|
||||||
#
|
|
||||||
# Dallas's 1-wire bus
|
|
||||||
#
|
|
||||||
# CONFIG_W1 is not set
|
# CONFIG_W1 is not set
|
||||||
|
# CONFIG_POWER_SUPPLY is not set
|
||||||
CONFIG_HWMON=y
|
CONFIG_HWMON=y
|
||||||
# CONFIG_HWMON_VID is not set
|
# CONFIG_HWMON_VID is not set
|
||||||
# CONFIG_SENSORS_ABITUGURU is not set
|
|
||||||
# CONFIG_SENSORS_AD7418 is not set
|
# CONFIG_SENSORS_AD7418 is not set
|
||||||
# CONFIG_SENSORS_ADM1021 is not set
|
# CONFIG_SENSORS_ADM1021 is not set
|
||||||
# CONFIG_SENSORS_ADM1025 is not set
|
# CONFIG_SENSORS_ADM1025 is not set
|
||||||
@ -924,12 +878,12 @@ CONFIG_HWMON=y
|
|||||||
# CONFIG_SENSORS_ADM1029 is not set
|
# CONFIG_SENSORS_ADM1029 is not set
|
||||||
# CONFIG_SENSORS_ADM1031 is not set
|
# CONFIG_SENSORS_ADM1031 is not set
|
||||||
# CONFIG_SENSORS_ADM9240 is not set
|
# CONFIG_SENSORS_ADM9240 is not set
|
||||||
# CONFIG_SENSORS_ASB100 is not set
|
# CONFIG_SENSORS_ADT7470 is not set
|
||||||
# CONFIG_SENSORS_ATXP1 is not set
|
# CONFIG_SENSORS_ATXP1 is not set
|
||||||
# CONFIG_SENSORS_DS1621 is not set
|
# CONFIG_SENSORS_DS1621 is not set
|
||||||
# CONFIG_SENSORS_F71805F is not set
|
# CONFIG_SENSORS_F71805F is not set
|
||||||
# CONFIG_SENSORS_FSCHER is not set
|
# CONFIG_SENSORS_F71882FG is not set
|
||||||
# CONFIG_SENSORS_FSCPOS is not set
|
# CONFIG_SENSORS_F75375S is not set
|
||||||
# CONFIG_SENSORS_GL518SM is not set
|
# CONFIG_SENSORS_GL518SM is not set
|
||||||
# CONFIG_SENSORS_GL520SM is not set
|
# CONFIG_SENSORS_GL520SM is not set
|
||||||
# CONFIG_SENSORS_IT87 is not set
|
# CONFIG_SENSORS_IT87 is not set
|
||||||
@ -944,13 +898,16 @@ CONFIG_HWMON=y
|
|||||||
# CONFIG_SENSORS_LM87 is not set
|
# CONFIG_SENSORS_LM87 is not set
|
||||||
# CONFIG_SENSORS_LM90 is not set
|
# CONFIG_SENSORS_LM90 is not set
|
||||||
# CONFIG_SENSORS_LM92 is not set
|
# CONFIG_SENSORS_LM92 is not set
|
||||||
|
# CONFIG_SENSORS_LM93 is not set
|
||||||
# CONFIG_SENSORS_MAX1619 is not set
|
# CONFIG_SENSORS_MAX1619 is not set
|
||||||
# CONFIG_SENSORS_MAX6650 is not set
|
# CONFIG_SENSORS_MAX6650 is not set
|
||||||
# CONFIG_SENSORS_PC87360 is not set
|
# CONFIG_SENSORS_PC87360 is not set
|
||||||
# CONFIG_SENSORS_PC87427 is not set
|
# CONFIG_SENSORS_PC87427 is not set
|
||||||
|
# CONFIG_SENSORS_DME1737 is not set
|
||||||
# CONFIG_SENSORS_SMSC47M1 is not set
|
# CONFIG_SENSORS_SMSC47M1 is not set
|
||||||
# CONFIG_SENSORS_SMSC47M192 is not set
|
# CONFIG_SENSORS_SMSC47M192 is not set
|
||||||
# CONFIG_SENSORS_SMSC47B397 is not set
|
# CONFIG_SENSORS_SMSC47B397 is not set
|
||||||
|
# CONFIG_SENSORS_THMC50 is not set
|
||||||
# CONFIG_SENSORS_VT1211 is not set
|
# CONFIG_SENSORS_VT1211 is not set
|
||||||
# CONFIG_SENSORS_W83781D is not set
|
# CONFIG_SENSORS_W83781D is not set
|
||||||
# CONFIG_SENSORS_W83791D is not set
|
# CONFIG_SENSORS_W83791D is not set
|
||||||
@ -960,6 +917,25 @@ CONFIG_HWMON=y
|
|||||||
# CONFIG_SENSORS_W83627HF is not set
|
# CONFIG_SENSORS_W83627HF is not set
|
||||||
# CONFIG_SENSORS_W83627EHF is not set
|
# CONFIG_SENSORS_W83627EHF is not set
|
||||||
# CONFIG_HWMON_DEBUG_CHIP is not set
|
# CONFIG_HWMON_DEBUG_CHIP is not set
|
||||||
|
CONFIG_WATCHDOG=y
|
||||||
|
# CONFIG_WATCHDOG_NOWAYOUT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Watchdog Device Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_SOFT_WATCHDOG is not set
|
||||||
|
CONFIG_BFIN_WDT=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB-based Watchdog Cards
|
||||||
|
#
|
||||||
|
# CONFIG_USBPCWATCHDOG is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Sonics Silicon Backplane
|
||||||
|
#
|
||||||
|
CONFIG_SSB_POSSIBLE=y
|
||||||
|
# CONFIG_SSB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Multifunction device drivers
|
# Multifunction device drivers
|
||||||
@ -972,23 +948,20 @@ CONFIG_HWMON=y
|
|||||||
# CONFIG_VIDEO_DEV is not set
|
# CONFIG_VIDEO_DEV is not set
|
||||||
# CONFIG_DVB_CORE is not set
|
# CONFIG_DVB_CORE is not set
|
||||||
CONFIG_DAB=y
|
CONFIG_DAB=y
|
||||||
|
# CONFIG_USB_DABUSB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Graphics support
|
# Graphics support
|
||||||
#
|
#
|
||||||
# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Display device support
|
|
||||||
#
|
|
||||||
# CONFIG_DISPLAY_SUPPORT is not set
|
|
||||||
# CONFIG_VGASTATE is not set
|
# CONFIG_VGASTATE is not set
|
||||||
|
# CONFIG_VIDEO_OUTPUT_CONTROL is not set
|
||||||
CONFIG_FB=y
|
CONFIG_FB=y
|
||||||
CONFIG_FIRMWARE_EDID=y
|
CONFIG_FIRMWARE_EDID=y
|
||||||
# CONFIG_FB_DDC is not set
|
# CONFIG_FB_DDC is not set
|
||||||
CONFIG_FB_CFB_FILLRECT=y
|
CONFIG_FB_CFB_FILLRECT=y
|
||||||
CONFIG_FB_CFB_COPYAREA=y
|
CONFIG_FB_CFB_COPYAREA=y
|
||||||
CONFIG_FB_CFB_IMAGEBLIT=y
|
CONFIG_FB_CFB_IMAGEBLIT=y
|
||||||
|
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
|
||||||
# CONFIG_FB_SYS_FILLRECT is not set
|
# CONFIG_FB_SYS_FILLRECT is not set
|
||||||
# CONFIG_FB_SYS_COPYAREA is not set
|
# CONFIG_FB_SYS_COPYAREA is not set
|
||||||
# CONFIG_FB_SYS_IMAGEBLIT is not set
|
# CONFIG_FB_SYS_IMAGEBLIT is not set
|
||||||
@ -1003,18 +976,24 @@ CONFIG_FB_DEFERRED_IO=y
|
|||||||
#
|
#
|
||||||
# Frame buffer hardware drivers
|
# Frame buffer hardware drivers
|
||||||
#
|
#
|
||||||
# CONFIG_FB_BFIN_7171 is not set
|
|
||||||
# CONFIG_FB_BFIN_7393 is not set
|
|
||||||
CONFIG_FB_BF54X_LQ043=y
|
CONFIG_FB_BF54X_LQ043=y
|
||||||
# CONFIG_FB_BFIN_T350MCQB is not set
|
# CONFIG_FB_BFIN_T350MCQB is not set
|
||||||
|
# CONFIG_FB_BFIN_7393 is not set
|
||||||
# CONFIG_FB_S1D13XXX is not set
|
# CONFIG_FB_S1D13XXX is not set
|
||||||
# CONFIG_FB_VIRTUAL is not set
|
# CONFIG_FB_VIRTUAL is not set
|
||||||
|
# CONFIG_BACKLIGHT_LCD_SUPPORT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# Display device support
|
||||||
|
#
|
||||||
|
# CONFIG_DISPLAY_SUPPORT is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Console display driver support
|
# Console display driver support
|
||||||
#
|
#
|
||||||
CONFIG_DUMMY_CONSOLE=y
|
CONFIG_DUMMY_CONSOLE=y
|
||||||
CONFIG_FRAMEBUFFER_CONSOLE=y
|
CONFIG_FRAMEBUFFER_CONSOLE=y
|
||||||
|
# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set
|
||||||
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
|
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
|
||||||
CONFIG_FONTS=y
|
CONFIG_FONTS=y
|
||||||
# CONFIG_FONT_8x8 is not set
|
# CONFIG_FONT_8x8 is not set
|
||||||
@ -1064,11 +1043,22 @@ CONFIG_SND_VERBOSE_PROCFS=y
|
|||||||
# CONFIG_SND_SERIAL_U16550 is not set
|
# CONFIG_SND_SERIAL_U16550 is not set
|
||||||
# CONFIG_SND_MPU401 is not set
|
# CONFIG_SND_MPU401 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# SPI devices
|
||||||
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# ALSA Blackfin devices
|
# ALSA Blackfin devices
|
||||||
#
|
#
|
||||||
# CONFIG_SND_BLACKFIN_AD1836 is not set
|
# CONFIG_SND_BLACKFIN_AD1836 is not set
|
||||||
# CONFIG_SND_BFIN_AD73311 is not set
|
# CONFIG_SND_BFIN_AD73311 is not set
|
||||||
|
# CONFIG_SND_BFIN_AD73322 is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB devices
|
||||||
|
#
|
||||||
|
# CONFIG_SND_USB_AUDIO is not set
|
||||||
|
# CONFIG_SND_USB_CAIAQ is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# System on Chip audio support
|
# System on Chip audio support
|
||||||
@ -1084,6 +1074,10 @@ CONFIG_SND_BF5XX_SOC_BF548_EZKIT=y
|
|||||||
CONFIG_SND_BF5XX_SPORT_NUM=0
|
CONFIG_SND_BF5XX_SPORT_NUM=0
|
||||||
CONFIG_SND_BF5XX_HAVE_COLD_RESET=y
|
CONFIG_SND_BF5XX_HAVE_COLD_RESET=y
|
||||||
CONFIG_SND_BF5XX_RESET_GPIO_NUM=19
|
CONFIG_SND_BF5XX_RESET_GPIO_NUM=19
|
||||||
|
|
||||||
|
#
|
||||||
|
# SoC Audio support for SuperH
|
||||||
|
#
|
||||||
CONFIG_SND_SOC_AD1980=y
|
CONFIG_SND_SOC_AD1980=y
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -1091,29 +1085,129 @@ CONFIG_SND_SOC_AD1980=y
|
|||||||
#
|
#
|
||||||
# CONFIG_SOUND_PRIME is not set
|
# CONFIG_SOUND_PRIME is not set
|
||||||
CONFIG_AC97_BUS=y
|
CONFIG_AC97_BUS=y
|
||||||
|
CONFIG_HID_SUPPORT=y
|
||||||
#
|
CONFIG_HID=y
|
||||||
# HID Devices
|
|
||||||
#
|
|
||||||
CONFIG_HID=m
|
|
||||||
# CONFIG_HID_DEBUG is not set
|
# CONFIG_HID_DEBUG is not set
|
||||||
|
# CONFIG_HIDRAW is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# USB support
|
# USB Input Devices
|
||||||
#
|
#
|
||||||
|
CONFIG_USB_HID=y
|
||||||
|
# CONFIG_USB_HIDINPUT_POWERBOOK is not set
|
||||||
|
# CONFIG_HID_FF is not set
|
||||||
|
# CONFIG_USB_HIDDEV is not set
|
||||||
|
CONFIG_USB_SUPPORT=y
|
||||||
CONFIG_USB_ARCH_HAS_HCD=y
|
CONFIG_USB_ARCH_HAS_HCD=y
|
||||||
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
# CONFIG_USB_ARCH_HAS_OHCI is not set
|
||||||
# CONFIG_USB_ARCH_HAS_EHCI is not set
|
# CONFIG_USB_ARCH_HAS_EHCI is not set
|
||||||
# CONFIG_USB is not set
|
CONFIG_USB=y
|
||||||
|
# CONFIG_USB_DEBUG is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Enable Host or Gadget support to see Inventra options
|
# Miscellaneous USB options
|
||||||
#
|
#
|
||||||
|
# CONFIG_USB_DEVICEFS is not set
|
||||||
|
CONFIG_USB_DEVICE_CLASS=y
|
||||||
|
# CONFIG_USB_DYNAMIC_MINORS is not set
|
||||||
|
# CONFIG_USB_OTG is not set
|
||||||
|
# CONFIG_USB_OTG_WHITELIST is not set
|
||||||
|
CONFIG_USB_OTG_BLACKLIST_HUB=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB Host Controller Drivers
|
||||||
|
#
|
||||||
|
# CONFIG_USB_ISP116X_HCD is not set
|
||||||
|
# CONFIG_USB_ISP1362_HCD is not set
|
||||||
|
# CONFIG_USB_ISP1760_HCD is not set
|
||||||
|
# CONFIG_USB_SL811_HCD is not set
|
||||||
|
# CONFIG_USB_R8A66597_HCD is not set
|
||||||
|
CONFIG_USB_MUSB_HDRC=y
|
||||||
|
CONFIG_USB_MUSB_SOC=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# Blackfin high speed USB support
|
||||||
|
#
|
||||||
|
CONFIG_USB_MUSB_HOST=y
|
||||||
|
# CONFIG_USB_MUSB_PERIPHERAL is not set
|
||||||
|
# CONFIG_USB_MUSB_OTG is not set
|
||||||
|
CONFIG_USB_MUSB_HDRC_HCD=y
|
||||||
|
# CONFIG_MUSB_PIO_ONLY is not set
|
||||||
|
# CONFIG_USB_INVENTRA_DMA is not set
|
||||||
|
# CONFIG_USB_TI_CPPI_DMA is not set
|
||||||
|
CONFIG_USB_MUSB_LOGLEVEL=0
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB Device Class drivers
|
||||||
|
#
|
||||||
|
# CONFIG_USB_ACM is not set
|
||||||
|
# CONFIG_USB_PRINTER is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
|
# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support'
|
||||||
#
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# may also be needed; see USB_STORAGE Help for more information
|
||||||
|
#
|
||||||
|
CONFIG_USB_STORAGE=m
|
||||||
|
# CONFIG_USB_STORAGE_DEBUG is not set
|
||||||
|
# CONFIG_USB_STORAGE_DATAFAB is not set
|
||||||
|
# CONFIG_USB_STORAGE_FREECOM is not set
|
||||||
|
# CONFIG_USB_STORAGE_ISD200 is not set
|
||||||
|
# CONFIG_USB_STORAGE_DPCM is not set
|
||||||
|
# CONFIG_USB_STORAGE_USBAT is not set
|
||||||
|
# CONFIG_USB_STORAGE_SDDR09 is not set
|
||||||
|
# CONFIG_USB_STORAGE_SDDR55 is not set
|
||||||
|
# CONFIG_USB_STORAGE_JUMPSHOT is not set
|
||||||
|
# CONFIG_USB_STORAGE_ALAUDA is not set
|
||||||
|
# CONFIG_USB_STORAGE_ONETOUCH is not set
|
||||||
|
# CONFIG_USB_STORAGE_KARMA is not set
|
||||||
|
# CONFIG_USB_LIBUSUAL is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB Imaging devices
|
||||||
|
#
|
||||||
|
# CONFIG_USB_MDC800 is not set
|
||||||
|
# CONFIG_USB_MICROTEK is not set
|
||||||
|
CONFIG_USB_MON=y
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB port drivers
|
||||||
|
#
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB Serial Converter support
|
||||||
|
#
|
||||||
|
# CONFIG_USB_SERIAL is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB Miscellaneous drivers
|
||||||
|
#
|
||||||
|
# CONFIG_USB_EMI62 is not set
|
||||||
|
# CONFIG_USB_EMI26 is not set
|
||||||
|
# CONFIG_USB_ADUTUX is not set
|
||||||
|
# CONFIG_USB_AUERSWALD is not set
|
||||||
|
# CONFIG_USB_RIO500 is not set
|
||||||
|
# CONFIG_USB_LEGOTOWER is not set
|
||||||
|
# CONFIG_USB_LCD is not set
|
||||||
|
# CONFIG_USB_BERRY_CHARGE is not set
|
||||||
|
# CONFIG_USB_LED is not set
|
||||||
|
# CONFIG_USB_CYPRESS_CY7C63 is not set
|
||||||
|
# CONFIG_USB_CYTHERM is not set
|
||||||
|
# CONFIG_USB_PHIDGET is not set
|
||||||
|
# CONFIG_USB_IDMOUSE is not set
|
||||||
|
# CONFIG_USB_FTDI_ELAN is not set
|
||||||
|
# CONFIG_USB_APPLEDISPLAY is not set
|
||||||
|
# CONFIG_USB_SISUSBVGA is not set
|
||||||
|
# CONFIG_USB_LD is not set
|
||||||
|
# CONFIG_USB_TRANCEVIBRATOR is not set
|
||||||
|
# CONFIG_USB_IOWARRIOR is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# USB DSL modem support
|
||||||
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
# USB Gadget Support
|
# USB Gadget Support
|
||||||
#
|
#
|
||||||
@ -1126,37 +1220,17 @@ CONFIG_MMC=m
|
|||||||
# MMC/SD Card Drivers
|
# MMC/SD Card Drivers
|
||||||
#
|
#
|
||||||
CONFIG_MMC_BLOCK=m
|
CONFIG_MMC_BLOCK=m
|
||||||
|
CONFIG_MMC_BLOCK_BOUNCE=y
|
||||||
|
# CONFIG_SDIO_UART is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# MMC/SD Host Controller Drivers
|
# MMC/SD Host Controller Drivers
|
||||||
#
|
#
|
||||||
CONFIG_SDH_BFIN=m
|
CONFIG_SDH_BFIN=m
|
||||||
|
# CONFIG_SDH_BFIN_MISSING_CMD_PULLUP_WORKAROUND is not set
|
||||||
|
# CONFIG_MMC_SPI is not set
|
||||||
# CONFIG_SPI_MMC is not set
|
# CONFIG_SPI_MMC is not set
|
||||||
|
|
||||||
#
|
|
||||||
# LED devices
|
|
||||||
#
|
|
||||||
# CONFIG_NEW_LEDS is not set
|
# CONFIG_NEW_LEDS is not set
|
||||||
|
|
||||||
#
|
|
||||||
# LED drivers
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# LED Triggers
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# InfiniBand support
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# EDAC - error detection and reporting (RAS) (EXPERIMENTAL)
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# Real Time Clock
|
|
||||||
#
|
|
||||||
CONFIG_RTC_LIB=y
|
CONFIG_RTC_LIB=y
|
||||||
CONFIG_RTC_CLASS=y
|
CONFIG_RTC_CLASS=y
|
||||||
CONFIG_RTC_HCTOSYS=y
|
CONFIG_RTC_HCTOSYS=y
|
||||||
@ -1176,6 +1250,7 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# I2C RTC drivers
|
# I2C RTC drivers
|
||||||
#
|
#
|
||||||
# CONFIG_RTC_DRV_DS1307 is not set
|
# CONFIG_RTC_DRV_DS1307 is not set
|
||||||
|
# CONFIG_RTC_DRV_DS1374 is not set
|
||||||
# CONFIG_RTC_DRV_DS1672 is not set
|
# CONFIG_RTC_DRV_DS1672 is not set
|
||||||
# CONFIG_RTC_DRV_MAX6900 is not set
|
# CONFIG_RTC_DRV_MAX6900 is not set
|
||||||
# CONFIG_RTC_DRV_RS5C372 is not set
|
# CONFIG_RTC_DRV_RS5C372 is not set
|
||||||
@ -1183,6 +1258,7 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# CONFIG_RTC_DRV_X1205 is not set
|
# CONFIG_RTC_DRV_X1205 is not set
|
||||||
# CONFIG_RTC_DRV_PCF8563 is not set
|
# CONFIG_RTC_DRV_PCF8563 is not set
|
||||||
# CONFIG_RTC_DRV_PCF8583 is not set
|
# CONFIG_RTC_DRV_PCF8583 is not set
|
||||||
|
# CONFIG_RTC_DRV_M41T80 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# SPI RTC drivers
|
# SPI RTC drivers
|
||||||
@ -1194,8 +1270,10 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
# Platform RTC drivers
|
# Platform RTC drivers
|
||||||
#
|
#
|
||||||
# CONFIG_RTC_DRV_DS1553 is not set
|
# CONFIG_RTC_DRV_DS1553 is not set
|
||||||
|
# CONFIG_RTC_DRV_STK17TA8 is not set
|
||||||
# CONFIG_RTC_DRV_DS1742 is not set
|
# CONFIG_RTC_DRV_DS1742 is not set
|
||||||
# CONFIG_RTC_DRV_M48T86 is not set
|
# CONFIG_RTC_DRV_M48T86 is not set
|
||||||
|
# CONFIG_RTC_DRV_M48T59 is not set
|
||||||
# CONFIG_RTC_DRV_V3020 is not set
|
# CONFIG_RTC_DRV_V3020 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -1204,22 +1282,9 @@ CONFIG_RTC_INTF_DEV=y
|
|||||||
CONFIG_RTC_DRV_BFIN=y
|
CONFIG_RTC_DRV_BFIN=y
|
||||||
|
|
||||||
#
|
#
|
||||||
# DMA Engine support
|
# Userspace I/O
|
||||||
#
|
#
|
||||||
# CONFIG_DMA_ENGINE is not set
|
# CONFIG_UIO is not set
|
||||||
|
|
||||||
#
|
|
||||||
# DMA Clients
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# DMA Devices
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# PBX support
|
|
||||||
#
|
|
||||||
# CONFIG_PBX is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
@ -1280,7 +1345,6 @@ CONFIG_PROC_SYSCTL=y
|
|||||||
CONFIG_SYSFS=y
|
CONFIG_SYSFS=y
|
||||||
# CONFIG_TMPFS is not set
|
# CONFIG_TMPFS is not set
|
||||||
# CONFIG_HUGETLB_PAGE is not set
|
# CONFIG_HUGETLB_PAGE is not set
|
||||||
CONFIG_RAMFS=y
|
|
||||||
# CONFIG_CONFIGFS_FS is not set
|
# CONFIG_CONFIGFS_FS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -1306,10 +1370,12 @@ CONFIG_YAFFS_SHORT_NAMES_IN_RAM=y
|
|||||||
CONFIG_JFFS2_FS=m
|
CONFIG_JFFS2_FS=m
|
||||||
CONFIG_JFFS2_FS_DEBUG=0
|
CONFIG_JFFS2_FS_DEBUG=0
|
||||||
CONFIG_JFFS2_FS_WRITEBUFFER=y
|
CONFIG_JFFS2_FS_WRITEBUFFER=y
|
||||||
|
# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
|
||||||
# CONFIG_JFFS2_SUMMARY is not set
|
# CONFIG_JFFS2_SUMMARY is not set
|
||||||
# CONFIG_JFFS2_FS_XATTR is not set
|
# CONFIG_JFFS2_FS_XATTR is not set
|
||||||
# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
|
# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
|
||||||
CONFIG_JFFS2_ZLIB=y
|
CONFIG_JFFS2_ZLIB=y
|
||||||
|
# CONFIG_JFFS2_LZO is not set
|
||||||
CONFIG_JFFS2_RTIME=y
|
CONFIG_JFFS2_RTIME=y
|
||||||
# CONFIG_JFFS2_RUBIN is not set
|
# CONFIG_JFFS2_RUBIN is not set
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
@ -1318,10 +1384,7 @@ CONFIG_JFFS2_RTIME=y
|
|||||||
# CONFIG_QNX4FS_FS is not set
|
# CONFIG_QNX4FS_FS is not set
|
||||||
# CONFIG_SYSV_FS is not set
|
# CONFIG_SYSV_FS is not set
|
||||||
# CONFIG_UFS_FS is not set
|
# CONFIG_UFS_FS is not set
|
||||||
|
CONFIG_NETWORK_FILESYSTEMS=y
|
||||||
#
|
|
||||||
# Network File Systems
|
|
||||||
#
|
|
||||||
CONFIG_NFS_FS=m
|
CONFIG_NFS_FS=m
|
||||||
CONFIG_NFS_V3=y
|
CONFIG_NFS_V3=y
|
||||||
# CONFIG_NFS_V3_ACL is not set
|
# CONFIG_NFS_V3_ACL is not set
|
||||||
@ -1352,7 +1415,6 @@ CONFIG_CIFS=y
|
|||||||
# CONFIG_NCP_FS is not set
|
# CONFIG_NCP_FS is not set
|
||||||
# CONFIG_CODA_FS is not set
|
# CONFIG_CODA_FS is not set
|
||||||
# CONFIG_AFS_FS is not set
|
# CONFIG_AFS_FS is not set
|
||||||
# CONFIG_9P_FS is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Partition Types
|
# Partition Types
|
||||||
@ -1375,10 +1437,6 @@ CONFIG_MSDOS_PARTITION=y
|
|||||||
# CONFIG_KARMA_PARTITION is not set
|
# CONFIG_KARMA_PARTITION is not set
|
||||||
# CONFIG_EFI_PARTITION is not set
|
# CONFIG_EFI_PARTITION is not set
|
||||||
# CONFIG_SYSV68_PARTITION is not set
|
# CONFIG_SYSV68_PARTITION is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Native Language Support
|
|
||||||
#
|
|
||||||
CONFIG_NLS=y
|
CONFIG_NLS=y
|
||||||
CONFIG_NLS_DEFAULT="iso8859-1"
|
CONFIG_NLS_DEFAULT="iso8859-1"
|
||||||
CONFIG_NLS_CODEPAGE_437=m
|
CONFIG_NLS_CODEPAGE_437=m
|
||||||
@ -1419,21 +1477,16 @@ CONFIG_NLS_ISO8859_15=m
|
|||||||
CONFIG_NLS_KOI8_R=m
|
CONFIG_NLS_KOI8_R=m
|
||||||
CONFIG_NLS_KOI8_U=m
|
CONFIG_NLS_KOI8_U=m
|
||||||
CONFIG_NLS_UTF8=m
|
CONFIG_NLS_UTF8=m
|
||||||
|
|
||||||
#
|
|
||||||
# Distributed Lock Manager
|
|
||||||
#
|
|
||||||
# CONFIG_DLM is not set
|
# CONFIG_DLM is not set
|
||||||
|
CONFIG_INSTRUMENTATION=y
|
||||||
#
|
|
||||||
# Profiling support
|
|
||||||
#
|
|
||||||
# CONFIG_PROFILING is not set
|
# CONFIG_PROFILING is not set
|
||||||
|
# CONFIG_MARKERS is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Kernel hacking
|
# Kernel hacking
|
||||||
#
|
#
|
||||||
# CONFIG_PRINTK_TIME is not set
|
# CONFIG_PRINTK_TIME is not set
|
||||||
|
CONFIG_ENABLE_WARN_DEPRECATED=y
|
||||||
CONFIG_ENABLE_MUST_CHECK=y
|
CONFIG_ENABLE_MUST_CHECK=y
|
||||||
# CONFIG_MAGIC_SYSRQ is not set
|
# CONFIG_MAGIC_SYSRQ is not set
|
||||||
# CONFIG_UNUSED_SYMBOLS is not set
|
# CONFIG_UNUSED_SYMBOLS is not set
|
||||||
@ -1441,6 +1494,7 @@ CONFIG_DEBUG_FS=y
|
|||||||
# CONFIG_HEADERS_CHECK is not set
|
# CONFIG_HEADERS_CHECK is not set
|
||||||
# CONFIG_DEBUG_KERNEL is not set
|
# CONFIG_DEBUG_KERNEL is not set
|
||||||
# CONFIG_DEBUG_BUGVERBOSE is not set
|
# CONFIG_DEBUG_BUGVERBOSE is not set
|
||||||
|
# CONFIG_SAMPLES is not set
|
||||||
CONFIG_DEBUG_MMRS=y
|
CONFIG_DEBUG_MMRS=y
|
||||||
CONFIG_DEBUG_HUNT_FOR_ZERO=y
|
CONFIG_DEBUG_HUNT_FOR_ZERO=y
|
||||||
CONFIG_DEBUG_BFIN_HWTRACE_ON=y
|
CONFIG_DEBUG_BFIN_HWTRACE_ON=y
|
||||||
@ -1460,11 +1514,8 @@ CONFIG_ACCESS_CHECK=y
|
|||||||
# CONFIG_KEYS is not set
|
# CONFIG_KEYS is not set
|
||||||
CONFIG_SECURITY=y
|
CONFIG_SECURITY=y
|
||||||
# CONFIG_SECURITY_NETWORK is not set
|
# CONFIG_SECURITY_NETWORK is not set
|
||||||
CONFIG_SECURITY_CAPABILITIES=m
|
# CONFIG_SECURITY_CAPABILITIES is not set
|
||||||
|
# CONFIG_SECURITY_ROOTPLUG is not set
|
||||||
#
|
|
||||||
# Cryptographic options
|
|
||||||
#
|
|
||||||
# CONFIG_CRYPTO is not set
|
# CONFIG_CRYPTO is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -1475,6 +1526,7 @@ CONFIG_CRC_CCITT=m
|
|||||||
# CONFIG_CRC16 is not set
|
# CONFIG_CRC16 is not set
|
||||||
# CONFIG_CRC_ITU_T is not set
|
# CONFIG_CRC_ITU_T is not set
|
||||||
CONFIG_CRC32=y
|
CONFIG_CRC32=y
|
||||||
|
# CONFIG_CRC7 is not set
|
||||||
# CONFIG_LIBCRC32C is not set
|
# CONFIG_LIBCRC32C is not set
|
||||||
CONFIG_ZLIB_INFLATE=y
|
CONFIG_ZLIB_INFLATE=y
|
||||||
CONFIG_ZLIB_DEFLATE=m
|
CONFIG_ZLIB_DEFLATE=m
|
||||||
|
@ -212,7 +212,7 @@ CONFIG_HZ=250
|
|||||||
#
|
#
|
||||||
# Memory Setup
|
# Memory Setup
|
||||||
#
|
#
|
||||||
CONFIG_MEM_SIZE=64
|
CONFIG_MAX_MEM_SIZE=64
|
||||||
CONFIG_MEM_ADD_WIDTH=10
|
CONFIG_MEM_ADD_WIDTH=10
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -90,6 +90,17 @@ int request_dma(unsigned int channel, char *device_id)
|
|||||||
{
|
{
|
||||||
|
|
||||||
pr_debug("request_dma() : BEGIN \n");
|
pr_debug("request_dma() : BEGIN \n");
|
||||||
|
|
||||||
|
#if defined(CONFIG_BF561) && ANOMALY_05000182
|
||||||
|
if (channel >= CH_IMEM_STREAM0_DEST && channel <= CH_IMEM_STREAM1_DEST) {
|
||||||
|
if (get_cclk() > 500000000) {
|
||||||
|
printk(KERN_WARNING
|
||||||
|
"Request IMDMA failed due to ANOMALY 05000182\n");
|
||||||
|
return -EFAULT;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
mutex_lock(&(dma_ch[channel].dmalock));
|
mutex_lock(&(dma_ch[channel].dmalock));
|
||||||
|
|
||||||
if ((dma_ch[channel].chan_status == DMA_CHANNEL_REQUESTED)
|
if ((dma_ch[channel].chan_status == DMA_CHANNEL_REQUESTED)
|
||||||
|
@ -1130,6 +1130,25 @@ void bfin_gpio_irq_prepare(unsigned gpio)
|
|||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
int gpio_get_value(unsigned gpio)
|
||||||
|
{
|
||||||
|
unsigned long flags;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
if (unlikely(get_gpio_edge(gpio))) {
|
||||||
|
local_irq_save(flags);
|
||||||
|
set_gpio_edge(gpio, 0);
|
||||||
|
ret = get_gpio_data(gpio);
|
||||||
|
set_gpio_edge(gpio, 1);
|
||||||
|
local_irq_restore(flags);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
} else
|
||||||
|
return get_gpio_data(gpio);
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL(gpio_get_value);
|
||||||
|
|
||||||
|
|
||||||
int gpio_direction_input(unsigned gpio)
|
int gpio_direction_input(unsigned gpio)
|
||||||
{
|
{
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
@ -90,7 +90,9 @@ EXPORT_SYMBOL(__umodsi3);
|
|||||||
EXPORT_SYMBOL(outsb);
|
EXPORT_SYMBOL(outsb);
|
||||||
EXPORT_SYMBOL(insb);
|
EXPORT_SYMBOL(insb);
|
||||||
EXPORT_SYMBOL(outsw);
|
EXPORT_SYMBOL(outsw);
|
||||||
|
EXPORT_SYMBOL(outsw_8);
|
||||||
EXPORT_SYMBOL(insw);
|
EXPORT_SYMBOL(insw);
|
||||||
|
EXPORT_SYMBOL(insw_8);
|
||||||
EXPORT_SYMBOL(outsl);
|
EXPORT_SYMBOL(outsl);
|
||||||
EXPORT_SYMBOL(insl);
|
EXPORT_SYMBOL(insl);
|
||||||
EXPORT_SYMBOL(insl_16);
|
EXPORT_SYMBOL(insl_16);
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
|
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/module.h>
|
#include <linux/module.h>
|
||||||
|
#include <linux/io.h>
|
||||||
|
|
||||||
#include <asm/io.h>
|
|
||||||
#include <asm/blackfin.h>
|
#include <asm/blackfin.h>
|
||||||
#include <asm/gptimers.h>
|
#include <asm/gptimers.h>
|
||||||
|
|
||||||
|
@ -34,7 +34,6 @@
|
|||||||
#include <linux/fs.h>
|
#include <linux/fs.h>
|
||||||
|
|
||||||
static struct fs_struct init_fs = INIT_FS;
|
static struct fs_struct init_fs = INIT_FS;
|
||||||
static struct files_struct init_files = INIT_FILES;
|
|
||||||
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
||||||
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ void __init trap_init(void)
|
|||||||
CSYNC();
|
CSYNC();
|
||||||
}
|
}
|
||||||
|
|
||||||
void *saved_icplb_fault_addr, *saved_dcplb_fault_addr;
|
unsigned long saved_icplb_fault_addr, saved_dcplb_fault_addr;
|
||||||
|
|
||||||
int kstack_depth_to_print = 48;
|
int kstack_depth_to_print = 48;
|
||||||
|
|
||||||
@ -364,13 +364,13 @@ asmlinkage void trap_c(struct pt_regs *fp)
|
|||||||
/* 0x27 - Data CPLB Multiple Hits - Linux Trap Zero, handled here */
|
/* 0x27 - Data CPLB Multiple Hits - Linux Trap Zero, handled here */
|
||||||
case VEC_CPLB_MHIT:
|
case VEC_CPLB_MHIT:
|
||||||
info.si_code = ILL_CPLB_MULHIT;
|
info.si_code = ILL_CPLB_MULHIT;
|
||||||
#ifdef CONFIG_DEBUG_HUNT_FOR_ZERO
|
|
||||||
sig = SIGSEGV;
|
sig = SIGSEGV;
|
||||||
printk(KERN_NOTICE "NULL pointer access (probably)\n");
|
#ifdef CONFIG_DEBUG_HUNT_FOR_ZERO
|
||||||
#else
|
if (saved_dcplb_fault_addr < FIXED_CODE_START)
|
||||||
sig = SIGILL;
|
printk(KERN_NOTICE "NULL pointer access\n");
|
||||||
printk(KERN_NOTICE EXC_0x27(KERN_NOTICE));
|
else
|
||||||
#endif
|
#endif
|
||||||
|
printk(KERN_NOTICE EXC_0x27(KERN_NOTICE));
|
||||||
CHK_DEBUGGER_TRAP();
|
CHK_DEBUGGER_TRAP();
|
||||||
break;
|
break;
|
||||||
/* 0x28 - Emulation Watchpoint, handled here */
|
/* 0x28 - Emulation Watchpoint, handled here */
|
||||||
@ -419,13 +419,13 @@ asmlinkage void trap_c(struct pt_regs *fp)
|
|||||||
/* 0x2D - Instruction CPLB Multiple Hits, handled here */
|
/* 0x2D - Instruction CPLB Multiple Hits, handled here */
|
||||||
case VEC_CPLB_I_MHIT:
|
case VEC_CPLB_I_MHIT:
|
||||||
info.si_code = ILL_CPLB_MULHIT;
|
info.si_code = ILL_CPLB_MULHIT;
|
||||||
#ifdef CONFIG_DEBUG_HUNT_FOR_ZERO
|
|
||||||
sig = SIGSEGV;
|
sig = SIGSEGV;
|
||||||
printk(KERN_NOTICE "Jump to address 0 - 0x0fff\n");
|
#ifdef CONFIG_DEBUG_HUNT_FOR_ZERO
|
||||||
#else
|
if (saved_icplb_fault_addr < FIXED_CODE_START)
|
||||||
sig = SIGILL;
|
printk(KERN_NOTICE "Jump to NULL address\n");
|
||||||
printk(KERN_NOTICE EXC_0x2D(KERN_NOTICE));
|
else
|
||||||
#endif
|
#endif
|
||||||
|
printk(KERN_NOTICE EXC_0x2D(KERN_NOTICE));
|
||||||
CHK_DEBUGGER_TRAP();
|
CHK_DEBUGGER_TRAP();
|
||||||
break;
|
break;
|
||||||
/* 0x2E - Illegal use of Supervisor Resource, handled here */
|
/* 0x2E - Illegal use of Supervisor Resource, handled here */
|
||||||
@ -939,8 +939,6 @@ void panic_cplb_error(int cplb_panic, struct pt_regs *fp)
|
|||||||
|
|
||||||
oops_in_progress = 1;
|
oops_in_progress = 1;
|
||||||
|
|
||||||
printk(KERN_EMERG "DCPLB_FAULT_ADDR=%p\n", saved_dcplb_fault_addr);
|
|
||||||
printk(KERN_EMERG "ICPLB_FAULT_ADDR=%p\n", saved_icplb_fault_addr);
|
|
||||||
dump_bfin_process(fp);
|
dump_bfin_process(fp);
|
||||||
dump_bfin_mem(fp);
|
dump_bfin_mem(fp);
|
||||||
show_regs(fp);
|
show_regs(fp);
|
||||||
|
@ -72,9 +72,9 @@ static unsigned short do_csum(const unsigned char *buff, int len)
|
|||||||
* This is a version of ip_compute_csum() optimized for IP headers,
|
* This is a version of ip_compute_csum() optimized for IP headers,
|
||||||
* which always checksum on 4 octet boundaries.
|
* which always checksum on 4 octet boundaries.
|
||||||
*/
|
*/
|
||||||
unsigned short ip_fast_csum(unsigned char *iph, unsigned int ihl)
|
__sum16 ip_fast_csum(unsigned char *iph, unsigned int ihl)
|
||||||
{
|
{
|
||||||
return ~do_csum(iph, ihl * 4);
|
return (__force __sum16)~do_csum(iph, ihl * 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -89,7 +89,7 @@ unsigned short ip_fast_csum(unsigned char *iph, unsigned int ihl)
|
|||||||
*
|
*
|
||||||
* it's best to have buff aligned on a 32-bit boundary
|
* it's best to have buff aligned on a 32-bit boundary
|
||||||
*/
|
*/
|
||||||
unsigned int csum_partial(const unsigned char *buff, int len, unsigned int sum)
|
__wsum csum_partial(const void *buff, int len, __wsum sum)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* Just in case we get nasty checksum data...
|
* Just in case we get nasty checksum data...
|
||||||
@ -109,22 +109,22 @@ unsigned int csum_partial(const unsigned char *buff, int len, unsigned int sum)
|
|||||||
* this routine is used for miscellaneous IP-like checksums, mainly
|
* this routine is used for miscellaneous IP-like checksums, mainly
|
||||||
* in icmp.c
|
* in icmp.c
|
||||||
*/
|
*/
|
||||||
unsigned short ip_compute_csum(const unsigned char *buff, int len)
|
__sum16 ip_compute_csum(const void *buff, int len)
|
||||||
{
|
{
|
||||||
return ~do_csum(buff, len);
|
return (__force __sum16)~do_csum(buff, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* copy from fs while checksumming, otherwise like csum_partial
|
* copy from fs while checksumming, otherwise like csum_partial
|
||||||
*/
|
*/
|
||||||
|
|
||||||
unsigned int
|
__wsum
|
||||||
csum_partial_copy_from_user(const unsigned char *src, unsigned char *dst,
|
csum_partial_copy_from_user(const void __user *src, void *dst,
|
||||||
int len, int sum, int *csum_err)
|
int len, __wsum sum, int *csum_err)
|
||||||
{
|
{
|
||||||
if (csum_err)
|
if (csum_err)
|
||||||
*csum_err = 0;
|
*csum_err = 0;
|
||||||
memcpy(dst, src, len);
|
memcpy(dst, (__force void *)src, len);
|
||||||
return csum_partial(dst, len, sum);
|
return csum_partial(dst, len, sum);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -132,8 +132,7 @@ csum_partial_copy_from_user(const unsigned char *src, unsigned char *dst,
|
|||||||
* copy from ds while checksumming, otherwise like csum_partial
|
* copy from ds while checksumming, otherwise like csum_partial
|
||||||
*/
|
*/
|
||||||
|
|
||||||
unsigned int csum_partial_copy(const unsigned char *src, unsigned char *dst,
|
__wsum csum_partial_copy(const void *src, void *dst, int len, __wsum sum)
|
||||||
int len, int sum)
|
|
||||||
{
|
{
|
||||||
memcpy(dst, src, len);
|
memcpy(dst, src, len);
|
||||||
return csum_partial(dst, len, sum);
|
return csum_partial(dst, len, sum);
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
* Description: Implementation of ins{bwl} for BlackFin processors using zero overhead loops.
|
* Description: Implementation of ins{bwl} for BlackFin processors using zero overhead loops.
|
||||||
*
|
*
|
||||||
* Modified:
|
* Modified:
|
||||||
* Copyright 2004-2006 Analog Devices Inc.
|
* Copyright 2004-2008 Analog Devices Inc.
|
||||||
* Copyright (C) 2005 Bas Vermeulen, BuyWays BV <bas@buyways.nl>
|
* Copyright (C) 2005 Bas Vermeulen, BuyWays BV <bas@buyways.nl>
|
||||||
*
|
*
|
||||||
* Bugs: Enter bugs at http://blackfin.uclinux.org/
|
* Bugs: Enter bugs at http://blackfin.uclinux.org/
|
||||||
@ -63,6 +63,23 @@ ENTRY(_insw)
|
|||||||
RTS;
|
RTS;
|
||||||
ENDPROC(_insw)
|
ENDPROC(_insw)
|
||||||
|
|
||||||
|
ENTRY(_insw_8)
|
||||||
|
P0 = R0; /* P0 = port */
|
||||||
|
cli R3;
|
||||||
|
P1 = R1; /* P1 = address */
|
||||||
|
P2 = R2; /* P2 = count */
|
||||||
|
SSYNC;
|
||||||
|
LSETUP( .Lword8_loop_s, .Lword8_loop_e) LC0 = P2;
|
||||||
|
.Lword8_loop_s: R0 = W[P0];
|
||||||
|
B[P1++] = R0;
|
||||||
|
R0 = R0 >> 8;
|
||||||
|
B[P1++] = R0;
|
||||||
|
NOP;
|
||||||
|
.Lword8_loop_e: NOP;
|
||||||
|
sti R3;
|
||||||
|
RTS;
|
||||||
|
ENDPROC(_insw_8)
|
||||||
|
|
||||||
ENTRY(_insb)
|
ENTRY(_insb)
|
||||||
P0 = R0; /* P0 = port */
|
P0 = R0; /* P0 = port */
|
||||||
cli R3;
|
cli R3;
|
||||||
@ -78,8 +95,6 @@ ENTRY(_insb)
|
|||||||
RTS;
|
RTS;
|
||||||
ENDPROC(_insb)
|
ENDPROC(_insb)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ENTRY(_insl_16)
|
ENTRY(_insl_16)
|
||||||
P0 = R0; /* P0 = port */
|
P0 = R0; /* P0 = port */
|
||||||
cli R3;
|
cli R3;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
* Description: Implementation of outs{bwl} for BlackFin processors using zero overhead loops.
|
* Description: Implementation of outs{bwl} for BlackFin processors using zero overhead loops.
|
||||||
*
|
*
|
||||||
* Modified: Copyright (C) 2005 Bas Vermeulen, BuyWays BV <bas@buyways.nl>
|
* Modified: Copyright (C) 2005 Bas Vermeulen, BuyWays BV <bas@buyways.nl>
|
||||||
* Copyright 2004-2006 Analog Devices Inc.
|
* Copyright 2004-2008 Analog Devices Inc.
|
||||||
*
|
*
|
||||||
* Bugs: Enter bugs at http://blackfin.uclinux.org/
|
* Bugs: Enter bugs at http://blackfin.uclinux.org/
|
||||||
*
|
*
|
||||||
@ -63,3 +63,17 @@ ENTRY(_outsb)
|
|||||||
.Lbyte_loop_e: B[P0] = R0;
|
.Lbyte_loop_e: B[P0] = R0;
|
||||||
RTS;
|
RTS;
|
||||||
ENDPROC(_outsb)
|
ENDPROC(_outsb)
|
||||||
|
|
||||||
|
ENTRY(_outsw_8)
|
||||||
|
P0 = R0; /* P0 = port */
|
||||||
|
P1 = R1; /* P1 = address */
|
||||||
|
P2 = R2; /* P2 = count */
|
||||||
|
|
||||||
|
LSETUP( .Lword8_loop_s, .Lword8_loop_e) LC0 = P2;
|
||||||
|
.Lword8_loop_s: R1 = B[P1++];
|
||||||
|
R0 = B[P1++];
|
||||||
|
R0 = R0 << 8;
|
||||||
|
R0 = R0 + R1;
|
||||||
|
.Lword8_loop_e: W[P0] = R0;
|
||||||
|
RTS;
|
||||||
|
ENDPROC(_outsw_8)
|
||||||
|
@ -451,9 +451,6 @@ static struct platform_device net2272_bfin_device = {
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
|
||||||
/* all SPI peripherals info goes here */
|
|
||||||
|
|
||||||
#if defined(CONFIG_MTD_M25P80) \
|
#if defined(CONFIG_MTD_M25P80) \
|
||||||
|| defined(CONFIG_MTD_M25P80_MODULE)
|
|| defined(CONFIG_MTD_M25P80_MODULE)
|
||||||
static struct mtd_partition bfin_spi_flash_partitions[] = {
|
static struct mtd_partition bfin_spi_flash_partitions[] = {
|
||||||
@ -647,10 +644,10 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
|||||||
{
|
{
|
||||||
.modalias = "ad7877",
|
.modalias = "ad7877",
|
||||||
.platform_data = &bfin_ad7877_ts_info,
|
.platform_data = &bfin_ad7877_ts_info,
|
||||||
.irq = IRQ_PF6,
|
.irq = IRQ_PF8,
|
||||||
.max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
|
.max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
|
||||||
.bus_num = 0,
|
.bus_num = 0,
|
||||||
.chip_select = 1,
|
.chip_select = 2,
|
||||||
.controller_data = &spi_ad7877_chip_info,
|
.controller_data = &spi_ad7877_chip_info,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
@ -676,6 +673,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
/* SPI controller data */
|
/* SPI controller data */
|
||||||
static struct bfin5xx_spi_master bfin_spi0_info = {
|
static struct bfin5xx_spi_master bfin_spi0_info = {
|
||||||
.num_chipselect = 8,
|
.num_chipselect = 8,
|
||||||
@ -1018,10 +1016,7 @@ static int __init stamp_init(void)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
|
platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
|
||||||
spi_register_board_info(bfin_spi_board_info,
|
|
||||||
ARRAY_SIZE(bfin_spi_board_info));
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
||||||
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
|
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
|
||||||
|
@ -87,9 +87,6 @@ static struct platform_device smc91x_device = {
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
|
||||||
/* all SPI peripherals info goes here */
|
|
||||||
|
|
||||||
#if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE)
|
#if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE)
|
||||||
static struct mtd_partition bfin_spi_flash_partitions[] = {
|
static struct mtd_partition bfin_spi_flash_partitions[] = {
|
||||||
{
|
{
|
||||||
@ -189,6 +186,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
/* SPI (0) */
|
/* SPI (0) */
|
||||||
static struct resource bfin_spi0_resource[] = {
|
static struct resource bfin_spi0_resource[] = {
|
||||||
[0] = {
|
[0] = {
|
||||||
@ -425,9 +423,7 @@ static int __init ezkit_init(void)
|
|||||||
{
|
{
|
||||||
printk(KERN_INFO "%s(): registering device resources\n", __func__);
|
printk(KERN_INFO "%s(): registering device resources\n", __func__);
|
||||||
platform_add_devices(ezkit_devices, ARRAY_SIZE(ezkit_devices));
|
platform_add_devices(ezkit_devices, ARRAY_SIZE(ezkit_devices));
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
|
||||||
spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
|
spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
||||||
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
|
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
|
||||||
|
@ -111,7 +111,7 @@ static struct platform_device net2272_bfin_device = {
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_MTD_BF5xx) || defined(CONFIG_MTD_BF5xx_MODULE)
|
#if defined(CONFIG_MTD_BFIN_ASYNC) || defined(CONFIG_MTD_BFIN_ASYNC_MODULE)
|
||||||
static struct mtd_partition stamp_partitions[] = {
|
static struct mtd_partition stamp_partitions[] = {
|
||||||
{
|
{
|
||||||
.name = "Bootloader",
|
.name = "Bootloader",
|
||||||
@ -141,13 +141,17 @@ static struct resource stamp_flash_resource[] = {
|
|||||||
.end = 0x203fffff,
|
.end = 0x203fffff,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
}, {
|
}, {
|
||||||
.start = CONFIG_ENET_FLASH_PIN,
|
.start = 0x7BB07BB0, /* AMBCTL0 setting when accessing flash */
|
||||||
|
.end = 0x7BB07BB0, /* AMBCTL1 setting when accessing flash */
|
||||||
|
.flags = IORESOURCE_MEM,
|
||||||
|
}, {
|
||||||
|
.start = GPIO_PF0,
|
||||||
.flags = IORESOURCE_IRQ,
|
.flags = IORESOURCE_IRQ,
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device stamp_flash_device = {
|
static struct platform_device stamp_flash_device = {
|
||||||
.name = "BF5xx-Flash",
|
.name = "bfin-async-flash",
|
||||||
.id = 0,
|
.id = 0,
|
||||||
.dev = {
|
.dev = {
|
||||||
.platform_data = &stamp_flash_data,
|
.platform_data = &stamp_flash_data,
|
||||||
@ -157,9 +161,6 @@ static struct platform_device stamp_flash_device = {
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
|
||||||
/* all SPI peripherals info goes here */
|
|
||||||
|
|
||||||
#if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE)
|
#if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE)
|
||||||
static struct mtd_partition bfin_spi_flash_partitions[] = {
|
static struct mtd_partition bfin_spi_flash_partitions[] = {
|
||||||
{
|
{
|
||||||
@ -316,6 +317,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
/* SPI (0) */
|
/* SPI (0) */
|
||||||
static struct resource bfin_spi0_resource[] = {
|
static struct resource bfin_spi0_resource[] = {
|
||||||
[0] = {
|
[0] = {
|
||||||
@ -595,7 +597,7 @@ static struct platform_device *stamp_devices[] __initdata = {
|
|||||||
|
|
||||||
&bfin_gpios_device,
|
&bfin_gpios_device,
|
||||||
|
|
||||||
#if defined(CONFIG_MTD_BF5xx) || defined(CONFIG_MTD_BF5xx_MODULE)
|
#if defined(CONFIG_MTD_BFIN_ASYNC) || defined(CONFIG_MTD_BFIN_ASYNC_MODULE)
|
||||||
&stamp_flash_device,
|
&stamp_flash_device,
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
@ -617,15 +619,13 @@ static int __init stamp_init(void)
|
|||||||
|
|
||||||
#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
|
#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
|
||||||
/* setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC */
|
/* setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC */
|
||||||
bfin_write_FIO_DIR(bfin_read_FIO_DIR() | (1 << CONFIG_ENET_FLASH_PIN));
|
bfin_write_FIO_DIR(bfin_read_FIO_DIR() | PF0);
|
||||||
bfin_write_FIO_FLAG_S(1 << CONFIG_ENET_FLASH_PIN);
|
bfin_write_FIO_FLAG_S(PF0);
|
||||||
SSYNC();
|
SSYNC();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
|
||||||
spi_register_board_info(bfin_spi_board_info,
|
|
||||||
ARRAY_SIZE(bfin_spi_board_info));
|
|
||||||
#endif
|
|
||||||
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
||||||
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
|
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
|
||||||
#endif
|
#endif
|
||||||
@ -636,8 +636,8 @@ arch_initcall(stamp_init);
|
|||||||
|
|
||||||
void native_machine_restart(char *cmd)
|
void native_machine_restart(char *cmd)
|
||||||
{
|
{
|
||||||
#define BIT_TO_SET (1 << CONFIG_ENET_FLASH_PIN)
|
/* workaround pull up on cpld / flash pin not being strong enough */
|
||||||
bfin_write_FIO_INEN(~BIT_TO_SET);
|
bfin_write_FIO_INEN(~PF0);
|
||||||
bfin_write_FIO_DIR(BIT_TO_SET);
|
bfin_write_FIO_DIR(PF0);
|
||||||
bfin_write_FIO_FLAG_C(BIT_TO_SET);
|
bfin_write_FIO_FLAG_C(PF0);
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
obj-$(CONFIG_GENERIC_BF537_BOARD) += generic_board.o
|
obj-$(CONFIG_GENERIC_BF537_BOARD) += generic_board.o
|
||||||
obj-$(CONFIG_BFIN537_STAMP) += stamp.o led.o
|
obj-$(CONFIG_BFIN537_STAMP) += stamp.o
|
||||||
obj-$(CONFIG_BFIN537_BLUETECHNIX_CM) += cm_bf537.o
|
obj-$(CONFIG_BFIN537_BLUETECHNIX_CM) += cm_bf537.o
|
||||||
obj-$(CONFIG_PNAV10) += pnav10.o
|
obj-$(CONFIG_PNAV10) += pnav10.o
|
||||||
obj-$(CONFIG_CAMSIG_MINOTAUR) += minotaur.o
|
obj-$(CONFIG_CAMSIG_MINOTAUR) += minotaur.o
|
||||||
|
@ -1,183 +0,0 @@
|
|||||||
/****************************************************
|
|
||||||
* LED1 ---- PF6 LED2 ---- PF7 *
|
|
||||||
* LED3 ---- PF8 LED4 ---- PF9 *
|
|
||||||
* LED5 ---- PF10 LED6 ---- PF11 *
|
|
||||||
****************************************************/
|
|
||||||
|
|
||||||
#include <linux/linkage.h>
|
|
||||||
#include <asm/blackfin.h>
|
|
||||||
|
|
||||||
/* All functions in this file save the registers they uses.
|
|
||||||
So there is no need to save any registers before calling them. */
|
|
||||||
|
|
||||||
.text;
|
|
||||||
|
|
||||||
/* Initialize LEDs. */
|
|
||||||
|
|
||||||
ENTRY(_led_init)
|
|
||||||
LINK 12;
|
|
||||||
[--SP] = P0;
|
|
||||||
[--SP] = R0;
|
|
||||||
[--SP] = R1;
|
|
||||||
[--SP] = R2;
|
|
||||||
R1 = PF6|PF7|PF8|PF9|PF10|PF11 (Z);
|
|
||||||
R2 = ~R1;
|
|
||||||
|
|
||||||
P0.H = hi(PORTF_FER);
|
|
||||||
P0.L = lo(PORTF_FER);
|
|
||||||
R0 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R0 = R0 & R2;
|
|
||||||
W[P0] = R0.L;
|
|
||||||
SSYNC;
|
|
||||||
|
|
||||||
P0.H = hi(PORTFIO_DIR);
|
|
||||||
P0.L = lo(PORTFIO_DIR);
|
|
||||||
R0 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R0 = R0 | R1;
|
|
||||||
W[P0] = R0.L;
|
|
||||||
SSYNC;
|
|
||||||
|
|
||||||
P0.H = hi(PORTFIO_INEN);
|
|
||||||
P0.L = lo(PORTFIO_INEN);
|
|
||||||
R0 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R0 = R0 & R2;
|
|
||||||
W[P0] = R0.L;
|
|
||||||
SSYNC;
|
|
||||||
|
|
||||||
R2 = [SP++];
|
|
||||||
R1 = [SP++];
|
|
||||||
R0 = [SP++];
|
|
||||||
P0 = [SP++];
|
|
||||||
UNLINK;
|
|
||||||
RTS;
|
|
||||||
.size _led_init, .-_led_init
|
|
||||||
|
|
||||||
/* Set one LED on. Leave other LEDs unchanged.
|
|
||||||
It expects the LED number passed through R0. */
|
|
||||||
|
|
||||||
ENTRY(_led_on)
|
|
||||||
LINK 12;
|
|
||||||
[--SP] = P0;
|
|
||||||
[--SP] = R1;
|
|
||||||
CALL _led_init;
|
|
||||||
R1 = 1;
|
|
||||||
R0 += 5;
|
|
||||||
R1 <<= R0;
|
|
||||||
P0.H = hi(PORTFIO);
|
|
||||||
P0.L = lo(PORTFIO);
|
|
||||||
R0 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R0 = R0 | R1;
|
|
||||||
W[P0] = R0.L;
|
|
||||||
SSYNC;
|
|
||||||
R1 = [SP++];
|
|
||||||
P0 = [SP++];
|
|
||||||
UNLINK;
|
|
||||||
RTS;
|
|
||||||
.size _led_on, .-_led_on
|
|
||||||
|
|
||||||
/* Set one LED off. Leave other LEDs unchanged. */
|
|
||||||
|
|
||||||
ENTRY(_led_off)
|
|
||||||
LINK 12;
|
|
||||||
[--SP] = P0;
|
|
||||||
[--SP] = R1;
|
|
||||||
CALL _led_init;
|
|
||||||
R1 = 1;
|
|
||||||
R0 += 5;
|
|
||||||
R1 <<= R0;
|
|
||||||
R1 = ~R1;
|
|
||||||
P0.H = hi(PORTFIO);
|
|
||||||
P0.L = lo(PORTFIO);
|
|
||||||
R0 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R0 = R0 & R1;
|
|
||||||
W[P0] = R0.L;
|
|
||||||
SSYNC;
|
|
||||||
R1 = [SP++];
|
|
||||||
P0 = [SP++];
|
|
||||||
UNLINK;
|
|
||||||
RTS;
|
|
||||||
.size _led_off, .-_led_off
|
|
||||||
|
|
||||||
/* Toggle one LED. Leave other LEDs unchanged. */
|
|
||||||
|
|
||||||
ENTRY(_led_toggle)
|
|
||||||
LINK 12;
|
|
||||||
[--SP] = P0;
|
|
||||||
[--SP] = R1;
|
|
||||||
CALL _led_init;
|
|
||||||
R1 = 1;
|
|
||||||
R0 += 5;
|
|
||||||
R1 <<= R0;
|
|
||||||
P0.H = hi(PORTFIO);
|
|
||||||
P0.L = lo(PORTFIO);
|
|
||||||
R0 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R0 = R0 ^ R1;
|
|
||||||
W[P0] = R0.L;
|
|
||||||
SSYNC;
|
|
||||||
R1 = [SP++];
|
|
||||||
P0 = [SP++];
|
|
||||||
UNLINK;
|
|
||||||
RTS;
|
|
||||||
.size _led_toggle, .-_led_toggle
|
|
||||||
|
|
||||||
/* Display the number using LEDs in binary format. */
|
|
||||||
|
|
||||||
ENTRY(_led_disp_num)
|
|
||||||
LINK 12;
|
|
||||||
[--SP] = P0;
|
|
||||||
[--SP] = R1;
|
|
||||||
[--SP] = R2;
|
|
||||||
CALL _led_init;
|
|
||||||
R1 = 0x3f(X);
|
|
||||||
R0 = R0 & R1;
|
|
||||||
R2 = 6(X);
|
|
||||||
R0 <<= R2;
|
|
||||||
R1 <<= R2;
|
|
||||||
P0.H = hi(PORTFIO);
|
|
||||||
P0.L = lo(PORTFIO);
|
|
||||||
R2 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R1 = ~R1;
|
|
||||||
R2 = R2 & R1;
|
|
||||||
R2 = R2 | R0;
|
|
||||||
W[P0] = R2.L;
|
|
||||||
SSYNC;
|
|
||||||
R2 = [SP++];
|
|
||||||
R1 = [SP++];
|
|
||||||
P0 = [SP++];
|
|
||||||
UNLINK;
|
|
||||||
RTS;
|
|
||||||
.size _led_disp_num, .-_led_disp_num
|
|
||||||
|
|
||||||
/* Toggle the number using LEDs in binary format. */
|
|
||||||
|
|
||||||
ENTRY(_led_toggle_num)
|
|
||||||
LINK 12;
|
|
||||||
[--SP] = P0;
|
|
||||||
[--SP] = R1;
|
|
||||||
[--SP] = R2;
|
|
||||||
CALL _led_init;
|
|
||||||
R1 = 0x3f(X);
|
|
||||||
R0 = R0 & R1;
|
|
||||||
R1 = 6(X);
|
|
||||||
R0 <<= R1;
|
|
||||||
P0.H = hi(PORTFIO);
|
|
||||||
P0.L = lo(PORTFIO);
|
|
||||||
R1 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R1 = R1 ^ R0;
|
|
||||||
W[P0] = R1.L;
|
|
||||||
SSYNC;
|
|
||||||
R2 = [SP++];
|
|
||||||
R1 = [SP++];
|
|
||||||
P0 = [SP++];
|
|
||||||
UNLINK;
|
|
||||||
RTS;
|
|
||||||
.size _led_toggle_num, .-_led_toggle_num
|
|
||||||
|
|
@ -400,9 +400,6 @@ static struct platform_device stamp_flash_device = {
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
|
||||||
/* all SPI peripherals info goes here */
|
|
||||||
|
|
||||||
#if defined(CONFIG_MTD_M25P80) \
|
#if defined(CONFIG_MTD_M25P80) \
|
||||||
|| defined(CONFIG_MTD_M25P80_MODULE)
|
|| defined(CONFIG_MTD_M25P80_MODULE)
|
||||||
static struct mtd_partition bfin_spi_flash_partitions[] = {
|
static struct mtd_partition bfin_spi_flash_partitions[] = {
|
||||||
@ -629,6 +626,7 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
/* SPI controller data */
|
/* SPI controller data */
|
||||||
static struct bfin5xx_spi_master bfin_spi0_info = {
|
static struct bfin5xx_spi_master bfin_spi0_info = {
|
||||||
.num_chipselect = 8,
|
.num_chipselect = 8,
|
||||||
@ -939,10 +937,7 @@ static int __init stamp_init(void)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
|
platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
|
||||||
spi_register_board_info(bfin_spi_board_info,
|
|
||||||
ARRAY_SIZE(bfin_spi_board_info));
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
||||||
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
|
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
|
||||||
|
@ -2,5 +2,5 @@
|
|||||||
# arch/blackfin/mach-bf548/boards/Makefile
|
# arch/blackfin/mach-bf548/boards/Makefile
|
||||||
#
|
#
|
||||||
|
|
||||||
obj-$(CONFIG_BFIN548_EZKIT) += ezkit.o led.o
|
obj-$(CONFIG_BFIN548_EZKIT) += ezkit.o
|
||||||
obj-$(CONFIG_BFIN548_BLUETECHNIX_CM) += cm_bf548.o
|
obj-$(CONFIG_BFIN548_BLUETECHNIX_CM) += cm_bf548.o
|
||||||
|
@ -684,7 +684,7 @@ static struct platform_device *cm_bf548_devices[] __initdata = {
|
|||||||
|
|
||||||
static int __init cm_bf548_init(void)
|
static int __init cm_bf548_init(void)
|
||||||
{
|
{
|
||||||
printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__);
|
printk(KERN_INFO "%s(): registering device resources\n", __func__);
|
||||||
platform_add_devices(cm_bf548_devices, ARRAY_SIZE(cm_bf548_devices));
|
platform_add_devices(cm_bf548_devices, ARRAY_SIZE(cm_bf548_devices));
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
|
@ -412,8 +412,6 @@ static struct platform_device ezkit_flash_device = {
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
|
||||||
/* all SPI peripherals info goes here */
|
|
||||||
#if defined(CONFIG_MTD_M25P80) \
|
#if defined(CONFIG_MTD_M25P80) \
|
||||||
|| defined(CONFIG_MTD_M25P80_MODULE)
|
|| defined(CONFIG_MTD_M25P80_MODULE)
|
||||||
/* SPI flash chip (m25p16) */
|
/* SPI flash chip (m25p16) */
|
||||||
@ -481,7 +479,7 @@ static struct bfin5xx_spi_chip spidev_chip_info = {
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static struct spi_board_info bf54x_spi_board_info[] __initdata = {
|
static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
#if defined(CONFIG_MTD_M25P80) \
|
#if defined(CONFIG_MTD_M25P80) \
|
||||||
|| defined(CONFIG_MTD_M25P80_MODULE)
|
|| defined(CONFIG_MTD_M25P80_MODULE)
|
||||||
{
|
{
|
||||||
@ -527,6 +525,7 @@ static struct spi_board_info bf54x_spi_board_info[] __initdata = {
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
/* SPI (0) */
|
/* SPI (0) */
|
||||||
static struct resource bfin_spi0_resource[] = {
|
static struct resource bfin_spi0_resource[] = {
|
||||||
[0] = {
|
[0] = {
|
||||||
@ -800,10 +799,7 @@ static int __init ezkit_init(void)
|
|||||||
|
|
||||||
platform_add_devices(ezkit_devices, ARRAY_SIZE(ezkit_devices));
|
platform_add_devices(ezkit_devices, ARRAY_SIZE(ezkit_devices));
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
|
||||||
spi_register_board_info(bf54x_spi_board_info,
|
|
||||||
ARRAY_SIZE(bf54x_spi_board_info));
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -1,172 +0,0 @@
|
|||||||
/****************************************************
|
|
||||||
* LED1 ---- PG6 LED2 ---- PG7 *
|
|
||||||
* LED3 ---- PG8 LED4 ---- PG9 *
|
|
||||||
* LED5 ---- PG10 LED6 ---- PG11 *
|
|
||||||
****************************************************/
|
|
||||||
|
|
||||||
#include <linux/linkage.h>
|
|
||||||
#include <asm/blackfin.h>
|
|
||||||
|
|
||||||
/* All functions in this file save the registers they uses.
|
|
||||||
So there is no need to save any registers before calling them. */
|
|
||||||
|
|
||||||
.text;
|
|
||||||
|
|
||||||
/* Initialize LEDs. */
|
|
||||||
|
|
||||||
ENTRY(_led_init)
|
|
||||||
LINK 0;
|
|
||||||
[--SP] = P0;
|
|
||||||
[--SP] = R0;
|
|
||||||
[--SP] = R1;
|
|
||||||
[--SP] = R2;
|
|
||||||
R1 = (PG6|PG7|PG8|PG9|PG10|PG11)(Z);
|
|
||||||
R2 = ~R1;
|
|
||||||
|
|
||||||
P0.H = hi(PORTG_FER);
|
|
||||||
P0.L = lo(PORTG_FER);
|
|
||||||
R0 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R0 = R0 & R2;
|
|
||||||
W[P0] = R0.L;
|
|
||||||
SSYNC;
|
|
||||||
|
|
||||||
P0.H = hi(PORTG_DIR_SET);
|
|
||||||
P0.L = lo(PORTG_DIR_SET);
|
|
||||||
W[P0] = R1.L;
|
|
||||||
SSYNC;
|
|
||||||
|
|
||||||
P0.H = hi(PORTG_INEN);
|
|
||||||
P0.L = lo(PORTG_INEN);
|
|
||||||
R0 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R0 = R0 & R2;
|
|
||||||
W[P0] = R0.L;
|
|
||||||
SSYNC;
|
|
||||||
|
|
||||||
R2 = [SP++];
|
|
||||||
R1 = [SP++];
|
|
||||||
R0 = [SP++];
|
|
||||||
P0 = [SP++];
|
|
||||||
RTS;
|
|
||||||
.size _led_init, .-_led_init
|
|
||||||
|
|
||||||
/* Set one LED on. Leave other LEDs unchanged.
|
|
||||||
It expects the LED number passed through R0. */
|
|
||||||
|
|
||||||
ENTRY(_led_on)
|
|
||||||
LINK 0;
|
|
||||||
[--SP] = P0;
|
|
||||||
[--SP] = R1;
|
|
||||||
CALL _led_init;
|
|
||||||
R1 = 1;
|
|
||||||
R0 += 5;
|
|
||||||
R1 <<= R0;
|
|
||||||
P0.H = hi(PORTG_SET);
|
|
||||||
P0.L = lo(PORTG_SET);
|
|
||||||
W[P0] = R1.L;
|
|
||||||
SSYNC;
|
|
||||||
R1 = [SP++];
|
|
||||||
P0 = [SP++];
|
|
||||||
UNLINK;
|
|
||||||
RTS;
|
|
||||||
.size _led_on, .-_led_on
|
|
||||||
|
|
||||||
/* Set one LED off. Leave other LEDs unchanged. */
|
|
||||||
|
|
||||||
ENTRY(_led_off)
|
|
||||||
LINK 0;
|
|
||||||
[--SP] = P0;
|
|
||||||
[--SP] = R1;
|
|
||||||
CALL _led_init;
|
|
||||||
R1 = 1;
|
|
||||||
R0 += 5;
|
|
||||||
R1 <<= R0;
|
|
||||||
P0.H = hi(PORTG_CLEAR);
|
|
||||||
P0.L = lo(PORTG_CLEAR);
|
|
||||||
W[P0] = R1.L;
|
|
||||||
SSYNC;
|
|
||||||
R1 = [SP++];
|
|
||||||
P0 = [SP++];
|
|
||||||
UNLINK;
|
|
||||||
RTS;
|
|
||||||
.size _led_off, .-_led_off
|
|
||||||
|
|
||||||
/* Toggle one LED. Leave other LEDs unchanged. */
|
|
||||||
|
|
||||||
ENTRY(_led_toggle)
|
|
||||||
LINK 0;
|
|
||||||
[--SP] = P0;
|
|
||||||
[--SP] = R1;
|
|
||||||
CALL _led_init;
|
|
||||||
R1 = 1;
|
|
||||||
R0 += 5;
|
|
||||||
R1 <<= R0;
|
|
||||||
P0.H = hi(PORTG);
|
|
||||||
P0.L = lo(PORTG);
|
|
||||||
R0 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R0 = R0 ^ R1;
|
|
||||||
W[P0] = R0.L;
|
|
||||||
SSYNC;
|
|
||||||
R1 = [SP++];
|
|
||||||
P0 = [SP++];
|
|
||||||
UNLINK;
|
|
||||||
RTS;
|
|
||||||
.size _led_toggle, .-_led_toggle
|
|
||||||
|
|
||||||
/* Display the number using LEDs in binary format. */
|
|
||||||
|
|
||||||
ENTRY(_led_disp_num)
|
|
||||||
LINK 0;
|
|
||||||
[--SP] = P0;
|
|
||||||
[--SP] = R1;
|
|
||||||
[--SP] = R2;
|
|
||||||
CALL _led_init;
|
|
||||||
R1 = 0x3f(X);
|
|
||||||
R0 = R0 & R1;
|
|
||||||
R2 = 6(X);
|
|
||||||
R0 <<= R2;
|
|
||||||
R1 <<= R2;
|
|
||||||
P0.H = hi(PORTG);
|
|
||||||
P0.L = lo(PORTG);
|
|
||||||
R2 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R1 = ~R1;
|
|
||||||
R2 = R2 & R1;
|
|
||||||
R2 = R2 | R0;
|
|
||||||
W[P0] = R2.L;
|
|
||||||
SSYNC;
|
|
||||||
R2 = [SP++];
|
|
||||||
R1 = [SP++];
|
|
||||||
P0 = [SP++];
|
|
||||||
UNLINK;
|
|
||||||
RTS;
|
|
||||||
.size _led_disp_num, .-_led_disp_num
|
|
||||||
|
|
||||||
/* Toggle the number using LEDs in binary format. */
|
|
||||||
|
|
||||||
ENTRY(_led_toggle_num)
|
|
||||||
LINK 0;
|
|
||||||
[--SP] = P0;
|
|
||||||
[--SP] = R1;
|
|
||||||
[--SP] = R2;
|
|
||||||
CALL _led_init;
|
|
||||||
R1 = 0x3f(X);
|
|
||||||
R0 = R0 & R1;
|
|
||||||
R1 = 6(X);
|
|
||||||
R0 <<= R1;
|
|
||||||
P0.H = hi(PORTG);
|
|
||||||
P0.L = lo(PORTG);
|
|
||||||
R1 = W[P0](Z);
|
|
||||||
SSYNC;
|
|
||||||
R1 = R1 ^ R0;
|
|
||||||
W[P0] = R1.L;
|
|
||||||
SSYNC;
|
|
||||||
R2 = [SP++];
|
|
||||||
R1 = [SP++];
|
|
||||||
P0 = [SP++];
|
|
||||||
UNLINK;
|
|
||||||
RTS;
|
|
||||||
.size _led_toggle_num, .-_led_toggle_num
|
|
||||||
|
|
@ -280,7 +280,6 @@ static struct platform_device ezkit_flash_device = {
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_SPI_BFIN
|
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
||||||
|| defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
|| defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
|
||||||
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
|
||||||
@ -295,8 +294,8 @@ static struct bfin5xx_spi_chip spidev_chip_info = {
|
|||||||
.bits_per_word = 8,
|
.bits_per_word = 8,
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
|
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
||||||
/* SPI (0) */
|
/* SPI (0) */
|
||||||
static struct resource bfin_spi0_resource[] = {
|
static struct resource bfin_spi0_resource[] = {
|
||||||
[0] = {
|
[0] = {
|
||||||
@ -327,6 +326,7 @@ static struct platform_device bfin_spi0_device = {
|
|||||||
.platform_data = &bfin_spi0_info, /* Passed to driver */
|
.platform_data = &bfin_spi0_info, /* Passed to driver */
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
static struct spi_board_info bfin_spi_board_info[] __initdata = {
|
||||||
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
#if defined(CONFIG_SND_BLACKFIN_AD1836) \
|
||||||
@ -537,10 +537,7 @@ static int __init ezkit_init(void)
|
|||||||
SSYNC();
|
SSYNC();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
|
spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
|
||||||
spi_register_board_info(bfin_spi_board_info,
|
|
||||||
ARRAY_SIZE(bfin_spi_board_info));
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
#if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE)
|
||||||
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
|
irq_desc[PATA_INT].status |= IRQ_NOAUTOEN;
|
||||||
|
@ -38,7 +38,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
static struct fs_struct init_fs = INIT_FS;
|
static struct fs_struct init_fs = INIT_FS;
|
||||||
static struct files_struct init_files = INIT_FILES;
|
|
||||||
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
||||||
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
||||||
struct mm_struct init_mm = INIT_MM(init_mm);
|
struct mm_struct init_mm = INIT_MM(init_mm);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* cmode.S: clock mode management
|
/* cmode.S: clock mode management
|
||||||
*
|
*
|
||||||
* Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
|
* Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
|
||||||
* Written by David Woodhouse (dwmw2@redhat.com)
|
* Written by David Woodhouse (dwmw2@infradead.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@ -11,7 +11,6 @@
|
|||||||
|
|
||||||
|
|
||||||
static struct fs_struct init_fs = INIT_FS;
|
static struct fs_struct init_fs = INIT_FS;
|
||||||
static struct files_struct init_files = INIT_FILES;
|
|
||||||
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
||||||
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
||||||
struct mm_struct init_mm = INIT_MM(init_mm);
|
struct mm_struct init_mm = INIT_MM(init_mm);
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* sleep.S: power saving mode entry
|
/* sleep.S: power saving mode entry
|
||||||
*
|
*
|
||||||
* Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
|
* Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
|
||||||
* Written by David Woodhouse (dwmw2@redhat.com)
|
* Written by David Woodhouse (dwmw2@infradead.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* pci-dma-nommu.c: Dynamic DMA mapping support for the FRV
|
/* pci-dma-nommu.c: Dynamic DMA mapping support for the FRV
|
||||||
*
|
*
|
||||||
* Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
|
* Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
|
||||||
* Written by David Woodhouse (dwmw2@redhat.com)
|
* Written by David Woodhouse (dwmw2@infradead.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU General Public License
|
* modify it under the terms of the GNU General Public License
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include <linux/types.h>
|
#include <linux/types.h>
|
||||||
#include <linux/bootmem.h>
|
#include <linux/bootmem.h>
|
||||||
#include <linux/highmem.h>
|
#include <linux/highmem.h>
|
||||||
|
#include <linux/module.h>
|
||||||
|
|
||||||
#include <asm/setup.h>
|
#include <asm/setup.h>
|
||||||
#include <asm/segment.h>
|
#include <asm/segment.h>
|
||||||
@ -56,7 +57,9 @@ DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
|
|||||||
*/
|
*/
|
||||||
static unsigned long empty_bad_page_table;
|
static unsigned long empty_bad_page_table;
|
||||||
static unsigned long empty_bad_page;
|
static unsigned long empty_bad_page;
|
||||||
|
|
||||||
unsigned long empty_zero_page;
|
unsigned long empty_zero_page;
|
||||||
|
EXPORT_SYMBOL(empty_zero_page);
|
||||||
|
|
||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
/*
|
/*
|
||||||
|
@ -13,7 +13,6 @@
|
|||||||
#include <asm/pgtable.h>
|
#include <asm/pgtable.h>
|
||||||
|
|
||||||
static struct fs_struct init_fs = INIT_FS;
|
static struct fs_struct init_fs = INIT_FS;
|
||||||
static struct files_struct init_files = INIT_FILES;
|
|
||||||
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
||||||
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
||||||
struct mm_struct init_mm = INIT_MM(init_mm);
|
struct mm_struct init_mm = INIT_MM(init_mm);
|
||||||
|
@ -57,6 +57,7 @@ core-$(CONFIG_IA64_GENERIC) += arch/ia64/dig/
|
|||||||
core-$(CONFIG_IA64_HP_ZX1) += arch/ia64/dig/
|
core-$(CONFIG_IA64_HP_ZX1) += arch/ia64/dig/
|
||||||
core-$(CONFIG_IA64_HP_ZX1_SWIOTLB) += arch/ia64/dig/
|
core-$(CONFIG_IA64_HP_ZX1_SWIOTLB) += arch/ia64/dig/
|
||||||
core-$(CONFIG_IA64_SGI_SN2) += arch/ia64/sn/
|
core-$(CONFIG_IA64_SGI_SN2) += arch/ia64/sn/
|
||||||
|
core-$(CONFIG_IA64_SGI_UV) += arch/ia64/uv/
|
||||||
core-$(CONFIG_KVM) += arch/ia64/kvm/
|
core-$(CONFIG_KVM) += arch/ia64/kvm/
|
||||||
|
|
||||||
drivers-$(CONFIG_PCI) += arch/ia64/pci/
|
drivers-$(CONFIG_PCI) += arch/ia64/pci/
|
||||||
|
@ -465,7 +465,6 @@ void __init acpi_numa_slit_init(struct acpi_table_slit *slit)
|
|||||||
printk(KERN_ERR
|
printk(KERN_ERR
|
||||||
"ACPI 2.0 SLIT: size mismatch: %d expected, %d actual\n",
|
"ACPI 2.0 SLIT: size mismatch: %d expected, %d actual\n",
|
||||||
len, slit->header.length);
|
len, slit->header.length);
|
||||||
memset(numa_slit, 10, sizeof(numa_slit));
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
slit_table = slit;
|
slit_table = slit;
|
||||||
@ -574,8 +573,14 @@ void __init acpi_numa_arch_fixup(void)
|
|||||||
printk(KERN_INFO "Number of memory chunks in system = %d\n",
|
printk(KERN_INFO "Number of memory chunks in system = %d\n",
|
||||||
num_node_memblks);
|
num_node_memblks);
|
||||||
|
|
||||||
if (!slit_table)
|
if (!slit_table) {
|
||||||
|
for (i = 0; i < MAX_NUMNODES; i++)
|
||||||
|
for (j = 0; j < MAX_NUMNODES; j++)
|
||||||
|
node_distance(i, j) = i == j ? LOCAL_DISTANCE :
|
||||||
|
REMOTE_DISTANCE;
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
memset(numa_slit, -1, sizeof(numa_slit));
|
memset(numa_slit, -1, sizeof(numa_slit));
|
||||||
for (i = 0; i < slit_table->locality_count; i++) {
|
for (i = 0; i < slit_table->locality_count; i++) {
|
||||||
if (!pxm_bit_test(i))
|
if (!pxm_bit_test(i))
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
#include <asm/pgtable.h>
|
#include <asm/pgtable.h>
|
||||||
|
|
||||||
static struct fs_struct init_fs = INIT_FS;
|
static struct fs_struct init_fs = INIT_FS;
|
||||||
static struct files_struct init_files = INIT_FILES;
|
|
||||||
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
static struct signal_struct init_signals = INIT_SIGNALS(init_signals);
|
||||||
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
static struct sighand_struct init_sighand = INIT_SIGHAND(init_sighand);
|
||||||
struct mm_struct init_mm = INIT_MM(init_mm);
|
struct mm_struct init_mm = INIT_MM(init_mm);
|
||||||
|
@ -558,8 +558,6 @@ static struct iosapic_rte_info * __init_refok iosapic_alloc_rte (void)
|
|||||||
if (!iosapic_kmalloc_ok && list_empty(&free_rte_list)) {
|
if (!iosapic_kmalloc_ok && list_empty(&free_rte_list)) {
|
||||||
rte = alloc_bootmem(sizeof(struct iosapic_rte_info) *
|
rte = alloc_bootmem(sizeof(struct iosapic_rte_info) *
|
||||||
NR_PREALLOCATE_RTE_ENTRIES);
|
NR_PREALLOCATE_RTE_ENTRIES);
|
||||||
if (!rte)
|
|
||||||
return NULL;
|
|
||||||
for (i = 0; i < NR_PREALLOCATE_RTE_ENTRIES; i++, rte++)
|
for (i = 0; i < NR_PREALLOCATE_RTE_ENTRIES; i++, rte++)
|
||||||
list_add(&rte->rte_list, &free_rte_list);
|
list_add(&rte->rte_list, &free_rte_list);
|
||||||
}
|
}
|
||||||
|
@ -1076,48 +1076,6 @@ END(ia64_syscall_setup)
|
|||||||
DBG_FAULT(15)
|
DBG_FAULT(15)
|
||||||
FAULT(15)
|
FAULT(15)
|
||||||
|
|
||||||
/*
|
|
||||||
* Squatting in this space ...
|
|
||||||
*
|
|
||||||
* This special case dispatcher for illegal operation faults allows preserved
|
|
||||||
* registers to be modified through a callback function (asm only) that is handed
|
|
||||||
* back from the fault handler in r8. Up to three arguments can be passed to the
|
|
||||||
* callback function by returning an aggregate with the callback as its first
|
|
||||||
* element, followed by the arguments.
|
|
||||||
*/
|
|
||||||
ENTRY(dispatch_illegal_op_fault)
|
|
||||||
.prologue
|
|
||||||
.body
|
|
||||||
SAVE_MIN_WITH_COVER
|
|
||||||
ssm psr.ic | PSR_DEFAULT_BITS
|
|
||||||
;;
|
|
||||||
srlz.i // guarantee that interruption collection is on
|
|
||||||
;;
|
|
||||||
(p15) ssm psr.i // restore psr.i
|
|
||||||
adds r3=8,r2 // set up second base pointer for SAVE_REST
|
|
||||||
;;
|
|
||||||
alloc r14=ar.pfs,0,0,1,0 // must be first in insn group
|
|
||||||
mov out0=ar.ec
|
|
||||||
;;
|
|
||||||
SAVE_REST
|
|
||||||
PT_REGS_UNWIND_INFO(0)
|
|
||||||
;;
|
|
||||||
br.call.sptk.many rp=ia64_illegal_op_fault
|
|
||||||
.ret0: ;;
|
|
||||||
alloc r14=ar.pfs,0,0,3,0 // must be first in insn group
|
|
||||||
mov out0=r9
|
|
||||||
mov out1=r10
|
|
||||||
mov out2=r11
|
|
||||||
movl r15=ia64_leave_kernel
|
|
||||||
;;
|
|
||||||
mov rp=r15
|
|
||||||
mov b6=r8
|
|
||||||
;;
|
|
||||||
cmp.ne p6,p0=0,r8
|
|
||||||
(p6) br.call.dpnt.many b6=b6 // call returns to ia64_leave_kernel
|
|
||||||
br.sptk.many ia64_leave_kernel
|
|
||||||
END(dispatch_illegal_op_fault)
|
|
||||||
|
|
||||||
.org ia64_ivt+0x4000
|
.org ia64_ivt+0x4000
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// 0x4000 Entry 16 (size 64 bundles) Reserved
|
// 0x4000 Entry 16 (size 64 bundles) Reserved
|
||||||
@ -1715,6 +1673,48 @@ END(ia32_interrupt)
|
|||||||
DBG_FAULT(67)
|
DBG_FAULT(67)
|
||||||
FAULT(67)
|
FAULT(67)
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Squatting in this space ...
|
||||||
|
*
|
||||||
|
* This special case dispatcher for illegal operation faults allows preserved
|
||||||
|
* registers to be modified through a callback function (asm only) that is handed
|
||||||
|
* back from the fault handler in r8. Up to three arguments can be passed to the
|
||||||
|
* callback function by returning an aggregate with the callback as its first
|
||||||
|
* element, followed by the arguments.
|
||||||
|
*/
|
||||||
|
ENTRY(dispatch_illegal_op_fault)
|
||||||
|
.prologue
|
||||||
|
.body
|
||||||
|
SAVE_MIN_WITH_COVER
|
||||||
|
ssm psr.ic | PSR_DEFAULT_BITS
|
||||||
|
;;
|
||||||
|
srlz.i // guarantee that interruption collection is on
|
||||||
|
;;
|
||||||
|
(p15) ssm psr.i // restore psr.i
|
||||||
|
adds r3=8,r2 // set up second base pointer for SAVE_REST
|
||||||
|
;;
|
||||||
|
alloc r14=ar.pfs,0,0,1,0 // must be first in insn group
|
||||||
|
mov out0=ar.ec
|
||||||
|
;;
|
||||||
|
SAVE_REST
|
||||||
|
PT_REGS_UNWIND_INFO(0)
|
||||||
|
;;
|
||||||
|
br.call.sptk.many rp=ia64_illegal_op_fault
|
||||||
|
.ret0: ;;
|
||||||
|
alloc r14=ar.pfs,0,0,3,0 // must be first in insn group
|
||||||
|
mov out0=r9
|
||||||
|
mov out1=r10
|
||||||
|
mov out2=r11
|
||||||
|
movl r15=ia64_leave_kernel
|
||||||
|
;;
|
||||||
|
mov rp=r15
|
||||||
|
mov b6=r8
|
||||||
|
;;
|
||||||
|
cmp.ne p6,p0=0,r8
|
||||||
|
(p6) br.call.dpnt.many b6=b6 // call returns to ia64_leave_kernel
|
||||||
|
br.sptk.many ia64_leave_kernel
|
||||||
|
END(dispatch_illegal_op_fault)
|
||||||
|
|
||||||
#ifdef CONFIG_IA32_SUPPORT
|
#ifdef CONFIG_IA32_SUPPORT
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -15,6 +15,9 @@
|
|||||||
#define ACCOUNT_SYS_ENTER
|
#define ACCOUNT_SYS_ENTER
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
.section ".data.patch.rse", "a"
|
||||||
|
.previous
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* DO_SAVE_MIN switches to the kernel stacks (if necessary) and saves
|
* DO_SAVE_MIN switches to the kernel stacks (if necessary) and saves
|
||||||
* the minimum state necessary that allows us to turn psr.ic back
|
* the minimum state necessary that allows us to turn psr.ic back
|
||||||
@ -40,7 +43,7 @@
|
|||||||
* Note that psr.ic is NOT turned on by this macro. This is so that
|
* Note that psr.ic is NOT turned on by this macro. This is so that
|
||||||
* we can pass interruption state as arguments to a handler.
|
* we can pass interruption state as arguments to a handler.
|
||||||
*/
|
*/
|
||||||
#define DO_SAVE_MIN(COVER,SAVE_IFS,EXTRA) \
|
#define DO_SAVE_MIN(COVER,SAVE_IFS,EXTRA,WORKAROUND) \
|
||||||
mov r16=IA64_KR(CURRENT); /* M */ \
|
mov r16=IA64_KR(CURRENT); /* M */ \
|
||||||
mov r27=ar.rsc; /* M */ \
|
mov r27=ar.rsc; /* M */ \
|
||||||
mov r20=r1; /* A */ \
|
mov r20=r1; /* A */ \
|
||||||
@ -87,6 +90,7 @@
|
|||||||
tbit.nz p15,p0=r29,IA64_PSR_I_BIT; \
|
tbit.nz p15,p0=r29,IA64_PSR_I_BIT; \
|
||||||
mov r29=b0 \
|
mov r29=b0 \
|
||||||
;; \
|
;; \
|
||||||
|
WORKAROUND; \
|
||||||
adds r16=PT(R8),r1; /* initialize first base pointer */ \
|
adds r16=PT(R8),r1; /* initialize first base pointer */ \
|
||||||
adds r17=PT(R9),r1; /* initialize second base pointer */ \
|
adds r17=PT(R9),r1; /* initialize second base pointer */ \
|
||||||
(pKStk) mov r18=r0; /* make sure r18 isn't NaT */ \
|
(pKStk) mov r18=r0; /* make sure r18 isn't NaT */ \
|
||||||
@ -206,6 +210,40 @@
|
|||||||
st8 [r25]=r10; /* ar.ssd */ \
|
st8 [r25]=r10; /* ar.ssd */ \
|
||||||
;;
|
;;
|
||||||
|
|
||||||
#define SAVE_MIN_WITH_COVER DO_SAVE_MIN(cover, mov r30=cr.ifs,)
|
#define RSE_WORKAROUND \
|
||||||
#define SAVE_MIN_WITH_COVER_R19 DO_SAVE_MIN(cover, mov r30=cr.ifs, mov r15=r19)
|
(pUStk) extr.u r17=r18,3,6; \
|
||||||
#define SAVE_MIN DO_SAVE_MIN( , mov r30=r0, )
|
(pUStk) sub r16=r18,r22; \
|
||||||
|
[1:](pKStk) br.cond.sptk.many 1f; \
|
||||||
|
.xdata4 ".data.patch.rse",1b-. \
|
||||||
|
;; \
|
||||||
|
cmp.ge p6,p7 = 33,r17; \
|
||||||
|
;; \
|
||||||
|
(p6) mov r17=0x310; \
|
||||||
|
(p7) mov r17=0x308; \
|
||||||
|
;; \
|
||||||
|
cmp.leu p1,p0=r16,r17; \
|
||||||
|
(p1) br.cond.sptk.many 1f; \
|
||||||
|
dep.z r17=r26,0,62; \
|
||||||
|
movl r16=2f; \
|
||||||
|
;; \
|
||||||
|
mov ar.pfs=r17; \
|
||||||
|
dep r27=r0,r27,16,14; \
|
||||||
|
mov b0=r16; \
|
||||||
|
;; \
|
||||||
|
br.ret.sptk b0; \
|
||||||
|
;; \
|
||||||
|
2: \
|
||||||
|
mov ar.rsc=r0 \
|
||||||
|
;; \
|
||||||
|
flushrs; \
|
||||||
|
;; \
|
||||||
|
mov ar.bspstore=r22 \
|
||||||
|
;; \
|
||||||
|
mov r18=ar.bsp; \
|
||||||
|
;; \
|
||||||
|
1: \
|
||||||
|
.pred.rel "mutex", pKStk, pUStk
|
||||||
|
|
||||||
|
#define SAVE_MIN_WITH_COVER DO_SAVE_MIN(cover, mov r30=cr.ifs, , RSE_WORKAROUND)
|
||||||
|
#define SAVE_MIN_WITH_COVER_R19 DO_SAVE_MIN(cover, mov r30=cr.ifs, mov r15=r19, RSE_WORKAROUND)
|
||||||
|
#define SAVE_MIN DO_SAVE_MIN( , mov r30=r0, , )
|
||||||
|
@ -115,6 +115,29 @@ ia64_patch_vtop (unsigned long start, unsigned long end)
|
|||||||
ia64_srlz_i();
|
ia64_srlz_i();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Disable the RSE workaround by turning the conditional branch
|
||||||
|
* that we tagged in each place the workaround was used into an
|
||||||
|
* unconditional branch.
|
||||||
|
*/
|
||||||
|
void __init
|
||||||
|
ia64_patch_rse (unsigned long start, unsigned long end)
|
||||||
|
{
|
||||||
|
s32 *offp = (s32 *) start;
|
||||||
|
u64 ip, *b;
|
||||||
|
|
||||||
|
while (offp < (s32 *) end) {
|
||||||
|
ip = (u64) offp + *offp;
|
||||||
|
|
||||||
|
b = (u64 *)(ip & -16);
|
||||||
|
b[1] &= ~0xf800000L;
|
||||||
|
ia64_fc((void *) ip);
|
||||||
|
++offp;
|
||||||
|
}
|
||||||
|
ia64_sync_i();
|
||||||
|
ia64_srlz_i();
|
||||||
|
}
|
||||||
|
|
||||||
void __init
|
void __init
|
||||||
ia64_patch_mckinley_e9 (unsigned long start, unsigned long end)
|
ia64_patch_mckinley_e9 (unsigned long start, unsigned long end)
|
||||||
{
|
{
|
||||||
|
@ -1864,11 +1864,6 @@ pfm_flush(struct file *filp, fl_owner_t id)
|
|||||||
* invoked after, it will find an empty queue and no
|
* invoked after, it will find an empty queue and no
|
||||||
* signal will be sent. In both case, we are safe
|
* signal will be sent. In both case, we are safe
|
||||||
*/
|
*/
|
||||||
if (filp->f_flags & FASYNC) {
|
|
||||||
DPRINT(("cleaning up async_queue=%p\n", ctx->ctx_async_queue));
|
|
||||||
pfm_do_fasync (-1, filp, ctx, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
PROTECT_CTX(ctx, flags);
|
PROTECT_CTX(ctx, flags);
|
||||||
|
|
||||||
state = ctx->ctx_state;
|
state = ctx->ctx_state;
|
||||||
@ -1999,6 +1994,11 @@ pfm_close(struct inode *inode, struct file *filp)
|
|||||||
return -EBADF;
|
return -EBADF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (filp->f_flags & FASYNC) {
|
||||||
|
DPRINT(("cleaning up async_queue=%p\n", ctx->ctx_async_queue));
|
||||||
|
pfm_do_fasync(-1, filp, ctx, 0);
|
||||||
|
}
|
||||||
|
|
||||||
PROTECT_CTX(ctx, flags);
|
PROTECT_CTX(ctx, flags);
|
||||||
|
|
||||||
state = ctx->ctx_state;
|
state = ctx->ctx_state;
|
||||||
|
@ -252,11 +252,10 @@ check_sal_cache_flush (void)
|
|||||||
local_irq_save(flags);
|
local_irq_save(flags);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Schedule a timer interrupt, wait until it's reported, and see if
|
* Send ourselves a timer interrupt, wait until it's reported, and see
|
||||||
* SAL_CACHE_FLUSH drops it.
|
* if SAL_CACHE_FLUSH drops it.
|
||||||
*/
|
*/
|
||||||
ia64_set_itv(IA64_TIMER_VECTOR);
|
platform_send_ipi(cpu, IA64_TIMER_VECTOR, IA64_IPI_DM_INT, 0);
|
||||||
ia64_set_itm(ia64_get_itc() + 1000);
|
|
||||||
|
|
||||||
while (!ia64_get_irr(IA64_TIMER_VECTOR))
|
while (!ia64_get_irr(IA64_TIMER_VECTOR))
|
||||||
cpu_relax();
|
cpu_relax();
|
||||||
|
@ -560,6 +560,17 @@ setup_arch (char **cmdline_p)
|
|||||||
/* process SAL system table: */
|
/* process SAL system table: */
|
||||||
ia64_sal_init(__va(efi.sal_systab));
|
ia64_sal_init(__va(efi.sal_systab));
|
||||||
|
|
||||||
|
#ifdef CONFIG_ITANIUM
|
||||||
|
ia64_patch_rse((u64) __start___rse_patchlist, (u64) __end___rse_patchlist);
|
||||||
|
#else
|
||||||
|
{
|
||||||
|
u64 num_phys_stacked;
|
||||||
|
|
||||||
|
if (ia64_pal_rse_info(&num_phys_stacked, 0) == 0 && num_phys_stacked > 96)
|
||||||
|
ia64_patch_rse((u64) __start___rse_patchlist, (u64) __end___rse_patchlist);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_SMP
|
#ifdef CONFIG_SMP
|
||||||
cpu_physical_id(0) = hard_smp_processor_id();
|
cpu_physical_id(0) = hard_smp_processor_id();
|
||||||
#endif
|
#endif
|
||||||
@ -567,8 +578,6 @@ setup_arch (char **cmdline_p)
|
|||||||
cpu_init(); /* initialize the bootstrap CPU */
|
cpu_init(); /* initialize the bootstrap CPU */
|
||||||
mmu_context_init(); /* initialize context_id bitmap */
|
mmu_context_init(); /* initialize context_id bitmap */
|
||||||
|
|
||||||
check_sal_cache_flush();
|
|
||||||
|
|
||||||
#ifdef CONFIG_ACPI
|
#ifdef CONFIG_ACPI
|
||||||
acpi_boot_init();
|
acpi_boot_init();
|
||||||
#endif
|
#endif
|
||||||
@ -596,6 +605,7 @@ setup_arch (char **cmdline_p)
|
|||||||
ia64_mca_init();
|
ia64_mca_init();
|
||||||
|
|
||||||
platform_setup(cmdline_p);
|
platform_setup(cmdline_p);
|
||||||
|
check_sal_cache_flush();
|
||||||
paging_init();
|
paging_init();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user