Merge branch 'omap/dt' into next/drivers
Needed for the omap timer changes. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
commit
8dbd2879e3
|
@ -210,6 +210,8 @@ local_ops.txt
|
||||||
- semantics and behavior of local atomic operations.
|
- semantics and behavior of local atomic operations.
|
||||||
lockdep-design.txt
|
lockdep-design.txt
|
||||||
- documentation on the runtime locking correctness validator.
|
- documentation on the runtime locking correctness validator.
|
||||||
|
lockup-watchdogs.txt
|
||||||
|
- info on soft and hard lockup detectors (aka nmi_watchdog).
|
||||||
logo.gif
|
logo.gif
|
||||||
- full colour GIF image of Linux logo (penguin - Tux).
|
- full colour GIF image of Linux logo (penguin - Tux).
|
||||||
logo.txt
|
logo.txt
|
||||||
|
@ -240,8 +242,6 @@ netlabel/
|
||||||
- directory with information on the NetLabel subsystem.
|
- directory with information on the NetLabel subsystem.
|
||||||
networking/
|
networking/
|
||||||
- directory with info on various aspects of networking with Linux.
|
- directory with info on various aspects of networking with Linux.
|
||||||
nmi_watchdog.txt
|
|
||||||
- info on NMI watchdog for SMP systems.
|
|
||||||
nommu-mmap.txt
|
nommu-mmap.txt
|
||||||
- documentation about no-mmu memory mapping support.
|
- documentation about no-mmu memory mapping support.
|
||||||
numastat.txt
|
numastat.txt
|
||||||
|
|
|
@ -8,7 +8,7 @@ PIT Timer required properties:
|
||||||
shared across all System Controller members.
|
shared across all System Controller members.
|
||||||
|
|
||||||
TC/TCLIB Timer required properties:
|
TC/TCLIB Timer required properties:
|
||||||
- compatible: Should be "atmel,<chip>-pit".
|
- compatible: Should be "atmel,<chip>-tcb".
|
||||||
<chip> can be "at91rm9200" or "at91sam9x5"
|
<chip> can be "at91rm9200" or "at91sam9x5"
|
||||||
- reg: Should contain registers location and length
|
- reg: Should contain registers location and length
|
||||||
- interrupts: Should contain all interrupts for the TC block
|
- interrupts: Should contain all interrupts for the TC block
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
OMAP Counter-32K bindings
|
||||||
|
|
||||||
|
Required properties:
|
||||||
|
- compatible: Must be "ti,omap-counter32k" for OMAP controllers
|
||||||
|
- reg: Contains timer register address range (base address and length)
|
||||||
|
- ti,hwmods: Name of the hwmod associated to the counter, which is typically
|
||||||
|
"counter_32k"
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
counter32k: counter@4a304000 {
|
||||||
|
compatible = "ti,omap-counter32k";
|
||||||
|
reg = <0x4a304000 0x20>;
|
||||||
|
ti,hwmods = "counter_32k";
|
||||||
|
};
|
|
@ -0,0 +1,31 @@
|
||||||
|
OMAP Timer bindings
|
||||||
|
|
||||||
|
Required properties:
|
||||||
|
- compatible: Must be "ti,omap2-timer" for OMAP2+ controllers.
|
||||||
|
- reg: Contains timer register address range (base address and
|
||||||
|
length).
|
||||||
|
- interrupts: Contains the interrupt information for the timer. The
|
||||||
|
format is being dependent on which interrupt controller
|
||||||
|
the OMAP device uses.
|
||||||
|
- ti,hwmods: Name of the hwmod associated to the timer, "timer<X>",
|
||||||
|
where <X> is the instance number of the timer from the
|
||||||
|
HW spec.
|
||||||
|
|
||||||
|
Optional properties:
|
||||||
|
- ti,timer-alwon: Indicates the timer is in an alway-on power domain.
|
||||||
|
- ti,timer-dsp: Indicates the timer can interrupt the on-chip DSP in
|
||||||
|
addition to the ARM CPU.
|
||||||
|
- ti,timer-pwm: Indicates the timer can generate a PWM output.
|
||||||
|
- ti,timer-secure: Indicates the timer is reserved on a secure OMAP device
|
||||||
|
and therefore cannot be used by the kernel.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
timer12: timer@48304000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48304000 0x400>;
|
||||||
|
interrupts = <95>;
|
||||||
|
ti,hwmods = "timer12"
|
||||||
|
ti,timer-alwon;
|
||||||
|
ti,timer-secure;
|
||||||
|
};
|
|
@ -2,9 +2,27 @@
|
||||||
|
|
||||||
properties:
|
properties:
|
||||||
- compatible : Should be "ti,omap-ocp2scp"
|
- compatible : Should be "ti,omap-ocp2scp"
|
||||||
|
- reg : Address and length of the register set for the device
|
||||||
- #address-cells, #size-cells : Must be present if the device has sub-nodes
|
- #address-cells, #size-cells : Must be present if the device has sub-nodes
|
||||||
- ranges : the child address space are mapped 1:1 onto the parent address space
|
- ranges : the child address space are mapped 1:1 onto the parent address space
|
||||||
- ti,hwmods : must be "ocp2scp_usb_phy"
|
- ti,hwmods : must be "ocp2scp_usb_phy"
|
||||||
|
|
||||||
Sub-nodes:
|
Sub-nodes:
|
||||||
All the devices connected to ocp2scp are described using sub-node to ocp2scp
|
All the devices connected to ocp2scp are described using sub-node to ocp2scp
|
||||||
|
|
||||||
|
ocp2scp@4a0ad000 {
|
||||||
|
compatible = "ti,omap-ocp2scp";
|
||||||
|
reg = <0x4a0ad000 0x1f>;
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
ranges;
|
||||||
|
ti,hwmods = "ocp2scp_usb_phy";
|
||||||
|
|
||||||
|
subnode1 {
|
||||||
|
...
|
||||||
|
};
|
||||||
|
|
||||||
|
subnode2 {
|
||||||
|
...
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
|
@ -55,5 +55,7 @@ st-micro,24c256 i2c serial eeprom (24cxx)
|
||||||
stm,m41t00 Serial Access TIMEKEEPER
|
stm,m41t00 Serial Access TIMEKEEPER
|
||||||
stm,m41t62 Serial real-time clock (RTC) with alarm
|
stm,m41t62 Serial real-time clock (RTC) with alarm
|
||||||
stm,m41t80 M41T80 - SERIAL ACCESS RTC WITH ALARMS
|
stm,m41t80 M41T80 - SERIAL ACCESS RTC WITH ALARMS
|
||||||
|
taos,tsl2550 Ambient Light Sensor with SMBUS/Two Wire Serial Interface
|
||||||
ti,tsc2003 I2C Touch-Screen Controller
|
ti,tsc2003 I2C Touch-Screen Controller
|
||||||
ti,tmp102 Low Power Digital Temperature Sensor with SMBUS/Two Wire Serial Interface
|
ti,tmp102 Low Power Digital Temperature Sensor with SMBUS/Two Wire Serial Interface
|
||||||
|
ti,tmp275 Digital Temperature Sensor
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
* EETI eGalax Multiple Touch Controller
|
||||||
|
|
||||||
|
Required properties:
|
||||||
|
- compatible: must be "eeti,egalax_ts"
|
||||||
|
- reg: i2c slave address
|
||||||
|
- interrupt-parent: the phandle for the interrupt controller
|
||||||
|
- interrupts: touch controller interrupt
|
||||||
|
- wakeup-gpios: the gpio pin to be used for waking up the controller
|
||||||
|
as well as uased as irq pin
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
egalax_ts@04 {
|
||||||
|
compatible = "eeti,egalax_ts";
|
||||||
|
reg = <0x04>;
|
||||||
|
interrupt-parent = <&gpio1>;
|
||||||
|
interrupts = <9 2>;
|
||||||
|
wakeup-gpios = <&gpio1 9 0>;
|
||||||
|
};
|
|
@ -93,7 +93,7 @@ Valid values for pin and group names are:
|
||||||
|
|
||||||
With some exceptions, these support nvidia,high-speed-mode,
|
With some exceptions, these support nvidia,high-speed-mode,
|
||||||
nvidia,schmitt, nvidia,low-power-mode, nvidia,pull-down-strength,
|
nvidia,schmitt, nvidia,low-power-mode, nvidia,pull-down-strength,
|
||||||
nvidia,pull-up-strength, nvidia,slew_rate-rising, nvidia,slew_rate-falling.
|
nvidia,pull-up-strength, nvidia,slew-rate-rising, nvidia,slew-rate-falling.
|
||||||
|
|
||||||
drive_ao1, drive_ao2, drive_at1, drive_at2, drive_cdev1, drive_cdev2,
|
drive_ao1, drive_ao2, drive_at1, drive_at2, drive_cdev1, drive_cdev2,
|
||||||
drive_csus, drive_dap1, drive_dap2, drive_dap3, drive_dap4, drive_dbg,
|
drive_csus, drive_dap1, drive_dap2, drive_dap3, drive_dap4, drive_dbg,
|
||||||
|
|
|
@ -83,7 +83,7 @@ Valid values for pin and group names are:
|
||||||
drive groups:
|
drive groups:
|
||||||
|
|
||||||
These all support nvidia,pull-down-strength, nvidia,pull-up-strength,
|
These all support nvidia,pull-down-strength, nvidia,pull-up-strength,
|
||||||
nvidia,slew_rate-rising, nvidia,slew_rate-falling. Most but not all
|
nvidia,slew-rate-rising, nvidia,slew-rate-falling. Most but not all
|
||||||
support nvidia,high-speed-mode, nvidia,schmitt, nvidia,low-power-mode.
|
support nvidia,high-speed-mode, nvidia,schmitt, nvidia,low-power-mode.
|
||||||
|
|
||||||
ao1, ao2, at1, at2, at3, at4, at5, cdev1, cdev2, cec, crt, csus, dap1,
|
ao1, ao2, at1, at2, at3, at4, at5, cdev1, cdev2, cec, crt, csus, dap1,
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
AM33XX MUSB GLUE
|
AM33XX MUSB GLUE
|
||||||
- compatible : Should be "ti,musb-am33xx"
|
- compatible : Should be "ti,musb-am33xx"
|
||||||
|
- reg : offset and length of register sets, first usbss, then for musb instances
|
||||||
|
- interrupts : usbss, musb instance interrupts in order
|
||||||
- ti,hwmods : must be "usb_otg_hs"
|
- ti,hwmods : must be "usb_otg_hs"
|
||||||
- multipoint : Should be "1" indicating the musb controller supports
|
- multipoint : Should be "1" indicating the musb controller supports
|
||||||
multipoint. This is a MUSB configuration-specific setting.
|
multipoint. This is a MUSB configuration-specific setting.
|
||||||
|
@ -12,3 +14,22 @@ AM33XX MUSB GLUE
|
||||||
represents PERIPHERAL.
|
represents PERIPHERAL.
|
||||||
- power : Should be "250". This signifies the controller can supply upto
|
- power : Should be "250". This signifies the controller can supply upto
|
||||||
500mA when operating in host mode.
|
500mA when operating in host mode.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
usb@47400000 {
|
||||||
|
compatible = "ti,musb-am33xx";
|
||||||
|
reg = <0x47400000 0x1000 /* usbss */
|
||||||
|
0x47401000 0x800 /* musb instance 0 */
|
||||||
|
0x47401800 0x800>; /* musb instance 1 */
|
||||||
|
interrupts = <17 /* usbss */
|
||||||
|
18 /* musb instance 0 */
|
||||||
|
19>; /* musb instance 1 */
|
||||||
|
multipoint = <1>;
|
||||||
|
num-eps = <16>;
|
||||||
|
ram-bits = <12>;
|
||||||
|
port0-mode = <3>;
|
||||||
|
port1-mode = <3>;
|
||||||
|
power = <250>;
|
||||||
|
ti,hwmods = "usb_otg_hs";
|
||||||
|
};
|
||||||
|
|
|
@ -18,32 +18,40 @@
|
||||||
High level behavior (mixed):
|
High level behavior (mixed):
|
||||||
============================
|
============================
|
||||||
|
|
||||||
kernel(driver): calls request_firmware(&fw_entry, $FIRMWARE, device)
|
1), kernel(driver):
|
||||||
|
- calls request_firmware(&fw_entry, $FIRMWARE, device)
|
||||||
|
- kernel searchs the fimware image with name $FIRMWARE directly
|
||||||
|
in the below search path of root filesystem:
|
||||||
|
"/lib/firmware/updates/" UTS_RELEASE,
|
||||||
|
"/lib/firmware/updates",
|
||||||
|
"/lib/firmware/" UTS_RELEASE,
|
||||||
|
"/lib/firmware"
|
||||||
|
- If found, goto 7), else goto 2)
|
||||||
|
|
||||||
userspace:
|
2), userspace:
|
||||||
- /sys/class/firmware/xxx/{loading,data} appear.
|
- /sys/class/firmware/xxx/{loading,data} appear.
|
||||||
- hotplug gets called with a firmware identifier in $FIRMWARE
|
- hotplug gets called with a firmware identifier in $FIRMWARE
|
||||||
and the usual hotplug environment.
|
and the usual hotplug environment.
|
||||||
- hotplug: echo 1 > /sys/class/firmware/xxx/loading
|
- hotplug: echo 1 > /sys/class/firmware/xxx/loading
|
||||||
|
|
||||||
kernel: Discard any previous partial load.
|
3), kernel: Discard any previous partial load.
|
||||||
|
|
||||||
userspace:
|
4), userspace:
|
||||||
- hotplug: cat appropriate_firmware_image > \
|
- hotplug: cat appropriate_firmware_image > \
|
||||||
/sys/class/firmware/xxx/data
|
/sys/class/firmware/xxx/data
|
||||||
|
|
||||||
kernel: grows a buffer in PAGE_SIZE increments to hold the image as it
|
5), kernel: grows a buffer in PAGE_SIZE increments to hold the image as it
|
||||||
comes in.
|
comes in.
|
||||||
|
|
||||||
userspace:
|
6), userspace:
|
||||||
- hotplug: echo 0 > /sys/class/firmware/xxx/loading
|
- hotplug: echo 0 > /sys/class/firmware/xxx/loading
|
||||||
|
|
||||||
kernel: request_firmware() returns and the driver has the firmware
|
7), kernel: request_firmware() returns and the driver has the firmware
|
||||||
image in fw_entry->{data,size}. If something went wrong
|
image in fw_entry->{data,size}. If something went wrong
|
||||||
request_firmware() returns non-zero and fw_entry is set to
|
request_firmware() returns non-zero and fw_entry is set to
|
||||||
NULL.
|
NULL.
|
||||||
|
|
||||||
kernel(driver): Driver code calls release_firmware(fw_entry) releasing
|
8), kernel(driver): Driver code calls release_firmware(fw_entry) releasing
|
||||||
the firmware image and any related resource.
|
the firmware image and any related resource.
|
||||||
|
|
||||||
High level behavior (driver code):
|
High level behavior (driver code):
|
||||||
|
|
|
@ -10,7 +10,7 @@ Supported chips:
|
||||||
BIOS and Kernel Developer's Guide (BKDG) For AMD Family 15h Processors
|
BIOS and Kernel Developer's Guide (BKDG) For AMD Family 15h Processors
|
||||||
(not yet published)
|
(not yet published)
|
||||||
|
|
||||||
Author: Andreas Herrmann <andreas.herrmann3@amd.com>
|
Author: Andreas Herrmann <herrmann.der.user@googlemail.com>
|
||||||
|
|
||||||
Description
|
Description
|
||||||
-----------
|
-----------
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
Chinese translated version of Documentation/IRQ.txt
|
||||||
|
|
||||||
|
If you have any comment or update to the content, please contact the
|
||||||
|
original document maintainer directly. However, if you have a problem
|
||||||
|
communicating in English you can also ask the Chinese maintainer for
|
||||||
|
help. Contact the Chinese maintainer if this translation is outdated
|
||||||
|
or if there is a problem with the translation.
|
||||||
|
|
||||||
|
Maintainer: Eric W. Biederman <ebiederman@xmission.com>
|
||||||
|
Chinese maintainer: Fu Wei <tekkamanninja@gmail.com>
|
||||||
|
---------------------------------------------------------------------
|
||||||
|
Documentation/IRQ.txt 的中文翻译
|
||||||
|
|
||||||
|
如果想评论或更新本文的内容,请直接联系原文档的维护者。如果你使用英文
|
||||||
|
交流有困难的话,也可以向中文版维护者求助。如果本翻译更新不及时或者翻
|
||||||
|
译存在问题,请联系中文版维护者。
|
||||||
|
英文版维护者: Eric W. Biederman <ebiederman@xmission.com>
|
||||||
|
中文版维护者: 傅炜 Fu Wei <tekkamanninja@gmail.com>
|
||||||
|
中文版翻译者: 傅炜 Fu Wei <tekkamanninja@gmail.com>
|
||||||
|
中文版校译者: 傅炜 Fu Wei <tekkamanninja@gmail.com>
|
||||||
|
|
||||||
|
|
||||||
|
以下为正文
|
||||||
|
---------------------------------------------------------------------
|
||||||
|
何为 IRQ?
|
||||||
|
|
||||||
|
一个 IRQ 是来自某个设备的一个中断请求。目前,它们可以来自一个硬件引脚,
|
||||||
|
或来自一个数据包。多个设备可能连接到同个硬件引脚,从而共享一个 IRQ。
|
||||||
|
|
||||||
|
一个 IRQ 编号是用于告知硬件中断源的内核标识。通常情况下,这是一个
|
||||||
|
全局 irq_desc 数组的索引,但是除了在 linux/interrupt.h 中的实现,
|
||||||
|
具体的细节是体系结构特定的。
|
||||||
|
|
||||||
|
一个 IRQ 编号是设备上某个可能的中断源的枚举。通常情况下,枚举的编号是
|
||||||
|
该引脚在系统内中断控制器的所有输入引脚中的编号。对于 ISA 总线中的情况,
|
||||||
|
枚举的是在两个 i8259 中断控制器中 16 个输入引脚。
|
||||||
|
|
||||||
|
架构可以对 IRQ 编号指定额外的含义,在硬件涉及任何手工配置的情况下,
|
||||||
|
是被提倡的。ISA 的 IRQ 是一个分配这类额外含义的典型例子。
|
|
@ -0,0 +1,156 @@
|
||||||
|
Chinese translated version of Documentation/arm64/booting.txt
|
||||||
|
|
||||||
|
If you have any comment or update to the content, please contact the
|
||||||
|
original document maintainer directly. However, if you have a problem
|
||||||
|
communicating in English you can also ask the Chinese maintainer for
|
||||||
|
help. Contact the Chinese maintainer if this translation is outdated
|
||||||
|
or if there is a problem with the translation.
|
||||||
|
|
||||||
|
Maintainer: Will Deacon <will.deacon@arm.com>
|
||||||
|
Chinese maintainer: Fu Wei <tekkamanninja@gmail.com>
|
||||||
|
---------------------------------------------------------------------
|
||||||
|
Documentation/arm64/booting.txt 的中文翻译
|
||||||
|
|
||||||
|
如果想评论或更新本文的内容,请直接联系原文档的维护者。如果你使用英文
|
||||||
|
交流有困难的话,也可以向中文版维护者求助。如果本翻译更新不及时或者翻
|
||||||
|
译存在问题,请联系中文版维护者。
|
||||||
|
|
||||||
|
英文版维护者: Will Deacon <will.deacon@arm.com>
|
||||||
|
中文版维护者: 傅炜 Fu Wei <tekkamanninja@gmail.com>
|
||||||
|
中文版翻译者: 傅炜 Fu Wei <tekkamanninja@gmail.com>
|
||||||
|
中文版校译者: 傅炜 Fu Wei <tekkamanninja@gmail.com>
|
||||||
|
|
||||||
|
以下为正文
|
||||||
|
---------------------------------------------------------------------
|
||||||
|
启动 AArch64 Linux
|
||||||
|
==================
|
||||||
|
|
||||||
|
作者: Will Deacon <will.deacon@arm.com>
|
||||||
|
日期: 2012 年 09 月 07 日
|
||||||
|
|
||||||
|
本文档基于 Russell King 的 ARM 启动文档,且适用于所有公开发布的
|
||||||
|
AArch64 Linux 内核代码。
|
||||||
|
|
||||||
|
AArch64 异常模型由多个异常级别(EL0 - EL3)组成,对于 EL0 和 EL1
|
||||||
|
异常级有对应的安全和非安全模式。EL2 是系统管理级,且仅存在于
|
||||||
|
非安全模式下。EL3 是最高特权级,且仅存在于安全模式下。
|
||||||
|
|
||||||
|
基于本文档的目的,我们将简单地使用‘引导装载程序’(‘boot loader’)
|
||||||
|
这个术语来定义在将控制权交给 Linux 内核前 CPU 上执行的所有软件。
|
||||||
|
这可能包含安全监控和系统管理代码,或者它可能只是一些用于准备最小启动
|
||||||
|
环境的指令。
|
||||||
|
|
||||||
|
基本上,引导装载程序(至少)应实现以下操作:
|
||||||
|
|
||||||
|
1、设置和初始化 RAM
|
||||||
|
2、设置设备树数据
|
||||||
|
3、解压内核映像
|
||||||
|
4、调用内核映像
|
||||||
|
|
||||||
|
|
||||||
|
1、设置和初始化 RAM
|
||||||
|
-----------------
|
||||||
|
|
||||||
|
必要性: 强制
|
||||||
|
|
||||||
|
引导装载程序应该找到并初始化系统中所有内核用于保持系统变量数据的 RAM。
|
||||||
|
这个操作的执行是设备依赖的。(它可能使用内部算法来自动定位和计算所有
|
||||||
|
RAM,或可能使用对这个设备已知的 RAM 信息,还可能使用任何引导装载程序
|
||||||
|
设计者想到的匹配方法。)
|
||||||
|
|
||||||
|
|
||||||
|
2、设置设备树数据
|
||||||
|
---------------
|
||||||
|
|
||||||
|
必要性: 强制
|
||||||
|
|
||||||
|
设备树数据块(dtb)大小必须不大于 2 MB,且位于从内核映像起始算起第一个
|
||||||
|
512MB 内的 2MB 边界上。这使得内核可以通过初始页表中的单个节描述符来
|
||||||
|
映射此数据块。
|
||||||
|
|
||||||
|
|
||||||
|
3、解压内核映像
|
||||||
|
-------------
|
||||||
|
|
||||||
|
必要性: 可选
|
||||||
|
|
||||||
|
AArch64 内核当前没有提供自解压代码,因此如果使用了压缩内核映像文件
|
||||||
|
(比如 Image.gz),则需要通过引导装载程序(使用 gzip 等)来进行解压。
|
||||||
|
若引导装载程序没有实现这个需求,就要使用非压缩内核映像文件。
|
||||||
|
|
||||||
|
|
||||||
|
4、调用内核映像
|
||||||
|
-------------
|
||||||
|
|
||||||
|
必要性: 强制
|
||||||
|
|
||||||
|
已解压的内核映像包含一个 32 字节的头,内容如下:
|
||||||
|
|
||||||
|
u32 magic = 0x14000008; /* 跳转到 stext, 小端 */
|
||||||
|
u32 res0 = 0; /* 保留 */
|
||||||
|
u64 text_offset; /* 映像装载偏移 */
|
||||||
|
u64 res1 = 0; /* 保留 */
|
||||||
|
u64 res2 = 0; /* 保留 */
|
||||||
|
|
||||||
|
映像必须位于系统 RAM 起始处的特定偏移(当前是 0x80000)。系统 RAM
|
||||||
|
的起始地址必须是以 2MB 对齐的。
|
||||||
|
|
||||||
|
在跳转入内核前,必须符合以下状态:
|
||||||
|
|
||||||
|
- 停止所有 DMA 设备,这样内存数据就不会因为虚假网络包或磁盘数据而
|
||||||
|
被破坏。这可能可以节省你许多的调试时间。
|
||||||
|
|
||||||
|
- 主 CPU 通用寄存器设置
|
||||||
|
x0 = 系统 RAM 中设备树数据块(dtb)的物理地址。
|
||||||
|
x1 = 0 (保留,将来可能使用)
|
||||||
|
x2 = 0 (保留,将来可能使用)
|
||||||
|
x3 = 0 (保留,将来可能使用)
|
||||||
|
|
||||||
|
- CPU 模式
|
||||||
|
所有形式的中断必须在 PSTATE.DAIF 中被屏蔽(Debug、SError、IRQ
|
||||||
|
和 FIQ)。
|
||||||
|
CPU 必须处于 EL2(推荐,可访问虚拟化扩展)或非安全 EL1 模式下。
|
||||||
|
|
||||||
|
- 高速缓存、MMU
|
||||||
|
MMU 必须关闭。
|
||||||
|
指令缓存开启或关闭都可以。
|
||||||
|
数据缓存必须关闭且无效。
|
||||||
|
外部高速缓存(如果存在)必须配置并禁用。
|
||||||
|
|
||||||
|
- 架构计时器
|
||||||
|
CNTFRQ 必须设定为计时器的频率。
|
||||||
|
如果在 EL1 模式下进入内核,则 CNTHCTL_EL2 中的 EL1PCTEN (bit 0)
|
||||||
|
必须置位。
|
||||||
|
|
||||||
|
- 一致性
|
||||||
|
通过内核启动的所有 CPU 在内核入口地址上必须处于相同的一致性域中。
|
||||||
|
这可能要根据具体实现来定义初始化过程,以使能每个CPU上对维护操作的
|
||||||
|
接收。
|
||||||
|
|
||||||
|
- 系统寄存器
|
||||||
|
在进入内核映像的异常级中,所有构架中可写的系统寄存器必须通过软件
|
||||||
|
在一个更高的异常级别下初始化,以防止在 未知 状态下运行。
|
||||||
|
|
||||||
|
引导装载程序必须在每个 CPU 处于以下状态时跳入内核入口:
|
||||||
|
|
||||||
|
- 主 CPU 必须直接跳入内核映像的第一条指令。通过此 CPU 传递的设备树
|
||||||
|
数据块必须在每个 CPU 节点中包含以下内容:
|
||||||
|
|
||||||
|
1、‘enable-method’属性。目前,此字段支持的值仅为字符串“spin-table”。
|
||||||
|
|
||||||
|
2、‘cpu-release-addr’标识一个 64-bit、初始化为零的内存位置。
|
||||||
|
|
||||||
|
引导装载程序必须生成这些设备树属性,并在跳入内核入口之前将其插入
|
||||||
|
数据块。
|
||||||
|
|
||||||
|
- 任何辅助 CPU 必须在内存保留区(通过设备树中的 /memreserve/ 域传递
|
||||||
|
给内核)中自旋于内核之外,轮询它们的 cpu-release-addr 位置(必须
|
||||||
|
包含在保留区中)。可通过插入 wfe 指令来降低忙循环开销,而主 CPU 将
|
||||||
|
发出 sev 指令。当对 cpu-release-addr 所指位置的读取操作返回非零值
|
||||||
|
时,CPU 必须直接跳入此值所指向的地址。
|
||||||
|
|
||||||
|
- 辅助 CPU 通用寄存器设置
|
||||||
|
x0 = 0 (保留,将来可能使用)
|
||||||
|
x1 = 0 (保留,将来可能使用)
|
||||||
|
x2 = 0 (保留,将来可能使用)
|
||||||
|
x3 = 0 (保留,将来可能使用)
|
|
@ -0,0 +1,93 @@
|
||||||
|
Chinese translated version of Documentation/arm64/memory.txt
|
||||||
|
|
||||||
|
If you have any comment or update to the content, please contact the
|
||||||
|
original document maintainer directly. However, if you have a problem
|
||||||
|
communicating in English you can also ask the Chinese maintainer for
|
||||||
|
help. Contact the Chinese maintainer if this translation is outdated
|
||||||
|
or if there is a problem with the translation.
|
||||||
|
|
||||||
|
Maintainer: Catalin Marinas <catalin.marinas@arm.com>
|
||||||
|
Chinese maintainer: Fu Wei <tekkamanninja@gmail.com>
|
||||||
|
---------------------------------------------------------------------
|
||||||
|
Documentation/arm64/memory.txt 的中文翻译
|
||||||
|
|
||||||
|
如果想评论或更新本文的内容,请直接联系原文档的维护者。如果你使用英文
|
||||||
|
交流有困难的话,也可以向中文版维护者求助。如果本翻译更新不及时或者翻
|
||||||
|
译存在问题,请联系中文版维护者。
|
||||||
|
|
||||||
|
英文版维护者: Catalin Marinas <catalin.marinas@arm.com>
|
||||||
|
中文版维护者: 傅炜 Fu Wei <tekkamanninja@gmail.com>
|
||||||
|
中文版翻译者: 傅炜 Fu Wei <tekkamanninja@gmail.com>
|
||||||
|
中文版校译者: 傅炜 Fu Wei <tekkamanninja@gmail.com>
|
||||||
|
|
||||||
|
以下为正文
|
||||||
|
---------------------------------------------------------------------
|
||||||
|
Linux 在 AArch64 中的内存布局
|
||||||
|
===========================
|
||||||
|
|
||||||
|
作者: Catalin Marinas <catalin.marinas@arm.com>
|
||||||
|
日期: 2012 年 02 月 20 日
|
||||||
|
|
||||||
|
本文档描述 AArch64 Linux 内核所使用的虚拟内存布局。此构架可以实现
|
||||||
|
页大小为 4KB 的 4 级转换表和页大小为 64KB 的 3 级转换表。
|
||||||
|
|
||||||
|
AArch64 Linux 使用页大小为 4KB 的 3 级转换表配置,对于用户和内核
|
||||||
|
都有 39-bit (512GB) 的虚拟地址空间。对于页大小为 64KB的配置,仅
|
||||||
|
使用 2 级转换表,但内存布局相同。
|
||||||
|
|
||||||
|
用户地址空间的 63:39 位为 0,而内核地址空间的相应位为 1。TTBRx 的
|
||||||
|
选择由虚拟地址的 63 位给出。swapper_pg_dir 仅包含内核(全局)映射,
|
||||||
|
而用户 pgd 仅包含用户(非全局)映射。swapper_pgd_dir 地址被写入
|
||||||
|
TTBR1 中,且从不写入 TTBR0。
|
||||||
|
|
||||||
|
|
||||||
|
AArch64 Linux 内存布局:
|
||||||
|
|
||||||
|
起始地址 结束地址 大小 用途
|
||||||
|
-----------------------------------------------------------------------
|
||||||
|
0000000000000000 0000007fffffffff 512GB 用户空间
|
||||||
|
|
||||||
|
ffffff8000000000 ffffffbbfffcffff ~240GB vmalloc
|
||||||
|
|
||||||
|
ffffffbbfffd0000 ffffffbcfffdffff 64KB [防护页]
|
||||||
|
|
||||||
|
ffffffbbfffe0000 ffffffbcfffeffff 64KB PCI I/O 空间
|
||||||
|
|
||||||
|
ffffffbbffff0000 ffffffbcffffffff 64KB [防护页]
|
||||||
|
|
||||||
|
ffffffbc00000000 ffffffbdffffffff 8GB vmemmap
|
||||||
|
|
||||||
|
ffffffbe00000000 ffffffbffbffffff ~8GB [防护页,未来用于 vmmemap]
|
||||||
|
|
||||||
|
ffffffbffc000000 ffffffbfffffffff 64MB 模块
|
||||||
|
|
||||||
|
ffffffc000000000 ffffffffffffffff 256GB 内存空间
|
||||||
|
|
||||||
|
|
||||||
|
4KB 页大小的转换表查找:
|
||||||
|
|
||||||
|
+--------+--------+--------+--------+--------+--------+--------+--------+
|
||||||
|
|63 56|55 48|47 40|39 32|31 24|23 16|15 8|7 0|
|
||||||
|
+--------+--------+--------+--------+--------+--------+--------+--------+
|
||||||
|
| | | | | |
|
||||||
|
| | | | | v
|
||||||
|
| | | | | [11:0] 页内偏移
|
||||||
|
| | | | +-> [20:12] L3 索引
|
||||||
|
| | | +-----------> [29:21] L2 索引
|
||||||
|
| | +---------------------> [38:30] L1 索引
|
||||||
|
| +-------------------------------> [47:39] L0 索引 (未使用)
|
||||||
|
+-------------------------------------------------> [63] TTBR0/1
|
||||||
|
|
||||||
|
|
||||||
|
64KB 页大小的转换表查找:
|
||||||
|
|
||||||
|
+--------+--------+--------+--------+--------+--------+--------+--------+
|
||||||
|
|63 56|55 48|47 40|39 32|31 24|23 16|15 8|7 0|
|
||||||
|
+--------+--------+--------+--------+--------+--------+--------+--------+
|
||||||
|
| | | | |
|
||||||
|
| | | | v
|
||||||
|
| | | | [15:0] 页内偏移
|
||||||
|
| | | +----------> [28:16] L3 索引
|
||||||
|
| | +--------------------------> [41:29] L2 索引 (仅使用 38:29 )
|
||||||
|
| +-------------------------------> [47:42] L1 索引 (未使用)
|
||||||
|
+-------------------------------------------------> [63] TTBR0/1
|
21
MAINTAINERS
21
MAINTAINERS
|
@ -503,7 +503,7 @@ F: include/linux/altera_uart.h
|
||||||
F: include/linux/altera_jtaguart.h
|
F: include/linux/altera_jtaguart.h
|
||||||
|
|
||||||
AMD FAM15H PROCESSOR POWER MONITORING DRIVER
|
AMD FAM15H PROCESSOR POWER MONITORING DRIVER
|
||||||
M: Andreas Herrmann <andreas.herrmann3@amd.com>
|
M: Andreas Herrmann <herrmann.der.user@googlemail.com>
|
||||||
L: lm-sensors@lm-sensors.org
|
L: lm-sensors@lm-sensors.org
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: Documentation/hwmon/fam15h_power
|
F: Documentation/hwmon/fam15h_power
|
||||||
|
@ -637,6 +637,13 @@ W: http://www.arm.linux.org.uk/
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: arch/arm/
|
F: arch/arm/
|
||||||
|
|
||||||
|
ARM SUB-ARCHITECTURES
|
||||||
|
L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
|
||||||
|
S: MAINTAINED
|
||||||
|
F: arch/arm/mach-*/
|
||||||
|
F: arch/arm/plat-*/
|
||||||
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
|
||||||
|
|
||||||
ARM PRIMECELL AACI PL041 DRIVER
|
ARM PRIMECELL AACI PL041 DRIVER
|
||||||
M: Russell King <linux@arm.linux.org.uk>
|
M: Russell King <linux@arm.linux.org.uk>
|
||||||
S: Maintained
|
S: Maintained
|
||||||
|
@ -2500,6 +2507,7 @@ M: Joonyoung Shim <jy0922.shim@samsung.com>
|
||||||
M: Seung-Woo Kim <sw0312.kim@samsung.com>
|
M: Seung-Woo Kim <sw0312.kim@samsung.com>
|
||||||
M: Kyungmin Park <kyungmin.park@samsung.com>
|
M: Kyungmin Park <kyungmin.park@samsung.com>
|
||||||
L: dri-devel@lists.freedesktop.org
|
L: dri-devel@lists.freedesktop.org
|
||||||
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
|
||||||
S: Supported
|
S: Supported
|
||||||
F: drivers/gpu/drm/exynos
|
F: drivers/gpu/drm/exynos
|
||||||
F: include/drm/exynos*
|
F: include/drm/exynos*
|
||||||
|
@ -2802,6 +2810,7 @@ F: sound/usb/misc/ua101.c
|
||||||
EXTENSIBLE FIRMWARE INTERFACE (EFI)
|
EXTENSIBLE FIRMWARE INTERFACE (EFI)
|
||||||
M: Matt Fleming <matt.fleming@intel.com>
|
M: Matt Fleming <matt.fleming@intel.com>
|
||||||
L: linux-efi@vger.kernel.org
|
L: linux-efi@vger.kernel.org
|
||||||
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: Documentation/x86/efi-stub.txt
|
F: Documentation/x86/efi-stub.txt
|
||||||
F: arch/ia64/kernel/efi.c
|
F: arch/ia64/kernel/efi.c
|
||||||
|
@ -5061,7 +5070,13 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
|
||||||
S: Odd Fixes
|
S: Odd Fixes
|
||||||
F: drivers/net/
|
F: drivers/net/
|
||||||
F: include/linux/if_*
|
F: include/linux/if_*
|
||||||
F: include/linux/*device.h
|
F: include/linux/netdevice.h
|
||||||
|
F: include/linux/arcdevice.h
|
||||||
|
F: include/linux/etherdevice.h
|
||||||
|
F: include/linux/fcdevice.h
|
||||||
|
F: include/linux/fddidevice.h
|
||||||
|
F: include/linux/hippidevice.h
|
||||||
|
F: include/linux/inetdevice.h
|
||||||
|
|
||||||
NETXEN (1/10) GbE SUPPORT
|
NETXEN (1/10) GbE SUPPORT
|
||||||
M: Sony Chacko <sony.chacko@qlogic.com>
|
M: Sony Chacko <sony.chacko@qlogic.com>
|
||||||
|
@ -5633,7 +5648,7 @@ S: Maintained
|
||||||
F: drivers/pinctrl/spear/
|
F: drivers/pinctrl/spear/
|
||||||
|
|
||||||
PKTCDVD DRIVER
|
PKTCDVD DRIVER
|
||||||
M: Peter Osterlund <petero2@telia.com>
|
M: Jiri Kosina <jkosina@suse.cz>
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: drivers/block/pktcdvd.c
|
F: drivers/block/pktcdvd.c
|
||||||
F: include/linux/pktcdvd.h
|
F: include/linux/pktcdvd.h
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,7 +1,7 @@
|
||||||
VERSION = 3
|
VERSION = 3
|
||||||
PATCHLEVEL = 7
|
PATCHLEVEL = 7
|
||||||
SUBLEVEL = 0
|
SUBLEVEL = 0
|
||||||
EXTRAVERSION = -rc2
|
EXTRAVERSION = -rc4
|
||||||
NAME = Terrified Chipmunk
|
NAME = Terrified Chipmunk
|
||||||
|
|
||||||
# *DOCUMENTATION*
|
# *DOCUMENTATION*
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
#include <asm/types.h>
|
#include <asm/types.h>
|
||||||
#include <asm/hwrpb.h>
|
#include <asm/hwrpb.h>
|
||||||
|
#include <asm/sysinfo.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
|
@ -21,6 +22,7 @@ struct thread_info {
|
||||||
mm_segment_t addr_limit; /* thread address space */
|
mm_segment_t addr_limit; /* thread address space */
|
||||||
unsigned cpu; /* current CPU */
|
unsigned cpu; /* current CPU */
|
||||||
int preempt_count; /* 0 => preemptable, <0 => BUG */
|
int preempt_count; /* 0 => preemptable, <0 => BUG */
|
||||||
|
unsigned int status; /* thread-synchronous flags */
|
||||||
|
|
||||||
int bpt_nsaved;
|
int bpt_nsaved;
|
||||||
unsigned long bpt_addr[2]; /* breakpoint handling */
|
unsigned long bpt_addr[2]; /* breakpoint handling */
|
||||||
|
@ -63,8 +65,6 @@ register struct thread_info *__current_thread_info __asm__("$8");
|
||||||
* - these are process state flags and used from assembly
|
* - these are process state flags and used from assembly
|
||||||
* - pending work-to-be-done flags come first and must be assigned to be
|
* - pending work-to-be-done flags come first and must be assigned to be
|
||||||
* within bits 0 to 7 to fit in and immediate operand.
|
* within bits 0 to 7 to fit in and immediate operand.
|
||||||
* - ALPHA_UAC_SHIFT below must be kept consistent with the unaligned
|
|
||||||
* control flags.
|
|
||||||
*
|
*
|
||||||
* TIF_SYSCALL_TRACE is known to be 0 via blbs.
|
* TIF_SYSCALL_TRACE is known to be 0 via blbs.
|
||||||
*/
|
*/
|
||||||
|
@ -72,18 +72,12 @@ register struct thread_info *__current_thread_info __asm__("$8");
|
||||||
#define TIF_NOTIFY_RESUME 1 /* callback before returning to user */
|
#define TIF_NOTIFY_RESUME 1 /* callback before returning to user */
|
||||||
#define TIF_SIGPENDING 2 /* signal pending */
|
#define TIF_SIGPENDING 2 /* signal pending */
|
||||||
#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
|
#define TIF_NEED_RESCHED 3 /* rescheduling necessary */
|
||||||
#define TIF_POLLING_NRFLAG 8 /* poll_idle is polling NEED_RESCHED */
|
|
||||||
#define TIF_DIE_IF_KERNEL 9 /* dik recursion lock */
|
#define TIF_DIE_IF_KERNEL 9 /* dik recursion lock */
|
||||||
#define TIF_UAC_NOPRINT 10 /* ! Preserve sequence of following */
|
|
||||||
#define TIF_UAC_NOFIX 11 /* ! flags as they match */
|
|
||||||
#define TIF_UAC_SIGBUS 12 /* ! userspace part of 'osf_sysinfo' */
|
|
||||||
#define TIF_MEMDIE 13 /* is terminating due to OOM killer */
|
#define TIF_MEMDIE 13 /* is terminating due to OOM killer */
|
||||||
#define TIF_RESTORE_SIGMASK 14 /* restore signal mask in do_signal */
|
|
||||||
|
|
||||||
#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
|
#define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE)
|
||||||
#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
|
#define _TIF_SIGPENDING (1<<TIF_SIGPENDING)
|
||||||
#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
|
#define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED)
|
||||||
#define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG)
|
|
||||||
#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
|
#define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME)
|
||||||
|
|
||||||
/* Work to do on interrupt/exception return. */
|
/* Work to do on interrupt/exception return. */
|
||||||
|
@ -94,29 +88,63 @@ register struct thread_info *__current_thread_info __asm__("$8");
|
||||||
#define _TIF_ALLWORK_MASK (_TIF_WORK_MASK \
|
#define _TIF_ALLWORK_MASK (_TIF_WORK_MASK \
|
||||||
| _TIF_SYSCALL_TRACE)
|
| _TIF_SYSCALL_TRACE)
|
||||||
|
|
||||||
#define ALPHA_UAC_SHIFT TIF_UAC_NOPRINT
|
#define TS_UAC_NOPRINT 0x0001 /* ! Preserve the following three */
|
||||||
#define ALPHA_UAC_MASK (1 << TIF_UAC_NOPRINT | 1 << TIF_UAC_NOFIX | \
|
#define TS_UAC_NOFIX 0x0002 /* ! flags as they match */
|
||||||
1 << TIF_UAC_SIGBUS)
|
#define TS_UAC_SIGBUS 0x0004 /* ! userspace part of 'osf_sysinfo' */
|
||||||
|
#define TS_RESTORE_SIGMASK 0x0008 /* restore signal mask in do_signal() */
|
||||||
|
#define TS_POLLING 0x0010 /* idle task polling need_resched,
|
||||||
|
skip sending interrupt */
|
||||||
|
|
||||||
#define SET_UNALIGN_CTL(task,value) ({ \
|
#define tsk_is_polling(t) (task_thread_info(t)->status & TS_POLLING)
|
||||||
task_thread_info(task)->flags = ((task_thread_info(task)->flags & \
|
|
||||||
~ALPHA_UAC_MASK) \
|
#ifndef __ASSEMBLY__
|
||||||
| (((value) << ALPHA_UAC_SHIFT) & (1<<TIF_UAC_NOPRINT))\
|
#define HAVE_SET_RESTORE_SIGMASK 1
|
||||||
| (((value) << (ALPHA_UAC_SHIFT + 1)) & (1<<TIF_UAC_SIGBUS)) \
|
static inline void set_restore_sigmask(void)
|
||||||
| (((value) << (ALPHA_UAC_SHIFT - 1)) & (1<<TIF_UAC_NOFIX)));\
|
{
|
||||||
|
struct thread_info *ti = current_thread_info();
|
||||||
|
ti->status |= TS_RESTORE_SIGMASK;
|
||||||
|
WARN_ON(!test_bit(TIF_SIGPENDING, (unsigned long *)&ti->flags));
|
||||||
|
}
|
||||||
|
static inline void clear_restore_sigmask(void)
|
||||||
|
{
|
||||||
|
current_thread_info()->status &= ~TS_RESTORE_SIGMASK;
|
||||||
|
}
|
||||||
|
static inline bool test_restore_sigmask(void)
|
||||||
|
{
|
||||||
|
return current_thread_info()->status & TS_RESTORE_SIGMASK;
|
||||||
|
}
|
||||||
|
static inline bool test_and_clear_restore_sigmask(void)
|
||||||
|
{
|
||||||
|
struct thread_info *ti = current_thread_info();
|
||||||
|
if (!(ti->status & TS_RESTORE_SIGMASK))
|
||||||
|
return false;
|
||||||
|
ti->status &= ~TS_RESTORE_SIGMASK;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define SET_UNALIGN_CTL(task,value) ({ \
|
||||||
|
__u32 status = task_thread_info(task)->status & ~UAC_BITMASK; \
|
||||||
|
if (value & PR_UNALIGN_NOPRINT) \
|
||||||
|
status |= TS_UAC_NOPRINT; \
|
||||||
|
if (value & PR_UNALIGN_SIGBUS) \
|
||||||
|
status |= TS_UAC_SIGBUS; \
|
||||||
|
if (value & 4) /* alpha-specific */ \
|
||||||
|
status |= TS_UAC_NOFIX; \
|
||||||
|
task_thread_info(task)->status = status; \
|
||||||
0; })
|
0; })
|
||||||
|
|
||||||
#define GET_UNALIGN_CTL(task,value) ({ \
|
#define GET_UNALIGN_CTL(task,value) ({ \
|
||||||
put_user((task_thread_info(task)->flags & (1 << TIF_UAC_NOPRINT))\
|
__u32 status = task_thread_info(task)->status & ~UAC_BITMASK; \
|
||||||
>> ALPHA_UAC_SHIFT \
|
__u32 res = 0; \
|
||||||
| (task_thread_info(task)->flags & (1 << TIF_UAC_SIGBUS))\
|
if (status & TS_UAC_NOPRINT) \
|
||||||
>> (ALPHA_UAC_SHIFT + 1) \
|
res |= PR_UNALIGN_NOPRINT; \
|
||||||
| (task_thread_info(task)->flags & (1 << TIF_UAC_NOFIX))\
|
if (status & TS_UAC_SIGBUS) \
|
||||||
>> (ALPHA_UAC_SHIFT - 1), \
|
res |= PR_UNALIGN_SIGBUS; \
|
||||||
(int __user *)(value)); \
|
if (status & TS_UAC_NOFIX) \
|
||||||
|
res |= 4; \
|
||||||
|
put_user(res, (int __user *)(value)); \
|
||||||
})
|
})
|
||||||
|
|
||||||
#define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG)
|
|
||||||
|
|
||||||
#endif /* __KERNEL__ */
|
#endif /* __KERNEL__ */
|
||||||
#endif /* _ALPHA_THREAD_INFO_H */
|
#endif /* _ALPHA_THREAD_INFO_H */
|
||||||
|
|
|
@ -793,8 +793,7 @@ SYSCALL_DEFINE5(osf_getsysinfo, unsigned long, op, void __user *, buffer,
|
||||||
case GSI_UACPROC:
|
case GSI_UACPROC:
|
||||||
if (nbytes < sizeof(unsigned int))
|
if (nbytes < sizeof(unsigned int))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
w = (current_thread_info()->flags >> ALPHA_UAC_SHIFT) &
|
w = current_thread_info()->status & UAC_BITMASK;
|
||||||
UAC_BITMASK;
|
|
||||||
if (put_user(w, (unsigned int __user *)buffer))
|
if (put_user(w, (unsigned int __user *)buffer))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
return 1;
|
return 1;
|
||||||
|
@ -904,24 +903,20 @@ SYSCALL_DEFINE5(osf_setsysinfo, unsigned long, op, void __user *, buffer,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SSI_NVPAIRS: {
|
case SSI_NVPAIRS: {
|
||||||
unsigned long v, w, i;
|
unsigned __user *p = buffer;
|
||||||
unsigned int old, new;
|
unsigned i;
|
||||||
|
|
||||||
for (i = 0; i < nbytes; ++i) {
|
for (i = 0, p = buffer; i < nbytes; ++i, p += 2) {
|
||||||
|
unsigned v, w, status;
|
||||||
|
|
||||||
if (get_user(v, 2*i + (unsigned int __user *)buffer))
|
if (get_user(v, p) || get_user(w, p + 1))
|
||||||
return -EFAULT;
|
|
||||||
if (get_user(w, 2*i + 1 + (unsigned int __user *)buffer))
|
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
switch (v) {
|
switch (v) {
|
||||||
case SSIN_UACPROC:
|
case SSIN_UACPROC:
|
||||||
again:
|
w &= UAC_BITMASK;
|
||||||
old = current_thread_info()->flags;
|
status = current_thread_info()->status;
|
||||||
new = old & ~(UAC_BITMASK << ALPHA_UAC_SHIFT);
|
status = (status & ~UAC_BITMASK) | w;
|
||||||
new = new | (w & UAC_BITMASK) << ALPHA_UAC_SHIFT;
|
current_thread_info()->status = status;
|
||||||
if (cmpxchg(¤t_thread_info()->flags,
|
|
||||||
old, new) != old)
|
|
||||||
goto again;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -49,7 +49,7 @@ EXPORT_SYMBOL(pm_power_off);
|
||||||
void
|
void
|
||||||
cpu_idle(void)
|
cpu_idle(void)
|
||||||
{
|
{
|
||||||
set_thread_flag(TIF_POLLING_NRFLAG);
|
current_thread_info()->status |= TS_POLLING;
|
||||||
|
|
||||||
while (1) {
|
while (1) {
|
||||||
/* FIXME -- EV6 and LCA45 know how to power down
|
/* FIXME -- EV6 and LCA45 know how to power down
|
||||||
|
|
|
@ -780,17 +780,17 @@ do_entUnaUser(void __user * va, unsigned long opcode,
|
||||||
/* Check the UAC bits to decide what the user wants us to do
|
/* Check the UAC bits to decide what the user wants us to do
|
||||||
with the unaliged access. */
|
with the unaliged access. */
|
||||||
|
|
||||||
if (!test_thread_flag (TIF_UAC_NOPRINT)) {
|
if (!(current_thread_info()->status & TS_UAC_NOPRINT)) {
|
||||||
if (__ratelimit(&ratelimit)) {
|
if (__ratelimit(&ratelimit)) {
|
||||||
printk("%s(%d): unaligned trap at %016lx: %p %lx %ld\n",
|
printk("%s(%d): unaligned trap at %016lx: %p %lx %ld\n",
|
||||||
current->comm, task_pid_nr(current),
|
current->comm, task_pid_nr(current),
|
||||||
regs->pc - 4, va, opcode, reg);
|
regs->pc - 4, va, opcode, reg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (test_thread_flag (TIF_UAC_SIGBUS))
|
if ((current_thread_info()->status & TS_UAC_SIGBUS))
|
||||||
goto give_sigbus;
|
goto give_sigbus;
|
||||||
/* Not sure why you'd want to use this, but... */
|
/* Not sure why you'd want to use this, but... */
|
||||||
if (test_thread_flag (TIF_UAC_NOFIX))
|
if ((current_thread_info()->status & TS_UAC_NOFIX))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* Don't bother reading ds in the access check since we already
|
/* Don't bother reading ds in the access check since we already
|
||||||
|
|
|
@ -1602,8 +1602,8 @@ config NR_CPUS
|
||||||
default "4"
|
default "4"
|
||||||
|
|
||||||
config HOTPLUG_CPU
|
config HOTPLUG_CPU
|
||||||
bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
|
bool "Support for hot-pluggable CPUs"
|
||||||
depends on SMP && HOTPLUG && EXPERIMENTAL
|
depends on SMP && HOTPLUG
|
||||||
help
|
help
|
||||||
Say Y here to experiment with turning CPUs off and on. CPUs
|
Say Y here to experiment with turning CPUs off and on. CPUs
|
||||||
can be controlled through /sys/devices/system/cpu.
|
can be controlled through /sys/devices/system/cpu.
|
||||||
|
@ -1644,8 +1644,8 @@ config HZ
|
||||||
default 100
|
default 100
|
||||||
|
|
||||||
config THUMB2_KERNEL
|
config THUMB2_KERNEL
|
||||||
bool "Compile the kernel in Thumb-2 mode (EXPERIMENTAL)"
|
bool "Compile the kernel in Thumb-2 mode"
|
||||||
depends on CPU_V7 && !CPU_V6 && !CPU_V6K && EXPERIMENTAL
|
depends on CPU_V7 && !CPU_V6 && !CPU_V6K
|
||||||
select AEABI
|
select AEABI
|
||||||
select ARM_ASM_UNIFIED
|
select ARM_ASM_UNIFIED
|
||||||
select ARM_UNWIND
|
select ARM_UNWIND
|
||||||
|
@ -1849,6 +1849,7 @@ config XEN_DOM0
|
||||||
config XEN
|
config XEN
|
||||||
bool "Xen guest support on ARM (EXPERIMENTAL)"
|
bool "Xen guest support on ARM (EXPERIMENTAL)"
|
||||||
depends on EXPERIMENTAL && ARM && OF
|
depends on EXPERIMENTAL && ARM && OF
|
||||||
|
depends on CPU_V7 && !CPU_V6
|
||||||
help
|
help
|
||||||
Say Y if you want to run Linux in a Virtual Machine on Xen on ARM.
|
Say Y if you want to run Linux in a Virtual Machine on Xen on ARM.
|
||||||
|
|
||||||
|
|
|
@ -21,8 +21,6 @@ endif
|
||||||
OBJCOPYFLAGS :=-O binary -R .comment -S
|
OBJCOPYFLAGS :=-O binary -R .comment -S
|
||||||
GZFLAGS :=-9
|
GZFLAGS :=-9
|
||||||
#KBUILD_CFLAGS +=-pipe
|
#KBUILD_CFLAGS +=-pipe
|
||||||
# Explicitly specifiy 32-bit ARM ISA since toolchain default can be -mthumb:
|
|
||||||
KBUILD_CFLAGS +=$(call cc-option,-marm,)
|
|
||||||
|
|
||||||
# Never generate .eh_frame
|
# Never generate .eh_frame
|
||||||
KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
|
KBUILD_CFLAGS += $(call cc-option,-fno-dwarf2-cfi-asm)
|
||||||
|
@ -105,17 +103,20 @@ endif
|
||||||
ifeq ($(CONFIG_THUMB2_KERNEL),y)
|
ifeq ($(CONFIG_THUMB2_KERNEL),y)
|
||||||
AFLAGS_AUTOIT :=$(call as-option,-Wa$(comma)-mimplicit-it=always,-Wa$(comma)-mauto-it)
|
AFLAGS_AUTOIT :=$(call as-option,-Wa$(comma)-mimplicit-it=always,-Wa$(comma)-mauto-it)
|
||||||
AFLAGS_NOWARN :=$(call as-option,-Wa$(comma)-mno-warn-deprecated,-Wa$(comma)-W)
|
AFLAGS_NOWARN :=$(call as-option,-Wa$(comma)-mno-warn-deprecated,-Wa$(comma)-W)
|
||||||
CFLAGS_THUMB2 :=-mthumb $(AFLAGS_AUTOIT) $(AFLAGS_NOWARN)
|
CFLAGS_ISA :=-mthumb $(AFLAGS_AUTOIT) $(AFLAGS_NOWARN)
|
||||||
AFLAGS_THUMB2 :=$(CFLAGS_THUMB2) -Wa$(comma)-mthumb
|
AFLAGS_ISA :=$(CFLAGS_ISA) -Wa$(comma)-mthumb
|
||||||
# Work around buggy relocation from gas if requested:
|
# Work around buggy relocation from gas if requested:
|
||||||
ifeq ($(CONFIG_THUMB2_AVOID_R_ARM_THM_JUMP11),y)
|
ifeq ($(CONFIG_THUMB2_AVOID_R_ARM_THM_JUMP11),y)
|
||||||
CFLAGS_MODULE +=-fno-optimize-sibling-calls
|
CFLAGS_MODULE +=-fno-optimize-sibling-calls
|
||||||
endif
|
endif
|
||||||
|
else
|
||||||
|
CFLAGS_ISA :=$(call cc-option,-marm,)
|
||||||
|
AFLAGS_ISA :=$(CFLAGS_ISA)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Need -Uarm for gcc < 3.x
|
# Need -Uarm for gcc < 3.x
|
||||||
KBUILD_CFLAGS +=$(CFLAGS_ABI) $(CFLAGS_THUMB2) $(arch-y) $(tune-y) $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) -msoft-float -Uarm
|
KBUILD_CFLAGS +=$(CFLAGS_ABI) $(CFLAGS_ISA) $(arch-y) $(tune-y) $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) -msoft-float -Uarm
|
||||||
KBUILD_AFLAGS +=$(CFLAGS_ABI) $(AFLAGS_THUMB2) $(arch-y) $(tune-y) -include asm/unified.h -msoft-float
|
KBUILD_AFLAGS +=$(CFLAGS_ABI) $(AFLAGS_ISA) $(arch-y) $(tune-y) -include asm/unified.h -msoft-float
|
||||||
|
|
||||||
CHECKFLAGS += -D__arm__
|
CHECKFLAGS += -D__arm__
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ ifeq ($(CONFIG_XIP_KERNEL),y)
|
||||||
|
|
||||||
$(obj)/xipImage: vmlinux FORCE
|
$(obj)/xipImage: vmlinux FORCE
|
||||||
$(call if_changed,objcopy)
|
$(call if_changed,objcopy)
|
||||||
@echo ' Kernel: $@ is ready (physical address: $(CONFIG_XIP_PHYS_ADDR))'
|
$(kecho) ' Kernel: $@ is ready (physical address: $(CONFIG_XIP_PHYS_ADDR))'
|
||||||
|
|
||||||
$(obj)/Image $(obj)/zImage: FORCE
|
$(obj)/Image $(obj)/zImage: FORCE
|
||||||
@echo 'Kernel configured for XIP (CONFIG_XIP_KERNEL=y)'
|
@echo 'Kernel configured for XIP (CONFIG_XIP_KERNEL=y)'
|
||||||
|
@ -48,14 +48,14 @@ $(obj)/xipImage: FORCE
|
||||||
|
|
||||||
$(obj)/Image: vmlinux FORCE
|
$(obj)/Image: vmlinux FORCE
|
||||||
$(call if_changed,objcopy)
|
$(call if_changed,objcopy)
|
||||||
@echo ' Kernel: $@ is ready'
|
$(kecho) ' Kernel: $@ is ready'
|
||||||
|
|
||||||
$(obj)/compressed/vmlinux: $(obj)/Image FORCE
|
$(obj)/compressed/vmlinux: $(obj)/Image FORCE
|
||||||
$(Q)$(MAKE) $(build)=$(obj)/compressed $@
|
$(Q)$(MAKE) $(build)=$(obj)/compressed $@
|
||||||
|
|
||||||
$(obj)/zImage: $(obj)/compressed/vmlinux FORCE
|
$(obj)/zImage: $(obj)/compressed/vmlinux FORCE
|
||||||
$(call if_changed,objcopy)
|
$(call if_changed,objcopy)
|
||||||
@echo ' Kernel: $@ is ready'
|
$(kecho) ' Kernel: $@ is ready'
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@ fi
|
||||||
$(obj)/uImage: $(obj)/zImage FORCE
|
$(obj)/uImage: $(obj)/zImage FORCE
|
||||||
@$(check_for_multiple_loadaddr)
|
@$(check_for_multiple_loadaddr)
|
||||||
$(call if_changed,uimage)
|
$(call if_changed,uimage)
|
||||||
@echo ' Image $@ is ready'
|
$(kecho) ' Image $@ is ready'
|
||||||
|
|
||||||
$(obj)/bootp/bootp: $(obj)/zImage initrd FORCE
|
$(obj)/bootp/bootp: $(obj)/zImage initrd FORCE
|
||||||
$(Q)$(MAKE) $(build)=$(obj)/bootp $@
|
$(Q)$(MAKE) $(build)=$(obj)/bootp $@
|
||||||
|
@ -98,7 +98,7 @@ $(obj)/bootp/bootp: $(obj)/zImage initrd FORCE
|
||||||
|
|
||||||
$(obj)/bootpImage: $(obj)/bootp/bootp FORCE
|
$(obj)/bootpImage: $(obj)/bootp/bootp FORCE
|
||||||
$(call if_changed,objcopy)
|
$(call if_changed,objcopy)
|
||||||
@echo ' Kernel: $@ is ready'
|
$(kecho) ' Kernel: $@ is ready'
|
||||||
|
|
||||||
PHONY += initrd FORCE
|
PHONY += initrd FORCE
|
||||||
initrd:
|
initrd:
|
||||||
|
|
|
@ -63,15 +63,17 @@ dtb-$(CONFIG_ARCH_MXS) += imx23-evk.dtb \
|
||||||
imx28-m28evk.dtb \
|
imx28-m28evk.dtb \
|
||||||
imx28-tx28.dtb
|
imx28-tx28.dtb
|
||||||
dtb-$(CONFIG_ARCH_OMAP2PLUS) += omap2420-h4.dtb \
|
dtb-$(CONFIG_ARCH_OMAP2PLUS) += omap2420-h4.dtb \
|
||||||
|
omap3-beagle.dtb \
|
||||||
omap3-beagle-xm.dtb \
|
omap3-beagle-xm.dtb \
|
||||||
omap3-evm.dtb \
|
omap3-evm.dtb \
|
||||||
omap3-tobi.dtb \
|
omap3-tobi.dtb \
|
||||||
omap4-panda.dtb \
|
omap4-panda.dtb \
|
||||||
omap4-pandaES.dtb \
|
omap4-panda-es.dtb \
|
||||||
omap4-var_som.dtb \
|
omap4-var-som.dtb \
|
||||||
omap4-sdp.dtb \
|
omap4-sdp.dtb \
|
||||||
omap5-evm.dtb \
|
omap5-evm.dtb \
|
||||||
am335x-evm.dtb \
|
am335x-evm.dtb \
|
||||||
|
am335x-evmsk.dtb \
|
||||||
am335x-bone.dtb
|
am335x-bone.dtb
|
||||||
dtb-$(CONFIG_ARCH_PRIMA2) += prima2-evb.dtb
|
dtb-$(CONFIG_ARCH_PRIMA2) += prima2-evb.dtb
|
||||||
dtb-$(CONFIG_ARCH_U8500) += snowball.dtb
|
dtb-$(CONFIG_ARCH_U8500) += snowball.dtb
|
||||||
|
|
|
@ -13,11 +13,31 @@
|
||||||
model = "TI AM335x BeagleBone";
|
model = "TI AM335x BeagleBone";
|
||||||
compatible = "ti,am335x-bone", "ti,am33xx";
|
compatible = "ti,am335x-bone", "ti,am33xx";
|
||||||
|
|
||||||
|
cpus {
|
||||||
|
cpu@0 {
|
||||||
|
cpu0-supply = <&dcdc2_reg>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
memory {
|
memory {
|
||||||
device_type = "memory";
|
device_type = "memory";
|
||||||
reg = <0x80000000 0x10000000>; /* 256 MB */
|
reg = <0x80000000 0x10000000>; /* 256 MB */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
am33xx_pinmux: pinmux@44e10800 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&user_leds_s0>;
|
||||||
|
|
||||||
|
user_leds_s0: user_leds_s0 {
|
||||||
|
pinctrl-single,pins = <
|
||||||
|
0x54 0x7 /* gpmc_a5.gpio1_21, OUTPUT | MODE7 */
|
||||||
|
0x58 0x17 /* gpmc_a6.gpio1_22, OUTPUT_PULLUP | MODE7 */
|
||||||
|
0x5c 0x7 /* gpmc_a7.gpio1_23, OUTPUT | MODE7 */
|
||||||
|
0x60 0x17 /* gpmc_a8.gpio1_24, OUTPUT_PULLUP | MODE7 */
|
||||||
|
>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
ocp {
|
ocp {
|
||||||
uart1: serial@44e09000 {
|
uart1: serial@44e09000 {
|
||||||
status = "okay";
|
status = "okay";
|
||||||
|
@ -33,6 +53,36 @@
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
leds {
|
||||||
|
compatible = "gpio-leds";
|
||||||
|
|
||||||
|
led@2 {
|
||||||
|
label = "beaglebone:green:heartbeat";
|
||||||
|
gpios = <&gpio2 21 0>;
|
||||||
|
linux,default-trigger = "heartbeat";
|
||||||
|
default-state = "off";
|
||||||
|
};
|
||||||
|
|
||||||
|
led@3 {
|
||||||
|
label = "beaglebone:green:mmc0";
|
||||||
|
gpios = <&gpio2 22 0>;
|
||||||
|
linux,default-trigger = "mmc0";
|
||||||
|
default-state = "off";
|
||||||
|
};
|
||||||
|
|
||||||
|
led@4 {
|
||||||
|
label = "beaglebone:green:usr2";
|
||||||
|
gpios = <&gpio2 23 0>;
|
||||||
|
default-state = "off";
|
||||||
|
};
|
||||||
|
|
||||||
|
led@5 {
|
||||||
|
label = "beaglebone:green:usr3";
|
||||||
|
gpios = <&gpio2 24 0>;
|
||||||
|
default-state = "off";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/include/ "tps65217.dtsi"
|
/include/ "tps65217.dtsi"
|
||||||
|
|
|
@ -13,11 +13,39 @@
|
||||||
model = "TI AM335x EVM";
|
model = "TI AM335x EVM";
|
||||||
compatible = "ti,am335x-evm", "ti,am33xx";
|
compatible = "ti,am335x-evm", "ti,am33xx";
|
||||||
|
|
||||||
|
cpus {
|
||||||
|
cpu@0 {
|
||||||
|
cpu0-supply = <&vdd1_reg>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
memory {
|
memory {
|
||||||
device_type = "memory";
|
device_type = "memory";
|
||||||
reg = <0x80000000 0x10000000>; /* 256 MB */
|
reg = <0x80000000 0x10000000>; /* 256 MB */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
am33xx_pinmux: pinmux@44e10800 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&matrix_keypad_s0 &volume_keys_s0>;
|
||||||
|
|
||||||
|
matrix_keypad_s0: matrix_keypad_s0 {
|
||||||
|
pinctrl-single,pins = <
|
||||||
|
0x54 0x7 /* gpmc_a5.gpio1_21, OUTPUT | MODE7 */
|
||||||
|
0x58 0x7 /* gpmc_a6.gpio1_22, OUTPUT | MODE7 */
|
||||||
|
0x64 0x27 /* gpmc_a9.gpio1_25, INPUT | MODE7 */
|
||||||
|
0x68 0x27 /* gpmc_a10.gpio1_26, INPUT | MODE7 */
|
||||||
|
0x6c 0x27 /* gpmc_a11.gpio1_27, INPUT | MODE7 */
|
||||||
|
>;
|
||||||
|
};
|
||||||
|
|
||||||
|
volume_keys_s0: volume_keys_s0 {
|
||||||
|
pinctrl-single,pins = <
|
||||||
|
0x150 0x27 /* spi0_sclk.gpio0_2, INPUT | MODE7 */
|
||||||
|
0x154 0x27 /* spi0_d0.gpio0_3, INPUT | MODE7 */
|
||||||
|
>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
ocp {
|
ocp {
|
||||||
uart1: serial@44e09000 {
|
uart1: serial@44e09000 {
|
||||||
status = "okay";
|
status = "okay";
|
||||||
|
@ -31,6 +59,49 @@
|
||||||
reg = <0x2d>;
|
reg = <0x2d>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
i2c2: i2c@4802a000 {
|
||||||
|
status = "okay";
|
||||||
|
clock-frequency = <100000>;
|
||||||
|
|
||||||
|
lis331dlh: lis331dlh@18 {
|
||||||
|
compatible = "st,lis331dlh", "st,lis3lv02d";
|
||||||
|
reg = <0x18>;
|
||||||
|
Vdd-supply = <&lis3_reg>;
|
||||||
|
Vdd_IO-supply = <&lis3_reg>;
|
||||||
|
|
||||||
|
st,click-single-x;
|
||||||
|
st,click-single-y;
|
||||||
|
st,click-single-z;
|
||||||
|
st,click-thresh-x = <10>;
|
||||||
|
st,click-thresh-y = <10>;
|
||||||
|
st,click-thresh-z = <10>;
|
||||||
|
st,irq1-click;
|
||||||
|
st,irq2-click;
|
||||||
|
st,wakeup-x-lo;
|
||||||
|
st,wakeup-x-hi;
|
||||||
|
st,wakeup-y-lo;
|
||||||
|
st,wakeup-y-hi;
|
||||||
|
st,wakeup-z-lo;
|
||||||
|
st,wakeup-z-hi;
|
||||||
|
st,min-limit-x = <120>;
|
||||||
|
st,min-limit-y = <120>;
|
||||||
|
st,min-limit-z = <140>;
|
||||||
|
st,max-limit-x = <550>;
|
||||||
|
st,max-limit-y = <550>;
|
||||||
|
st,max-limit-z = <750>;
|
||||||
|
};
|
||||||
|
|
||||||
|
tsl2550: tsl2550@39 {
|
||||||
|
compatible = "taos,tsl2550";
|
||||||
|
reg = <0x39>;
|
||||||
|
};
|
||||||
|
|
||||||
|
tmp275: tmp275@48 {
|
||||||
|
compatible = "ti,tmp275";
|
||||||
|
reg = <0x48>;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
vbat: fixedregulator@0 {
|
vbat: fixedregulator@0 {
|
||||||
|
@ -40,6 +111,53 @@
|
||||||
regulator-max-microvolt = <5000000>;
|
regulator-max-microvolt = <5000000>;
|
||||||
regulator-boot-on;
|
regulator-boot-on;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lis3_reg: fixedregulator@1 {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
regulator-name = "lis3_reg";
|
||||||
|
regulator-boot-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
matrix_keypad: matrix_keypad@0 {
|
||||||
|
compatible = "gpio-matrix-keypad";
|
||||||
|
debounce-delay-ms = <5>;
|
||||||
|
col-scan-delay-us = <2>;
|
||||||
|
|
||||||
|
row-gpios = <&gpio2 25 0 /* Bank1, pin25 */
|
||||||
|
&gpio2 26 0 /* Bank1, pin26 */
|
||||||
|
&gpio2 27 0>; /* Bank1, pin27 */
|
||||||
|
|
||||||
|
col-gpios = <&gpio2 21 0 /* Bank1, pin21 */
|
||||||
|
&gpio2 22 0>; /* Bank1, pin22 */
|
||||||
|
|
||||||
|
linux,keymap = <0x0000008b /* MENU */
|
||||||
|
0x0100009e /* BACK */
|
||||||
|
0x02000069 /* LEFT */
|
||||||
|
0x0001006a /* RIGHT */
|
||||||
|
0x0101001c /* ENTER */
|
||||||
|
0x0201006c>; /* DOWN */
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_keys: volume_keys@0 {
|
||||||
|
compatible = "gpio-keys";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
autorepeat;
|
||||||
|
|
||||||
|
switch@9 {
|
||||||
|
label = "volume-up";
|
||||||
|
linux,code = <115>;
|
||||||
|
gpios = <&gpio1 2 1>;
|
||||||
|
gpio-key,wakeup;
|
||||||
|
};
|
||||||
|
|
||||||
|
switch@10 {
|
||||||
|
label = "volume-down";
|
||||||
|
linux,code = <114>;
|
||||||
|
gpios = <&gpio1 3 1>;
|
||||||
|
gpio-key,wakeup;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/include/ "tps65910.dtsi"
|
/include/ "tps65910.dtsi"
|
||||||
|
|
|
@ -0,0 +1,250 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* AM335x Starter Kit
|
||||||
|
* http://www.ti.com/tool/tmdssk3358
|
||||||
|
*/
|
||||||
|
|
||||||
|
/dts-v1/;
|
||||||
|
|
||||||
|
/include/ "am33xx.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
model = "TI AM335x EVM-SK";
|
||||||
|
compatible = "ti,am335x-evmsk", "ti,am33xx";
|
||||||
|
|
||||||
|
cpus {
|
||||||
|
cpu@0 {
|
||||||
|
cpu0-supply = <&vdd1_reg>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
memory {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0x80000000 0x10000000>; /* 256 MB */
|
||||||
|
};
|
||||||
|
|
||||||
|
am33xx_pinmux: pinmux@44e10800 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&user_leds_s0 &gpio_keys_s0>;
|
||||||
|
|
||||||
|
user_leds_s0: user_leds_s0 {
|
||||||
|
pinctrl-single,pins = <
|
||||||
|
0x10 0x7 /* gpmc_ad4.gpio1_4, OUTPUT | MODE7 */
|
||||||
|
0x14 0x7 /* gpmc_ad5.gpio1_5, OUTPUT | MODE7 */
|
||||||
|
0x18 0x7 /* gpmc_ad6.gpio1_6, OUTPUT | MODE7 */
|
||||||
|
0x1c 0x7 /* gpmc_ad7.gpio1_7, OUTPUT | MODE7 */
|
||||||
|
>;
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_keys_s0: gpio_keys_s0 {
|
||||||
|
pinctrl-single,pins = <
|
||||||
|
0x94 0x27 /* gpmc_oen_ren.gpio2_3, INPUT | MODE7 */
|
||||||
|
0x90 0x27 /* gpmc_advn_ale.gpio2_2, INPUT | MODE7 */
|
||||||
|
0x70 0x27 /* gpmc_wait0.gpio0_30, INPUT | MODE7 */
|
||||||
|
0x9c 0x27 /* gpmc_ben0_cle.gpio2_5, INPUT | MODE7 */
|
||||||
|
>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
ocp {
|
||||||
|
uart1: serial@44e09000 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
i2c1: i2c@44e0b000 {
|
||||||
|
status = "okay";
|
||||||
|
clock-frequency = <400000>;
|
||||||
|
|
||||||
|
tps: tps@2d {
|
||||||
|
reg = <0x2d>;
|
||||||
|
};
|
||||||
|
|
||||||
|
lis331dlh: lis331dlh@18 {
|
||||||
|
compatible = "st,lis331dlh", "st,lis3lv02d";
|
||||||
|
reg = <0x18>;
|
||||||
|
Vdd-supply = <&lis3_reg>;
|
||||||
|
Vdd_IO-supply = <&lis3_reg>;
|
||||||
|
|
||||||
|
st,click-single-x;
|
||||||
|
st,click-single-y;
|
||||||
|
st,click-single-z;
|
||||||
|
st,click-thresh-x = <10>;
|
||||||
|
st,click-thresh-y = <10>;
|
||||||
|
st,click-thresh-z = <10>;
|
||||||
|
st,irq1-click;
|
||||||
|
st,irq2-click;
|
||||||
|
st,wakeup-x-lo;
|
||||||
|
st,wakeup-x-hi;
|
||||||
|
st,wakeup-y-lo;
|
||||||
|
st,wakeup-y-hi;
|
||||||
|
st,wakeup-z-lo;
|
||||||
|
st,wakeup-z-hi;
|
||||||
|
st,min-limit-x = <120>;
|
||||||
|
st,min-limit-y = <120>;
|
||||||
|
st,min-limit-z = <140>;
|
||||||
|
st,max-limit-x = <550>;
|
||||||
|
st,max-limit-y = <550>;
|
||||||
|
st,max-limit-z = <750>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
vbat: fixedregulator@0 {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
regulator-name = "vbat";
|
||||||
|
regulator-min-microvolt = <5000000>;
|
||||||
|
regulator-max-microvolt = <5000000>;
|
||||||
|
regulator-boot-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
lis3_reg: fixedregulator@1 {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
regulator-name = "lis3_reg";
|
||||||
|
regulator-boot-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
leds {
|
||||||
|
compatible = "gpio-leds";
|
||||||
|
|
||||||
|
led@1 {
|
||||||
|
label = "evmsk:green:usr0";
|
||||||
|
gpios = <&gpio2 4 0>;
|
||||||
|
default-state = "off";
|
||||||
|
};
|
||||||
|
|
||||||
|
led@2 {
|
||||||
|
label = "evmsk:green:usr1";
|
||||||
|
gpios = <&gpio2 5 0>;
|
||||||
|
default-state = "off";
|
||||||
|
};
|
||||||
|
|
||||||
|
led@3 {
|
||||||
|
label = "evmsk:green:mmc0";
|
||||||
|
gpios = <&gpio2 6 0>;
|
||||||
|
linux,default-trigger = "mmc0";
|
||||||
|
default-state = "off";
|
||||||
|
};
|
||||||
|
|
||||||
|
led@4 {
|
||||||
|
label = "evmsk:green:heartbeat";
|
||||||
|
gpios = <&gpio2 7 0>;
|
||||||
|
linux,default-trigger = "heartbeat";
|
||||||
|
default-state = "off";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
gpio_buttons: gpio_buttons@0 {
|
||||||
|
compatible = "gpio-keys";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
|
||||||
|
switch@1 {
|
||||||
|
label = "button0";
|
||||||
|
linux,code = <0x100>;
|
||||||
|
gpios = <&gpio3 3 0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
switch@2 {
|
||||||
|
label = "button1";
|
||||||
|
linux,code = <0x101>;
|
||||||
|
gpios = <&gpio3 2 0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
switch@3 {
|
||||||
|
label = "button2";
|
||||||
|
linux,code = <0x102>;
|
||||||
|
gpios = <&gpio1 30 0>;
|
||||||
|
gpio-key,wakeup;
|
||||||
|
};
|
||||||
|
|
||||||
|
switch@4 {
|
||||||
|
label = "button3";
|
||||||
|
linux,code = <0x103>;
|
||||||
|
gpios = <&gpio3 5 0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/include/ "tps65910.dtsi"
|
||||||
|
|
||||||
|
&tps {
|
||||||
|
vcc1-supply = <&vbat>;
|
||||||
|
vcc2-supply = <&vbat>;
|
||||||
|
vcc3-supply = <&vbat>;
|
||||||
|
vcc4-supply = <&vbat>;
|
||||||
|
vcc5-supply = <&vbat>;
|
||||||
|
vcc6-supply = <&vbat>;
|
||||||
|
vcc7-supply = <&vbat>;
|
||||||
|
vccio-supply = <&vbat>;
|
||||||
|
|
||||||
|
regulators {
|
||||||
|
vrtc_reg: regulator@0 {
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
vio_reg: regulator@1 {
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
vdd1_reg: regulator@2 {
|
||||||
|
/* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
|
||||||
|
regulator-name = "vdd_mpu";
|
||||||
|
regulator-min-microvolt = <912500>;
|
||||||
|
regulator-max-microvolt = <1312500>;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
vdd2_reg: regulator@3 {
|
||||||
|
/* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
|
||||||
|
regulator-name = "vdd_core";
|
||||||
|
regulator-min-microvolt = <912500>;
|
||||||
|
regulator-max-microvolt = <1150000>;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
vdd3_reg: regulator@4 {
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
vdig1_reg: regulator@5 {
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
vdig2_reg: regulator@6 {
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
vpll_reg: regulator@7 {
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
vdac_reg: regulator@8 {
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
vaux1_reg: regulator@9 {
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
vaux2_reg: regulator@10 {
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
vaux33_reg: regulator@11 {
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
|
||||||
|
vmmc_reg: regulator@12 {
|
||||||
|
regulator-always-on;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
|
@ -12,6 +12,7 @@
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
compatible = "ti,am33xx";
|
compatible = "ti,am33xx";
|
||||||
|
interrupt-parent = <&intc>;
|
||||||
|
|
||||||
aliases {
|
aliases {
|
||||||
serial0 = &uart1;
|
serial0 = &uart1;
|
||||||
|
@ -25,6 +26,21 @@
|
||||||
cpus {
|
cpus {
|
||||||
cpu@0 {
|
cpu@0 {
|
||||||
compatible = "arm,cortex-a8";
|
compatible = "arm,cortex-a8";
|
||||||
|
|
||||||
|
/*
|
||||||
|
* To consider voltage drop between PMIC and SoC,
|
||||||
|
* tolerance value is reduced to 2% from 4% and
|
||||||
|
* voltage value is increased as a precaution.
|
||||||
|
*/
|
||||||
|
operating-points = <
|
||||||
|
/* kHz uV */
|
||||||
|
720000 1285000
|
||||||
|
600000 1225000
|
||||||
|
500000 1125000
|
||||||
|
275000 1125000
|
||||||
|
>;
|
||||||
|
voltage-tolerance = <2>; /* 2 percentage */
|
||||||
|
clock-latency = <300000>; /* From omap-cpufreq driver */
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -40,6 +56,15 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
am33xx_pinmux: pinmux@44e10800 {
|
||||||
|
compatible = "pinctrl-single";
|
||||||
|
reg = <0x44e10800 0x0238>;
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
pinctrl-single,register-width = <32>;
|
||||||
|
pinctrl-single,function-mask = <0x7f>;
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* XXX: Use a flat representation of the AM33XX interconnect.
|
* XXX: Use a flat representation of the AM33XX interconnect.
|
||||||
* The real AM33XX interconnect network is quite complex.Since
|
* The real AM33XX interconnect network is quite complex.Since
|
||||||
|
@ -70,7 +95,6 @@
|
||||||
interrupt-controller;
|
interrupt-controller;
|
||||||
#interrupt-cells = <1>;
|
#interrupt-cells = <1>;
|
||||||
reg = <0x44e07000 0x1000>;
|
reg = <0x44e07000 0x1000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <96>;
|
interrupts = <96>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -82,7 +106,6 @@
|
||||||
interrupt-controller;
|
interrupt-controller;
|
||||||
#interrupt-cells = <1>;
|
#interrupt-cells = <1>;
|
||||||
reg = <0x4804c000 0x1000>;
|
reg = <0x4804c000 0x1000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <98>;
|
interrupts = <98>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -94,7 +117,6 @@
|
||||||
interrupt-controller;
|
interrupt-controller;
|
||||||
#interrupt-cells = <1>;
|
#interrupt-cells = <1>;
|
||||||
reg = <0x481ac000 0x1000>;
|
reg = <0x481ac000 0x1000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <32>;
|
interrupts = <32>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -106,7 +128,6 @@
|
||||||
interrupt-controller;
|
interrupt-controller;
|
||||||
#interrupt-cells = <1>;
|
#interrupt-cells = <1>;
|
||||||
reg = <0x481ae000 0x1000>;
|
reg = <0x481ae000 0x1000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <62>;
|
interrupts = <62>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -115,7 +136,6 @@
|
||||||
ti,hwmods = "uart1";
|
ti,hwmods = "uart1";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
reg = <0x44e09000 0x2000>;
|
reg = <0x44e09000 0x2000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <72>;
|
interrupts = <72>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
@ -125,7 +145,6 @@
|
||||||
ti,hwmods = "uart2";
|
ti,hwmods = "uart2";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
reg = <0x48022000 0x2000>;
|
reg = <0x48022000 0x2000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <73>;
|
interrupts = <73>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
@ -135,7 +154,6 @@
|
||||||
ti,hwmods = "uart3";
|
ti,hwmods = "uart3";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
reg = <0x48024000 0x2000>;
|
reg = <0x48024000 0x2000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <74>;
|
interrupts = <74>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
@ -145,7 +163,6 @@
|
||||||
ti,hwmods = "uart4";
|
ti,hwmods = "uart4";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
reg = <0x481a6000 0x2000>;
|
reg = <0x481a6000 0x2000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <44>;
|
interrupts = <44>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
@ -155,7 +172,6 @@
|
||||||
ti,hwmods = "uart5";
|
ti,hwmods = "uart5";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
reg = <0x481a8000 0x2000>;
|
reg = <0x481a8000 0x2000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <45>;
|
interrupts = <45>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
@ -165,7 +181,6 @@
|
||||||
ti,hwmods = "uart6";
|
ti,hwmods = "uart6";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
reg = <0x481aa000 0x2000>;
|
reg = <0x481aa000 0x2000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <46>;
|
interrupts = <46>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
@ -176,7 +191,6 @@
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
ti,hwmods = "i2c1";
|
ti,hwmods = "i2c1";
|
||||||
reg = <0x44e0b000 0x1000>;
|
reg = <0x44e0b000 0x1000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <70>;
|
interrupts = <70>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
@ -187,7 +201,6 @@
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
ti,hwmods = "i2c2";
|
ti,hwmods = "i2c2";
|
||||||
reg = <0x4802a000 0x1000>;
|
reg = <0x4802a000 0x1000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <71>;
|
interrupts = <71>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
@ -198,7 +211,6 @@
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
ti,hwmods = "i2c3";
|
ti,hwmods = "i2c3";
|
||||||
reg = <0x4819c000 0x1000>;
|
reg = <0x4819c000 0x1000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <30>;
|
interrupts = <30>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
@ -207,8 +219,124 @@
|
||||||
compatible = "ti,omap3-wdt";
|
compatible = "ti,omap3-wdt";
|
||||||
ti,hwmods = "wd_timer2";
|
ti,hwmods = "wd_timer2";
|
||||||
reg = <0x44e35000 0x1000>;
|
reg = <0x44e35000 0x1000>;
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
interrupts = <91>;
|
interrupts = <91>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dcan0: d_can@481cc000 {
|
||||||
|
compatible = "bosch,d_can";
|
||||||
|
ti,hwmods = "d_can0";
|
||||||
|
reg = <0x481cc000 0x2000>;
|
||||||
|
interrupts = <52>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
dcan1: d_can@481d0000 {
|
||||||
|
compatible = "bosch,d_can";
|
||||||
|
ti,hwmods = "d_can1";
|
||||||
|
reg = <0x481d0000 0x2000>;
|
||||||
|
interrupts = <55>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer1: timer@44e31000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x44e31000 0x400>;
|
||||||
|
interrupts = <67>;
|
||||||
|
ti,hwmods = "timer1";
|
||||||
|
ti,timer-alwon;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer2: timer@48040000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48040000 0x400>;
|
||||||
|
interrupts = <68>;
|
||||||
|
ti,hwmods = "timer2";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer3: timer@48042000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48042000 0x400>;
|
||||||
|
interrupts = <69>;
|
||||||
|
ti,hwmods = "timer3";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer4: timer@48044000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48044000 0x400>;
|
||||||
|
interrupts = <92>;
|
||||||
|
ti,hwmods = "timer4";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer5: timer@48046000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48046000 0x400>;
|
||||||
|
interrupts = <93>;
|
||||||
|
ti,hwmods = "timer5";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer6: timer@48048000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48048000 0x400>;
|
||||||
|
interrupts = <94>;
|
||||||
|
ti,hwmods = "timer6";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer7: timer@4804a000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4804a000 0x400>;
|
||||||
|
interrupts = <95>;
|
||||||
|
ti,hwmods = "timer7";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
rtc@44e3e000 {
|
||||||
|
compatible = "ti,da830-rtc";
|
||||||
|
reg = <0x44e3e000 0x1000>;
|
||||||
|
interrupts = <75
|
||||||
|
76>;
|
||||||
|
ti,hwmods = "rtc";
|
||||||
|
};
|
||||||
|
|
||||||
|
spi0: spi@48030000 {
|
||||||
|
compatible = "ti,omap4-mcspi";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
reg = <0x48030000 0x400>;
|
||||||
|
interrupt = <65>;
|
||||||
|
ti,spi-num-cs = <2>;
|
||||||
|
ti,hwmods = "spi0";
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
spi1: spi@481a0000 {
|
||||||
|
compatible = "ti,omap4-mcspi";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
reg = <0x481a0000 0x400>;
|
||||||
|
interrupt = <125>;
|
||||||
|
ti,spi-num-cs = <2>;
|
||||||
|
ti,hwmods = "spi1";
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
usb@47400000 {
|
||||||
|
compatible = "ti,musb-am33xx";
|
||||||
|
reg = <0x47400000 0x1000 /* usbss */
|
||||||
|
0x47401000 0x800 /* musb instance 0 */
|
||||||
|
0x47401800 0x800>; /* musb instance 1 */
|
||||||
|
interrupts = <17 /* usbss */
|
||||||
|
18 /* musb instance 0 */
|
||||||
|
19>; /* musb instance 1 */
|
||||||
|
multipoint = <1>;
|
||||||
|
num-eps = <16>;
|
||||||
|
ram-bits = <12>;
|
||||||
|
port0-mode = <3>;
|
||||||
|
port1-mode = <3>;
|
||||||
|
power = <250>;
|
||||||
|
ti,hwmods = "usb_otg_hs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -126,14 +126,14 @@
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
|
|
||||||
btn3 {
|
btn3 {
|
||||||
label = "Buttin 3";
|
label = "Button 3";
|
||||||
gpios = <&pioA 30 1>;
|
gpios = <&pioA 30 1>;
|
||||||
linux,code = <0x103>;
|
linux,code = <0x103>;
|
||||||
gpio-key,wakeup;
|
gpio-key,wakeup;
|
||||||
};
|
};
|
||||||
|
|
||||||
btn4 {
|
btn4 {
|
||||||
label = "Buttin 4";
|
label = "Button 4";
|
||||||
gpios = <&pioA 31 1>;
|
gpios = <&pioA 31 1>;
|
||||||
linux,code = <0x104>;
|
linux,code = <0x104>;
|
||||||
gpio-key,wakeup;
|
gpio-key,wakeup;
|
||||||
|
|
|
@ -483,6 +483,8 @@
|
||||||
compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell";
|
compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell";
|
||||||
reg = <0x80004000 0x1000>;
|
reg = <0x80004000 0x1000>;
|
||||||
interrupts = <0 21 0x4>;
|
interrupts = <0 21 0x4>;
|
||||||
|
arm,primecell-periphid = <0x180024>;
|
||||||
|
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
v-i2c-supply = <&db8500_vape_reg>;
|
v-i2c-supply = <&db8500_vape_reg>;
|
||||||
|
@ -494,6 +496,8 @@
|
||||||
compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell";
|
compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell";
|
||||||
reg = <0x80122000 0x1000>;
|
reg = <0x80122000 0x1000>;
|
||||||
interrupts = <0 22 0x4>;
|
interrupts = <0 22 0x4>;
|
||||||
|
arm,primecell-periphid = <0x180024>;
|
||||||
|
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
v-i2c-supply = <&db8500_vape_reg>;
|
v-i2c-supply = <&db8500_vape_reg>;
|
||||||
|
@ -505,6 +509,8 @@
|
||||||
compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell";
|
compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell";
|
||||||
reg = <0x80128000 0x1000>;
|
reg = <0x80128000 0x1000>;
|
||||||
interrupts = <0 55 0x4>;
|
interrupts = <0 55 0x4>;
|
||||||
|
arm,primecell-periphid = <0x180024>;
|
||||||
|
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
v-i2c-supply = <&db8500_vape_reg>;
|
v-i2c-supply = <&db8500_vape_reg>;
|
||||||
|
@ -516,6 +522,8 @@
|
||||||
compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell";
|
compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell";
|
||||||
reg = <0x80110000 0x1000>;
|
reg = <0x80110000 0x1000>;
|
||||||
interrupts = <0 12 0x4>;
|
interrupts = <0 12 0x4>;
|
||||||
|
arm,primecell-periphid = <0x180024>;
|
||||||
|
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
v-i2c-supply = <&db8500_vape_reg>;
|
v-i2c-supply = <&db8500_vape_reg>;
|
||||||
|
@ -527,6 +535,8 @@
|
||||||
compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell";
|
compatible = "stericsson,db8500-i2c", "st,nomadik-i2c", "arm,primecell";
|
||||||
reg = <0x8012a000 0x1000>;
|
reg = <0x8012a000 0x1000>;
|
||||||
interrupts = <0 51 0x4>;
|
interrupts = <0 51 0x4>;
|
||||||
|
arm,primecell-periphid = <0x180024>;
|
||||||
|
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
v-i2c-supply = <&db8500_vape_reg>;
|
v-i2c-supply = <&db8500_vape_reg>;
|
||||||
|
@ -573,33 +583,38 @@
|
||||||
interrupts = <0 60 0x4>;
|
interrupts = <0 60 0x4>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
sdi@80118000 {
|
sdi@80118000 {
|
||||||
compatible = "arm,pl18x", "arm,primecell";
|
compatible = "arm,pl18x", "arm,primecell";
|
||||||
reg = <0x80118000 0x1000>;
|
reg = <0x80118000 0x1000>;
|
||||||
interrupts = <0 50 0x4>;
|
interrupts = <0 50 0x4>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
sdi@80005000 {
|
sdi@80005000 {
|
||||||
compatible = "arm,pl18x", "arm,primecell";
|
compatible = "arm,pl18x", "arm,primecell";
|
||||||
reg = <0x80005000 0x1000>;
|
reg = <0x80005000 0x1000>;
|
||||||
interrupts = <0 41 0x4>;
|
interrupts = <0 41 0x4>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
sdi@80119000 {
|
sdi@80119000 {
|
||||||
compatible = "arm,pl18x", "arm,primecell";
|
compatible = "arm,pl18x", "arm,primecell";
|
||||||
reg = <0x80119000 0x1000>;
|
reg = <0x80119000 0x1000>;
|
||||||
interrupts = <0 59 0x4>;
|
interrupts = <0 59 0x4>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
sdi@80114000 {
|
sdi@80114000 {
|
||||||
compatible = "arm,pl18x", "arm,primecell";
|
compatible = "arm,pl18x", "arm,primecell";
|
||||||
reg = <0x80114000 0x1000>;
|
reg = <0x80114000 0x1000>;
|
||||||
interrupts = <0 99 0x4>;
|
interrupts = <0 99 0x4>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
sdi@80008000 {
|
sdi@80008000 {
|
||||||
compatible = "arm,pl18x", "arm,primecell";
|
compatible = "arm,pl18x", "arm,primecell";
|
||||||
reg = <0x80114000 0x1000>;
|
reg = <0x80008000 0x1000>;
|
||||||
interrupts = <0 100 0x4>;
|
interrupts = <0 100 0x4>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
|
@ -20,8 +20,10 @@
|
||||||
compatible = "samsung,trats", "samsung,exynos4210";
|
compatible = "samsung,trats", "samsung,exynos4210";
|
||||||
|
|
||||||
memory {
|
memory {
|
||||||
reg = <0x40000000 0x20000000
|
reg = <0x40000000 0x10000000
|
||||||
0x60000000 0x20000000>;
|
0x50000000 0x10000000
|
||||||
|
0x60000000 0x10000000
|
||||||
|
0x70000000 0x10000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
|
|
|
@ -69,6 +69,7 @@
|
||||||
interrupts = <13>, <56>;
|
interrupts = <13>, <56>;
|
||||||
interrupt-names = "gpmi-dma", "bch";
|
interrupt-names = "gpmi-dma", "bch";
|
||||||
clocks = <&clks 34>;
|
clocks = <&clks 34>;
|
||||||
|
clock-names = "gpmi_io";
|
||||||
fsl,gpmi-dma-channel = <4>;
|
fsl,gpmi-dma-channel = <4>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
|
@ -85,6 +85,7 @@
|
||||||
interrupts = <88>, <41>;
|
interrupts = <88>, <41>;
|
||||||
interrupt-names = "gpmi-dma", "bch";
|
interrupt-names = "gpmi-dma", "bch";
|
||||||
clocks = <&clks 50>;
|
clocks = <&clks 50>;
|
||||||
|
clock-names = "gpmi_io";
|
||||||
fsl,gpmi-dma-channel = <4>;
|
fsl,gpmi-dma-channel = <4>;
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
compatible = "ti,omap2430", "ti,omap2420", "ti,omap2";
|
compatible = "ti,omap2430", "ti,omap2420", "ti,omap2";
|
||||||
|
interrupt-parent = <&intc>;
|
||||||
|
|
||||||
aliases {
|
aliases {
|
||||||
serial0 = &uart1;
|
serial0 = &uart1;
|
||||||
|
@ -65,5 +66,90 @@
|
||||||
ti,hwmods = "uart3";
|
ti,hwmods = "uart3";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
timer2: timer@4802a000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4802a000 0x400>;
|
||||||
|
interrupts = <38>;
|
||||||
|
ti,hwmods = "timer2";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer3: timer@48078000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48078000 0x400>;
|
||||||
|
interrupts = <39>;
|
||||||
|
ti,hwmods = "timer3";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer4: timer@4807a000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4807a000 0x400>;
|
||||||
|
interrupts = <40>;
|
||||||
|
ti,hwmods = "timer4";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer5: timer@4807c000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4807c000 0x400>;
|
||||||
|
interrupts = <41>;
|
||||||
|
ti,hwmods = "timer5";
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer6: timer@4807e000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4807e000 0x400>;
|
||||||
|
interrupts = <42>;
|
||||||
|
ti,hwmods = "timer6";
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer7: timer@48080000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48080000 0x400>;
|
||||||
|
interrupts = <43>;
|
||||||
|
ti,hwmods = "timer7";
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer8: timer@48082000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48082000 0x400>;
|
||||||
|
interrupts = <44>;
|
||||||
|
ti,hwmods = "timer8";
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer9: timer@48084000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48084000 0x400>;
|
||||||
|
interrupts = <45>;
|
||||||
|
ti,hwmods = "timer9";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer10: timer@48086000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48086000 0x400>;
|
||||||
|
interrupts = <46>;
|
||||||
|
ti,hwmods = "timer10";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer11: timer@48088000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48088000 0x400>;
|
||||||
|
interrupts = <47>;
|
||||||
|
ti,hwmods = "timer11";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer12: timer@4808a000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4808a000 0x400>;
|
||||||
|
interrupts = <48>;
|
||||||
|
ti,hwmods = "timer12";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -14,6 +14,12 @@
|
||||||
compatible = "ti,omap2420", "ti,omap2";
|
compatible = "ti,omap2420", "ti,omap2";
|
||||||
|
|
||||||
ocp {
|
ocp {
|
||||||
|
counter32k: counter@48004000 {
|
||||||
|
compatible = "ti,omap-counter32k";
|
||||||
|
reg = <0x48004000 0x20>;
|
||||||
|
ti,hwmods = "counter_32k";
|
||||||
|
};
|
||||||
|
|
||||||
omap2420_pmx: pinmux@48000030 {
|
omap2420_pmx: pinmux@48000030 {
|
||||||
compatible = "ti,omap2420-padconf", "pinctrl-single";
|
compatible = "ti,omap2420-padconf", "pinctrl-single";
|
||||||
reg = <0x48000030 0x0113>;
|
reg = <0x48000030 0x0113>;
|
||||||
|
@ -30,7 +36,6 @@
|
||||||
interrupts = <59>, /* TX interrupt */
|
interrupts = <59>, /* TX interrupt */
|
||||||
<60>; /* RX interrupt */
|
<60>; /* RX interrupt */
|
||||||
interrupt-names = "tx", "rx";
|
interrupt-names = "tx", "rx";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
ti,hwmods = "mcbsp1";
|
ti,hwmods = "mcbsp1";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -41,8 +46,15 @@
|
||||||
interrupts = <62>, /* TX interrupt */
|
interrupts = <62>, /* TX interrupt */
|
||||||
<63>; /* RX interrupt */
|
<63>; /* RX interrupt */
|
||||||
interrupt-names = "tx", "rx";
|
interrupt-names = "tx", "rx";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
ti,hwmods = "mcbsp2";
|
ti,hwmods = "mcbsp2";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
timer1: timer@48028000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48028000 0x400>;
|
||||||
|
interrupts = <37>;
|
||||||
|
ti,hwmods = "timer1";
|
||||||
|
ti,timer-alwon;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -14,6 +14,12 @@
|
||||||
compatible = "ti,omap2430", "ti,omap2";
|
compatible = "ti,omap2430", "ti,omap2";
|
||||||
|
|
||||||
ocp {
|
ocp {
|
||||||
|
counter32k: counter@49020000 {
|
||||||
|
compatible = "ti,omap-counter32k";
|
||||||
|
reg = <0x49020000 0x20>;
|
||||||
|
ti,hwmods = "counter_32k";
|
||||||
|
};
|
||||||
|
|
||||||
omap2430_pmx: pinmux@49002030 {
|
omap2430_pmx: pinmux@49002030 {
|
||||||
compatible = "ti,omap2430-padconf", "pinctrl-single";
|
compatible = "ti,omap2430-padconf", "pinctrl-single";
|
||||||
reg = <0x49002030 0x0154>;
|
reg = <0x49002030 0x0154>;
|
||||||
|
@ -32,7 +38,6 @@
|
||||||
<60>, /* RX interrupt */
|
<60>, /* RX interrupt */
|
||||||
<61>; /* RX overflow interrupt */
|
<61>; /* RX overflow interrupt */
|
||||||
interrupt-names = "common", "tx", "rx", "rx_overflow";
|
interrupt-names = "common", "tx", "rx", "rx_overflow";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp1";
|
ti,hwmods = "mcbsp1";
|
||||||
};
|
};
|
||||||
|
@ -45,7 +50,6 @@
|
||||||
<62>, /* TX interrupt */
|
<62>, /* TX interrupt */
|
||||||
<63>; /* RX interrupt */
|
<63>; /* RX interrupt */
|
||||||
interrupt-names = "common", "tx", "rx";
|
interrupt-names = "common", "tx", "rx";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp2";
|
ti,hwmods = "mcbsp2";
|
||||||
};
|
};
|
||||||
|
@ -58,7 +62,6 @@
|
||||||
<89>, /* TX interrupt */
|
<89>, /* TX interrupt */
|
||||||
<90>; /* RX interrupt */
|
<90>; /* RX interrupt */
|
||||||
interrupt-names = "common", "tx", "rx";
|
interrupt-names = "common", "tx", "rx";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp3";
|
ti,hwmods = "mcbsp3";
|
||||||
};
|
};
|
||||||
|
@ -71,7 +74,6 @@
|
||||||
<54>, /* TX interrupt */
|
<54>, /* TX interrupt */
|
||||||
<55>; /* RX interrupt */
|
<55>; /* RX interrupt */
|
||||||
interrupt-names = "common", "tx", "rx";
|
interrupt-names = "common", "tx", "rx";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp4";
|
ti,hwmods = "mcbsp4";
|
||||||
};
|
};
|
||||||
|
@ -84,9 +86,16 @@
|
||||||
<81>, /* TX interrupt */
|
<81>, /* TX interrupt */
|
||||||
<82>; /* RX interrupt */
|
<82>; /* RX interrupt */
|
||||||
interrupt-names = "common", "tx", "rx";
|
interrupt-names = "common", "tx", "rx";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp5";
|
ti,hwmods = "mcbsp5";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
timer1: timer@49018000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x49018000 0x400>;
|
||||||
|
interrupts = <37>;
|
||||||
|
ti,hwmods = "timer1";
|
||||||
|
ti,timer-alwon;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -55,12 +55,6 @@
|
||||||
interrupts = <7>; /* SYS_NIRQ cascaded to intc */
|
interrupts = <7>; /* SYS_NIRQ cascaded to intc */
|
||||||
interrupt-parent = <&intc>;
|
interrupt-parent = <&intc>;
|
||||||
|
|
||||||
vsim: regulator-vsim {
|
|
||||||
compatible = "ti,twl4030-vsim";
|
|
||||||
regulator-min-microvolt = <1800000>;
|
|
||||||
regulator-max-microvolt = <3000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
twl_audio: audio {
|
twl_audio: audio {
|
||||||
compatible = "ti,twl4030-audio";
|
compatible = "ti,twl4030-audio";
|
||||||
codec {
|
codec {
|
||||||
|
|
|
@ -0,0 +1,67 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
/dts-v1/;
|
||||||
|
|
||||||
|
/include/ "omap3.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
model = "TI OMAP3 BeagleBoard";
|
||||||
|
compatible = "ti,omap3-beagle", "ti,omap3";
|
||||||
|
|
||||||
|
memory {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0x80000000 0x10000000>; /* 256 MB */
|
||||||
|
};
|
||||||
|
|
||||||
|
leds {
|
||||||
|
compatible = "gpio-leds";
|
||||||
|
pmu_stat {
|
||||||
|
label = "beagleboard::pmu_stat";
|
||||||
|
gpios = <&twl_gpio 19 0>; /* LEDB */
|
||||||
|
};
|
||||||
|
|
||||||
|
heartbeat {
|
||||||
|
label = "beagleboard::usr0";
|
||||||
|
gpios = <&gpio5 22 0>; /* 150 -> D6 LED */
|
||||||
|
linux,default-trigger = "heartbeat";
|
||||||
|
};
|
||||||
|
|
||||||
|
mmc {
|
||||||
|
label = "beagleboard::usr1";
|
||||||
|
gpios = <&gpio5 21 0>; /* 149 -> D7 LED */
|
||||||
|
linux,default-trigger = "mmc0";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
&i2c1 {
|
||||||
|
clock-frequency = <2600000>;
|
||||||
|
|
||||||
|
twl: twl@48 {
|
||||||
|
reg = <0x48>;
|
||||||
|
interrupts = <7>; /* SYS_NIRQ cascaded to intc */
|
||||||
|
interrupt-parent = <&intc>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/include/ "twl4030.dtsi"
|
||||||
|
|
||||||
|
&mmc1 {
|
||||||
|
vmmc-supply = <&vmmc1>;
|
||||||
|
vmmc_aux-supply = <&vsim>;
|
||||||
|
bus-width = <8>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&mmc2 {
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
&mmc3 {
|
||||||
|
status = "disabled";
|
||||||
|
};
|
|
@ -12,6 +12,7 @@
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
compatible = "ti,omap3430", "ti,omap3";
|
compatible = "ti,omap3430", "ti,omap3";
|
||||||
|
interrupt-parent = <&intc>;
|
||||||
|
|
||||||
aliases {
|
aliases {
|
||||||
serial0 = &uart1;
|
serial0 = &uart1;
|
||||||
|
@ -60,6 +61,12 @@
|
||||||
ranges;
|
ranges;
|
||||||
ti,hwmods = "l3_main";
|
ti,hwmods = "l3_main";
|
||||||
|
|
||||||
|
counter32k: counter@48320000 {
|
||||||
|
compatible = "ti,omap-counter32k";
|
||||||
|
reg = <0x48320000 0x20>;
|
||||||
|
ti,hwmods = "counter_32k";
|
||||||
|
};
|
||||||
|
|
||||||
intc: interrupt-controller@48200000 {
|
intc: interrupt-controller@48200000 {
|
||||||
compatible = "ti,omap2-intc";
|
compatible = "ti,omap2-intc";
|
||||||
interrupt-controller;
|
interrupt-controller;
|
||||||
|
@ -240,7 +247,6 @@
|
||||||
<59>, /* TX interrupt */
|
<59>, /* TX interrupt */
|
||||||
<60>; /* RX interrupt */
|
<60>; /* RX interrupt */
|
||||||
interrupt-names = "common", "tx", "rx";
|
interrupt-names = "common", "tx", "rx";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp1";
|
ti,hwmods = "mcbsp1";
|
||||||
};
|
};
|
||||||
|
@ -255,9 +261,8 @@
|
||||||
<63>, /* RX interrupt */
|
<63>, /* RX interrupt */
|
||||||
<4>; /* Sidetone */
|
<4>; /* Sidetone */
|
||||||
interrupt-names = "common", "tx", "rx", "sidetone";
|
interrupt-names = "common", "tx", "rx", "sidetone";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
ti,buffer-size = <1280>;
|
ti,buffer-size = <1280>;
|
||||||
ti,hwmods = "mcbsp2";
|
ti,hwmods = "mcbsp2", "mcbsp2_sidetone";
|
||||||
};
|
};
|
||||||
|
|
||||||
mcbsp3: mcbsp@49024000 {
|
mcbsp3: mcbsp@49024000 {
|
||||||
|
@ -270,9 +275,8 @@
|
||||||
<90>, /* RX interrupt */
|
<90>, /* RX interrupt */
|
||||||
<5>; /* Sidetone */
|
<5>; /* Sidetone */
|
||||||
interrupt-names = "common", "tx", "rx", "sidetone";
|
interrupt-names = "common", "tx", "rx", "sidetone";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp3";
|
ti,hwmods = "mcbsp3", "mcbsp3_sidetone";
|
||||||
};
|
};
|
||||||
|
|
||||||
mcbsp4: mcbsp@49026000 {
|
mcbsp4: mcbsp@49026000 {
|
||||||
|
@ -283,7 +287,6 @@
|
||||||
<54>, /* TX interrupt */
|
<54>, /* TX interrupt */
|
||||||
<55>; /* RX interrupt */
|
<55>; /* RX interrupt */
|
||||||
interrupt-names = "common", "tx", "rx";
|
interrupt-names = "common", "tx", "rx";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp4";
|
ti,hwmods = "mcbsp4";
|
||||||
};
|
};
|
||||||
|
@ -296,9 +299,103 @@
|
||||||
<81>, /* TX interrupt */
|
<81>, /* TX interrupt */
|
||||||
<82>; /* RX interrupt */
|
<82>; /* RX interrupt */
|
||||||
interrupt-names = "common", "tx", "rx";
|
interrupt-names = "common", "tx", "rx";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp5";
|
ti,hwmods = "mcbsp5";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
timer1: timer@48318000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48318000 0x400>;
|
||||||
|
interrupts = <37>;
|
||||||
|
ti,hwmods = "timer1";
|
||||||
|
ti,timer-alwon;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer2: timer@49032000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x49032000 0x400>;
|
||||||
|
interrupts = <38>;
|
||||||
|
ti,hwmods = "timer2";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer3: timer@49034000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x49034000 0x400>;
|
||||||
|
interrupts = <39>;
|
||||||
|
ti,hwmods = "timer3";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer4: timer@49036000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x49036000 0x400>;
|
||||||
|
interrupts = <40>;
|
||||||
|
ti,hwmods = "timer4";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer5: timer@49038000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x49038000 0x400>;
|
||||||
|
interrupts = <41>;
|
||||||
|
ti,hwmods = "timer5";
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer6: timer@4903a000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4903a000 0x400>;
|
||||||
|
interrupts = <42>;
|
||||||
|
ti,hwmods = "timer6";
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer7: timer@4903c000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4903c000 0x400>;
|
||||||
|
interrupts = <43>;
|
||||||
|
ti,hwmods = "timer7";
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer8: timer@4903e000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4903e000 0x400>;
|
||||||
|
interrupts = <44>;
|
||||||
|
ti,hwmods = "timer8";
|
||||||
|
ti,timer-pwm;
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer9: timer@49040000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x49040000 0x400>;
|
||||||
|
interrupts = <45>;
|
||||||
|
ti,hwmods = "timer9";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer10: timer@48086000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48086000 0x400>;
|
||||||
|
interrupts = <46>;
|
||||||
|
ti,hwmods = "timer10";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer11: timer@48088000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48088000 0x400>;
|
||||||
|
interrupts = <47>;
|
||||||
|
ti,hwmods = "timer11";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer12: timer@48304000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48304000 0x400>;
|
||||||
|
interrupts = <95>;
|
||||||
|
ti,hwmods = "timer12";
|
||||||
|
ti,timer-alwon;
|
||||||
|
ti,timer-secure;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
/include/ "omap4-panda.dts"
|
||||||
|
|
||||||
|
/* Pandaboard Rev A4+ have external pullups on SCL & SDA */
|
||||||
|
&dss_hdmi_pins {
|
||||||
|
pinctrl-single,pins = <
|
||||||
|
0x5a 0x118 /* hdmi_cec.hdmi_cec INPUT PULLUP | MODE 0 */
|
||||||
|
0x5c 0x100 /* hdmi_scl.hdmi_scl INPUT | MODE 0 */
|
||||||
|
0x5e 0x100 /* hdmi_sda.hdmi_sda INPUT | MODE 0 */
|
||||||
|
>;
|
||||||
|
};
|
|
@ -22,3 +22,12 @@
|
||||||
"AFML", "Line In",
|
"AFML", "Line In",
|
||||||
"AFMR", "Line In";
|
"AFMR", "Line In";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* PandaboardES has external pullups on SCL & SDA */
|
||||||
|
&dss_hdmi_pins {
|
||||||
|
pinctrl-single,pins = <
|
||||||
|
0x5a 0x118 /* hdmi_cec.hdmi_cec INPUT PULLUP | MODE 0 */
|
||||||
|
0x5c 0x100 /* hdmi_scl.hdmi_scl INPUT | MODE 0 */
|
||||||
|
0x5e 0x100 /* hdmi_sda.hdmi_sda INPUT | MODE 0 */
|
||||||
|
>;
|
||||||
|
};
|
|
@ -65,6 +65,8 @@
|
||||||
&twl6040_pins
|
&twl6040_pins
|
||||||
&mcpdm_pins
|
&mcpdm_pins
|
||||||
&mcbsp1_pins
|
&mcbsp1_pins
|
||||||
|
&dss_hdmi_pins
|
||||||
|
&tpd12s015_pins
|
||||||
>;
|
>;
|
||||||
|
|
||||||
twl6040_pins: pinmux_twl6040_pins {
|
twl6040_pins: pinmux_twl6040_pins {
|
||||||
|
@ -92,6 +94,22 @@
|
||||||
0xc4 0x100 /* abe_mcbsp1_fsx.abe_mcbsp1_fsx INPUT | MODE0 */
|
0xc4 0x100 /* abe_mcbsp1_fsx.abe_mcbsp1_fsx INPUT | MODE0 */
|
||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dss_hdmi_pins: pinmux_dss_hdmi_pins {
|
||||||
|
pinctrl-single,pins = <
|
||||||
|
0x5a 0x118 /* hdmi_cec.hdmi_cec INPUT PULLUP | MODE 0 */
|
||||||
|
0x5c 0x118 /* hdmi_scl.hdmi_scl INPUT PULLUP | MODE 0 */
|
||||||
|
0x5e 0x118 /* hdmi_sda.hdmi_sda INPUT PULLUP | MODE 0 */
|
||||||
|
>;
|
||||||
|
};
|
||||||
|
|
||||||
|
tpd12s015_pins: pinmux_tpd12s015_pins {
|
||||||
|
pinctrl-single,pins = <
|
||||||
|
0x22 0x3 /* gpmc_a17.gpio_41 OUTPUT | MODE3 */
|
||||||
|
0x48 0x3 /* gpmc_nbe1.gpio_60 OUTPUT | MODE3 */
|
||||||
|
0x58 0x10b /* hdmi_hpd.gpio_63 INPUT PULLDOWN | MODE3 */
|
||||||
|
>;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&i2c1 {
|
&i2c1 {
|
||||||
|
@ -184,3 +202,7 @@
|
||||||
&dmic {
|
&dmic {
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&twl_usb_comparator {
|
||||||
|
usb-supply = <&vusb>;
|
||||||
|
};
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
/include/ "omap4-sdp.dts"
|
||||||
|
|
||||||
|
/* SDP boards with 4430 ES2.3+ or 4460 have external pullups on SCL & SDA */
|
||||||
|
&dss_hdmi_pins {
|
||||||
|
pinctrl-single,pins = <
|
||||||
|
0x5a 0x118 /* hdmi_cec.hdmi_cec INPUT PULLUP | MODE 0 */
|
||||||
|
0x5c 0x100 /* hdmi_scl.hdmi_scl INPUT | MODE 0 */
|
||||||
|
0x5e 0x100 /* hdmi_sda.hdmi_sda INPUT | MODE 0 */
|
||||||
|
>;
|
||||||
|
};
|
|
@ -124,6 +124,8 @@
|
||||||
&dmic_pins
|
&dmic_pins
|
||||||
&mcbsp1_pins
|
&mcbsp1_pins
|
||||||
&mcbsp2_pins
|
&mcbsp2_pins
|
||||||
|
&dss_hdmi_pins
|
||||||
|
&tpd12s015_pins
|
||||||
>;
|
>;
|
||||||
|
|
||||||
uart2_pins: pinmux_uart2_pins {
|
uart2_pins: pinmux_uart2_pins {
|
||||||
|
@ -194,6 +196,22 @@
|
||||||
0xbc 0x100 /* abe_mcbsp2_fsx.abe_mcbsp2_fsx INPUT | MODE0 */
|
0xbc 0x100 /* abe_mcbsp2_fsx.abe_mcbsp2_fsx INPUT | MODE0 */
|
||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dss_hdmi_pins: pinmux_dss_hdmi_pins {
|
||||||
|
pinctrl-single,pins = <
|
||||||
|
0x5a 0x118 /* hdmi_cec.hdmi_cec INPUT PULLUP | MODE 0 */
|
||||||
|
0x5c 0x118 /* hdmi_scl.hdmi_scl INPUT PULLUP | MODE 0 */
|
||||||
|
0x5e 0x118 /* hdmi_sda.hdmi_sda INPUT PULLUP | MODE 0 */
|
||||||
|
>;
|
||||||
|
};
|
||||||
|
|
||||||
|
tpd12s015_pins: pinmux_tpd12s015_pins {
|
||||||
|
pinctrl-single,pins = <
|
||||||
|
0x22 0x3 /* gpmc_a17.gpio_41 OUTPUT | MODE3 */
|
||||||
|
0x48 0x3 /* gpmc_nbe1.gpio_60 OUTPUT | MODE3 */
|
||||||
|
0x58 0x10b /* hdmi_hpd.gpio_63 INPUT PULLDOWN | MODE3 */
|
||||||
|
>;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
&i2c1 {
|
&i2c1 {
|
||||||
|
@ -406,3 +424,7 @@
|
||||||
&mcbsp3 {
|
&mcbsp3 {
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&twl_usb_comparator {
|
||||||
|
usb-supply = <&vusb>;
|
||||||
|
};
|
||||||
|
|
|
@ -95,6 +95,12 @@
|
||||||
ranges;
|
ranges;
|
||||||
ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
|
ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
|
||||||
|
|
||||||
|
counter32k: counter@4a304000 {
|
||||||
|
compatible = "ti,omap-counter32k";
|
||||||
|
reg = <0x4a304000 0x20>;
|
||||||
|
ti,hwmods = "counter_32k";
|
||||||
|
};
|
||||||
|
|
||||||
omap4_pmx_core: pinmux@4a100040 {
|
omap4_pmx_core: pinmux@4a100040 {
|
||||||
compatible = "ti,omap4-padconf", "pinctrl-single";
|
compatible = "ti,omap4-padconf", "pinctrl-single";
|
||||||
reg = <0x4a100040 0x0196>;
|
reg = <0x4a100040 0x0196>;
|
||||||
|
@ -340,7 +346,6 @@
|
||||||
<0x49032000 0x7f>; /* L3 Interconnect */
|
<0x49032000 0x7f>; /* L3 Interconnect */
|
||||||
reg-names = "mpu", "dma";
|
reg-names = "mpu", "dma";
|
||||||
interrupts = <0 112 0x4>;
|
interrupts = <0 112 0x4>;
|
||||||
interrupt-parent = <&gic>;
|
|
||||||
ti,hwmods = "mcpdm";
|
ti,hwmods = "mcpdm";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -350,7 +355,6 @@
|
||||||
<0x4902e000 0x7f>; /* L3 Interconnect */
|
<0x4902e000 0x7f>; /* L3 Interconnect */
|
||||||
reg-names = "mpu", "dma";
|
reg-names = "mpu", "dma";
|
||||||
interrupts = <0 114 0x4>;
|
interrupts = <0 114 0x4>;
|
||||||
interrupt-parent = <&gic>;
|
|
||||||
ti,hwmods = "dmic";
|
ti,hwmods = "dmic";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -361,7 +365,6 @@
|
||||||
reg-names = "mpu", "dma";
|
reg-names = "mpu", "dma";
|
||||||
interrupts = <0 17 0x4>;
|
interrupts = <0 17 0x4>;
|
||||||
interrupt-names = "common";
|
interrupt-names = "common";
|
||||||
interrupt-parent = <&gic>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp1";
|
ti,hwmods = "mcbsp1";
|
||||||
};
|
};
|
||||||
|
@ -373,7 +376,6 @@
|
||||||
reg-names = "mpu", "dma";
|
reg-names = "mpu", "dma";
|
||||||
interrupts = <0 22 0x4>;
|
interrupts = <0 22 0x4>;
|
||||||
interrupt-names = "common";
|
interrupt-names = "common";
|
||||||
interrupt-parent = <&gic>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp2";
|
ti,hwmods = "mcbsp2";
|
||||||
};
|
};
|
||||||
|
@ -385,7 +387,6 @@
|
||||||
reg-names = "mpu", "dma";
|
reg-names = "mpu", "dma";
|
||||||
interrupts = <0 23 0x4>;
|
interrupts = <0 23 0x4>;
|
||||||
interrupt-names = "common";
|
interrupt-names = "common";
|
||||||
interrupt-parent = <&gic>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp3";
|
ti,hwmods = "mcbsp3";
|
||||||
};
|
};
|
||||||
|
@ -396,7 +397,6 @@
|
||||||
reg-names = "mpu";
|
reg-names = "mpu";
|
||||||
interrupts = <0 16 0x4>;
|
interrupts = <0 16 0x4>;
|
||||||
interrupt-names = "common";
|
interrupt-names = "common";
|
||||||
interrupt-parent = <&gic>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp4";
|
ti,hwmods = "mcbsp4";
|
||||||
};
|
};
|
||||||
|
@ -431,12 +431,103 @@
|
||||||
hw-caps-temp-alert;
|
hw-caps-temp-alert;
|
||||||
};
|
};
|
||||||
|
|
||||||
ocp2scp {
|
ocp2scp@4a0ad000 {
|
||||||
compatible = "ti,omap-ocp2scp";
|
compatible = "ti,omap-ocp2scp";
|
||||||
|
reg = <0x4a0ad000 0x1f>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
ranges;
|
ranges;
|
||||||
ti,hwmods = "ocp2scp_usb_phy";
|
ti,hwmods = "ocp2scp_usb_phy";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
timer1: timer@4a318000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4a318000 0x80>;
|
||||||
|
interrupts = <0 37 0x4>;
|
||||||
|
ti,hwmods = "timer1";
|
||||||
|
ti,timer-alwon;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer2: timer@48032000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48032000 0x80>;
|
||||||
|
interrupts = <0 38 0x4>;
|
||||||
|
ti,hwmods = "timer2";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer3: timer@48034000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48034000 0x80>;
|
||||||
|
interrupts = <0 39 0x4>;
|
||||||
|
ti,hwmods = "timer3";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer4: timer@48036000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48036000 0x80>;
|
||||||
|
interrupts = <0 40 0x4>;
|
||||||
|
ti,hwmods = "timer4";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer5: timer@40138000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x40138000 0x80>,
|
||||||
|
<0x49038000 0x80>;
|
||||||
|
interrupts = <0 41 0x4>;
|
||||||
|
ti,hwmods = "timer5";
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer6: timer@4013a000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4013a000 0x80>,
|
||||||
|
<0x4903a000 0x80>;
|
||||||
|
interrupts = <0 42 0x4>;
|
||||||
|
ti,hwmods = "timer6";
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer7: timer@4013c000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4013c000 0x80>,
|
||||||
|
<0x4903c000 0x80>;
|
||||||
|
interrupts = <0 43 0x4>;
|
||||||
|
ti,hwmods = "timer7";
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer8: timer@4013e000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4013e000 0x80>,
|
||||||
|
<0x4903e000 0x80>;
|
||||||
|
interrupts = <0 44 0x4>;
|
||||||
|
ti,hwmods = "timer8";
|
||||||
|
ti,timer-pwm;
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer9: timer@4803e000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4803e000 0x80>;
|
||||||
|
interrupts = <0 45 0x4>;
|
||||||
|
ti,hwmods = "timer9";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer10: timer@48086000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48086000 0x80>;
|
||||||
|
interrupts = <0 46 0x4>;
|
||||||
|
ti,hwmods = "timer10";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer11: timer@48088000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48088000 0x80>;
|
||||||
|
interrupts = <0 47 0x4>;
|
||||||
|
ti,hwmods = "timer11";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
/dts-v1/;
|
/dts-v1/;
|
||||||
|
|
||||||
/include/ "omap5.dtsi"
|
/include/ "omap5.dtsi"
|
||||||
|
/include/ "samsung_k3pe0e000b.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
model = "TI OMAP5 EVM board";
|
model = "TI OMAP5 EVM board";
|
||||||
|
@ -15,7 +16,7 @@
|
||||||
|
|
||||||
memory {
|
memory {
|
||||||
device_type = "memory";
|
device_type = "memory";
|
||||||
reg = <0x80000000 0x40000000>; /* 1 GB */
|
reg = <0x80000000 0x80000000>; /* 2 GB */
|
||||||
};
|
};
|
||||||
|
|
||||||
vmmcsd_fixed: fixedregulator-mmcsd {
|
vmmcsd_fixed: fixedregulator-mmcsd {
|
||||||
|
@ -140,3 +141,13 @@
|
||||||
&mcbsp3 {
|
&mcbsp3 {
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&emif1 {
|
||||||
|
cs1-used;
|
||||||
|
device-handle = <&samsung_K3PE0E000B>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&emif2 {
|
||||||
|
cs1-used;
|
||||||
|
device-handle = <&samsung_K3PE0E000B>;
|
||||||
|
};
|
||||||
|
|
|
@ -77,6 +77,12 @@
|
||||||
ranges;
|
ranges;
|
||||||
ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
|
ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3";
|
||||||
|
|
||||||
|
counter32k: counter@4ae04000 {
|
||||||
|
compatible = "ti,omap-counter32k";
|
||||||
|
reg = <0x4ae04000 0x40>;
|
||||||
|
ti,hwmods = "counter_32k";
|
||||||
|
};
|
||||||
|
|
||||||
omap5_pmx_core: pinmux@4a002840 {
|
omap5_pmx_core: pinmux@4a002840 {
|
||||||
compatible = "ti,omap4-padconf", "pinctrl-single";
|
compatible = "ti,omap4-padconf", "pinctrl-single";
|
||||||
reg = <0x4a002840 0x01b6>;
|
reg = <0x4a002840 0x01b6>;
|
||||||
|
@ -104,6 +110,8 @@
|
||||||
|
|
||||||
gpio1: gpio@4ae10000 {
|
gpio1: gpio@4ae10000 {
|
||||||
compatible = "ti,omap4-gpio";
|
compatible = "ti,omap4-gpio";
|
||||||
|
reg = <0x4ae10000 0x200>;
|
||||||
|
interrupts = <0 29 0x4>;
|
||||||
ti,hwmods = "gpio1";
|
ti,hwmods = "gpio1";
|
||||||
gpio-controller;
|
gpio-controller;
|
||||||
#gpio-cells = <2>;
|
#gpio-cells = <2>;
|
||||||
|
@ -113,6 +121,8 @@
|
||||||
|
|
||||||
gpio2: gpio@48055000 {
|
gpio2: gpio@48055000 {
|
||||||
compatible = "ti,omap4-gpio";
|
compatible = "ti,omap4-gpio";
|
||||||
|
reg = <0x48055000 0x200>;
|
||||||
|
interrupts = <0 30 0x4>;
|
||||||
ti,hwmods = "gpio2";
|
ti,hwmods = "gpio2";
|
||||||
gpio-controller;
|
gpio-controller;
|
||||||
#gpio-cells = <2>;
|
#gpio-cells = <2>;
|
||||||
|
@ -122,6 +132,8 @@
|
||||||
|
|
||||||
gpio3: gpio@48057000 {
|
gpio3: gpio@48057000 {
|
||||||
compatible = "ti,omap4-gpio";
|
compatible = "ti,omap4-gpio";
|
||||||
|
reg = <0x48057000 0x200>;
|
||||||
|
interrupts = <0 31 0x4>;
|
||||||
ti,hwmods = "gpio3";
|
ti,hwmods = "gpio3";
|
||||||
gpio-controller;
|
gpio-controller;
|
||||||
#gpio-cells = <2>;
|
#gpio-cells = <2>;
|
||||||
|
@ -131,6 +143,8 @@
|
||||||
|
|
||||||
gpio4: gpio@48059000 {
|
gpio4: gpio@48059000 {
|
||||||
compatible = "ti,omap4-gpio";
|
compatible = "ti,omap4-gpio";
|
||||||
|
reg = <0x48059000 0x200>;
|
||||||
|
interrupts = <0 32 0x4>;
|
||||||
ti,hwmods = "gpio4";
|
ti,hwmods = "gpio4";
|
||||||
gpio-controller;
|
gpio-controller;
|
||||||
#gpio-cells = <2>;
|
#gpio-cells = <2>;
|
||||||
|
@ -140,6 +154,8 @@
|
||||||
|
|
||||||
gpio5: gpio@4805b000 {
|
gpio5: gpio@4805b000 {
|
||||||
compatible = "ti,omap4-gpio";
|
compatible = "ti,omap4-gpio";
|
||||||
|
reg = <0x4805b000 0x200>;
|
||||||
|
interrupts = <0 33 0x4>;
|
||||||
ti,hwmods = "gpio5";
|
ti,hwmods = "gpio5";
|
||||||
gpio-controller;
|
gpio-controller;
|
||||||
#gpio-cells = <2>;
|
#gpio-cells = <2>;
|
||||||
|
@ -149,6 +165,8 @@
|
||||||
|
|
||||||
gpio6: gpio@4805d000 {
|
gpio6: gpio@4805d000 {
|
||||||
compatible = "ti,omap4-gpio";
|
compatible = "ti,omap4-gpio";
|
||||||
|
reg = <0x4805d000 0x200>;
|
||||||
|
interrupts = <0 34 0x4>;
|
||||||
ti,hwmods = "gpio6";
|
ti,hwmods = "gpio6";
|
||||||
gpio-controller;
|
gpio-controller;
|
||||||
#gpio-cells = <2>;
|
#gpio-cells = <2>;
|
||||||
|
@ -158,6 +176,8 @@
|
||||||
|
|
||||||
gpio7: gpio@48051000 {
|
gpio7: gpio@48051000 {
|
||||||
compatible = "ti,omap4-gpio";
|
compatible = "ti,omap4-gpio";
|
||||||
|
reg = <0x48051000 0x200>;
|
||||||
|
interrupts = <0 35 0x4>;
|
||||||
ti,hwmods = "gpio7";
|
ti,hwmods = "gpio7";
|
||||||
gpio-controller;
|
gpio-controller;
|
||||||
#gpio-cells = <2>;
|
#gpio-cells = <2>;
|
||||||
|
@ -167,6 +187,8 @@
|
||||||
|
|
||||||
gpio8: gpio@48053000 {
|
gpio8: gpio@48053000 {
|
||||||
compatible = "ti,omap4-gpio";
|
compatible = "ti,omap4-gpio";
|
||||||
|
reg = <0x48053000 0x200>;
|
||||||
|
interrupts = <0 121 0x4>;
|
||||||
ti,hwmods = "gpio8";
|
ti,hwmods = "gpio8";
|
||||||
gpio-controller;
|
gpio-controller;
|
||||||
#gpio-cells = <2>;
|
#gpio-cells = <2>;
|
||||||
|
@ -176,6 +198,8 @@
|
||||||
|
|
||||||
i2c1: i2c@48070000 {
|
i2c1: i2c@48070000 {
|
||||||
compatible = "ti,omap4-i2c";
|
compatible = "ti,omap4-i2c";
|
||||||
|
reg = <0x48070000 0x100>;
|
||||||
|
interrupts = <0 56 0x4>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
ti,hwmods = "i2c1";
|
ti,hwmods = "i2c1";
|
||||||
|
@ -183,6 +207,8 @@
|
||||||
|
|
||||||
i2c2: i2c@48072000 {
|
i2c2: i2c@48072000 {
|
||||||
compatible = "ti,omap4-i2c";
|
compatible = "ti,omap4-i2c";
|
||||||
|
reg = <0x48072000 0x100>;
|
||||||
|
interrupts = <0 57 0x4>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
ti,hwmods = "i2c2";
|
ti,hwmods = "i2c2";
|
||||||
|
@ -190,20 +216,26 @@
|
||||||
|
|
||||||
i2c3: i2c@48060000 {
|
i2c3: i2c@48060000 {
|
||||||
compatible = "ti,omap4-i2c";
|
compatible = "ti,omap4-i2c";
|
||||||
|
reg = <0x48060000 0x100>;
|
||||||
|
interrupts = <0 61 0x4>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
ti,hwmods = "i2c3";
|
ti,hwmods = "i2c3";
|
||||||
};
|
};
|
||||||
|
|
||||||
i2c4: i2c@4807A000 {
|
i2c4: i2c@4807a000 {
|
||||||
compatible = "ti,omap4-i2c";
|
compatible = "ti,omap4-i2c";
|
||||||
|
reg = <0x4807a000 0x100>;
|
||||||
|
interrupts = <0 62 0x4>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
ti,hwmods = "i2c4";
|
ti,hwmods = "i2c4";
|
||||||
};
|
};
|
||||||
|
|
||||||
i2c5: i2c@4807C000 {
|
i2c5: i2c@4807c000 {
|
||||||
compatible = "ti,omap4-i2c";
|
compatible = "ti,omap4-i2c";
|
||||||
|
reg = <0x4807c000 0x100>;
|
||||||
|
interrupts = <0 60 0x4>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
ti,hwmods = "i2c5";
|
ti,hwmods = "i2c5";
|
||||||
|
@ -211,42 +243,56 @@
|
||||||
|
|
||||||
uart1: serial@4806a000 {
|
uart1: serial@4806a000 {
|
||||||
compatible = "ti,omap4-uart";
|
compatible = "ti,omap4-uart";
|
||||||
|
reg = <0x4806a000 0x100>;
|
||||||
|
interrupts = <0 72 0x4>;
|
||||||
ti,hwmods = "uart1";
|
ti,hwmods = "uart1";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
uart2: serial@4806c000 {
|
uart2: serial@4806c000 {
|
||||||
compatible = "ti,omap4-uart";
|
compatible = "ti,omap4-uart";
|
||||||
|
reg = <0x4806c000 0x100>;
|
||||||
|
interrupts = <0 73 0x4>;
|
||||||
ti,hwmods = "uart2";
|
ti,hwmods = "uart2";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
uart3: serial@48020000 {
|
uart3: serial@48020000 {
|
||||||
compatible = "ti,omap4-uart";
|
compatible = "ti,omap4-uart";
|
||||||
|
reg = <0x48020000 0x100>;
|
||||||
|
interrupts = <0 74 0x4>;
|
||||||
ti,hwmods = "uart3";
|
ti,hwmods = "uart3";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
uart4: serial@4806e000 {
|
uart4: serial@4806e000 {
|
||||||
compatible = "ti,omap4-uart";
|
compatible = "ti,omap4-uart";
|
||||||
|
reg = <0x4806e000 0x100>;
|
||||||
|
interrupts = <0 70 0x4>;
|
||||||
ti,hwmods = "uart4";
|
ti,hwmods = "uart4";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
uart5: serial@48066000 {
|
uart5: serial@48066000 {
|
||||||
compatible = "ti,omap5-uart";
|
compatible = "ti,omap4-uart";
|
||||||
|
reg = <0x48066000 0x100>;
|
||||||
|
interrupts = <0 105 0x4>;
|
||||||
ti,hwmods = "uart5";
|
ti,hwmods = "uart5";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
uart6: serial@48068000 {
|
uart6: serial@48068000 {
|
||||||
compatible = "ti,omap6-uart";
|
compatible = "ti,omap4-uart";
|
||||||
|
reg = <0x48068000 0x100>;
|
||||||
|
interrupts = <0 106 0x4>;
|
||||||
ti,hwmods = "uart6";
|
ti,hwmods = "uart6";
|
||||||
clock-frequency = <48000000>;
|
clock-frequency = <48000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
mmc1: mmc@4809c000 {
|
mmc1: mmc@4809c000 {
|
||||||
compatible = "ti,omap4-hsmmc";
|
compatible = "ti,omap4-hsmmc";
|
||||||
|
reg = <0x4809c000 0x400>;
|
||||||
|
interrupts = <0 83 0x4>;
|
||||||
ti,hwmods = "mmc1";
|
ti,hwmods = "mmc1";
|
||||||
ti,dual-volt;
|
ti,dual-volt;
|
||||||
ti,needs-special-reset;
|
ti,needs-special-reset;
|
||||||
|
@ -254,24 +300,32 @@
|
||||||
|
|
||||||
mmc2: mmc@480b4000 {
|
mmc2: mmc@480b4000 {
|
||||||
compatible = "ti,omap4-hsmmc";
|
compatible = "ti,omap4-hsmmc";
|
||||||
|
reg = <0x480b4000 0x400>;
|
||||||
|
interrupts = <0 86 0x4>;
|
||||||
ti,hwmods = "mmc2";
|
ti,hwmods = "mmc2";
|
||||||
ti,needs-special-reset;
|
ti,needs-special-reset;
|
||||||
};
|
};
|
||||||
|
|
||||||
mmc3: mmc@480ad000 {
|
mmc3: mmc@480ad000 {
|
||||||
compatible = "ti,omap4-hsmmc";
|
compatible = "ti,omap4-hsmmc";
|
||||||
|
reg = <0x480ad000 0x400>;
|
||||||
|
interrupts = <0 94 0x4>;
|
||||||
ti,hwmods = "mmc3";
|
ti,hwmods = "mmc3";
|
||||||
ti,needs-special-reset;
|
ti,needs-special-reset;
|
||||||
};
|
};
|
||||||
|
|
||||||
mmc4: mmc@480d1000 {
|
mmc4: mmc@480d1000 {
|
||||||
compatible = "ti,omap4-hsmmc";
|
compatible = "ti,omap4-hsmmc";
|
||||||
|
reg = <0x480d1000 0x400>;
|
||||||
|
interrupts = <0 96 0x4>;
|
||||||
ti,hwmods = "mmc4";
|
ti,hwmods = "mmc4";
|
||||||
ti,needs-special-reset;
|
ti,needs-special-reset;
|
||||||
};
|
};
|
||||||
|
|
||||||
mmc5: mmc@480d5000 {
|
mmc5: mmc@480d5000 {
|
||||||
compatible = "ti,omap4-hsmmc";
|
compatible = "ti,omap4-hsmmc";
|
||||||
|
reg = <0x480d5000 0x400>;
|
||||||
|
interrupts = <0 59 0x4>;
|
||||||
ti,hwmods = "mmc5";
|
ti,hwmods = "mmc5";
|
||||||
ti,needs-special-reset;
|
ti,needs-special-reset;
|
||||||
};
|
};
|
||||||
|
@ -287,7 +341,6 @@
|
||||||
<0x49032000 0x7f>; /* L3 Interconnect */
|
<0x49032000 0x7f>; /* L3 Interconnect */
|
||||||
reg-names = "mpu", "dma";
|
reg-names = "mpu", "dma";
|
||||||
interrupts = <0 112 0x4>;
|
interrupts = <0 112 0x4>;
|
||||||
interrupt-parent = <&gic>;
|
|
||||||
ti,hwmods = "mcpdm";
|
ti,hwmods = "mcpdm";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -297,7 +350,6 @@
|
||||||
<0x4902e000 0x7f>; /* L3 Interconnect */
|
<0x4902e000 0x7f>; /* L3 Interconnect */
|
||||||
reg-names = "mpu", "dma";
|
reg-names = "mpu", "dma";
|
||||||
interrupts = <0 114 0x4>;
|
interrupts = <0 114 0x4>;
|
||||||
interrupt-parent = <&gic>;
|
|
||||||
ti,hwmods = "dmic";
|
ti,hwmods = "dmic";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -308,7 +360,6 @@
|
||||||
reg-names = "mpu", "dma";
|
reg-names = "mpu", "dma";
|
||||||
interrupts = <0 17 0x4>;
|
interrupts = <0 17 0x4>;
|
||||||
interrupt-names = "common";
|
interrupt-names = "common";
|
||||||
interrupt-parent = <&gic>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp1";
|
ti,hwmods = "mcbsp1";
|
||||||
};
|
};
|
||||||
|
@ -320,7 +371,6 @@
|
||||||
reg-names = "mpu", "dma";
|
reg-names = "mpu", "dma";
|
||||||
interrupts = <0 22 0x4>;
|
interrupts = <0 22 0x4>;
|
||||||
interrupt-names = "common";
|
interrupt-names = "common";
|
||||||
interrupt-parent = <&gic>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp2";
|
ti,hwmods = "mcbsp2";
|
||||||
};
|
};
|
||||||
|
@ -332,9 +382,119 @@
|
||||||
reg-names = "mpu", "dma";
|
reg-names = "mpu", "dma";
|
||||||
interrupts = <0 23 0x4>;
|
interrupts = <0 23 0x4>;
|
||||||
interrupt-names = "common";
|
interrupt-names = "common";
|
||||||
interrupt-parent = <&gic>;
|
|
||||||
ti,buffer-size = <128>;
|
ti,buffer-size = <128>;
|
||||||
ti,hwmods = "mcbsp3";
|
ti,hwmods = "mcbsp3";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
timer1: timer@4ae18000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4ae18000 0x80>;
|
||||||
|
interrupts = <0 37 0x4>;
|
||||||
|
ti,hwmods = "timer1";
|
||||||
|
ti,timer-alwon;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer2: timer@48032000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48032000 0x80>;
|
||||||
|
interrupts = <0 38 0x4>;
|
||||||
|
ti,hwmods = "timer2";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer3: timer@48034000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48034000 0x80>;
|
||||||
|
interrupts = <0 39 0x4>;
|
||||||
|
ti,hwmods = "timer3";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer4: timer@48036000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48036000 0x80>;
|
||||||
|
interrupts = <0 40 0x4>;
|
||||||
|
ti,hwmods = "timer4";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer5: timer@40138000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x40138000 0x80>,
|
||||||
|
<0x49038000 0x80>;
|
||||||
|
interrupts = <0 41 0x4>;
|
||||||
|
ti,hwmods = "timer5";
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer6: timer@4013a000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4013a000 0x80>,
|
||||||
|
<0x4903a000 0x80>;
|
||||||
|
interrupts = <0 42 0x4>;
|
||||||
|
ti,hwmods = "timer6";
|
||||||
|
ti,timer-dsp;
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer7: timer@4013c000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4013c000 0x80>,
|
||||||
|
<0x4903c000 0x80>;
|
||||||
|
interrupts = <0 43 0x4>;
|
||||||
|
ti,hwmods = "timer7";
|
||||||
|
ti,timer-dsp;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer8: timer@4013e000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4013e000 0x80>,
|
||||||
|
<0x4903e000 0x80>;
|
||||||
|
interrupts = <0 44 0x4>;
|
||||||
|
ti,hwmods = "timer8";
|
||||||
|
ti,timer-dsp;
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
timer9: timer@4803e000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x4803e000 0x80>;
|
||||||
|
interrupts = <0 45 0x4>;
|
||||||
|
ti,hwmods = "timer9";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer10: timer@48086000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48086000 0x80>;
|
||||||
|
interrupts = <0 46 0x4>;
|
||||||
|
ti,hwmods = "timer10";
|
||||||
|
};
|
||||||
|
|
||||||
|
timer11: timer@48088000 {
|
||||||
|
compatible = "ti,omap2-timer";
|
||||||
|
reg = <0x48088000 0x80>;
|
||||||
|
interrupts = <0 47 0x4>;
|
||||||
|
ti,hwmods = "timer11";
|
||||||
|
ti,timer-pwm;
|
||||||
|
};
|
||||||
|
|
||||||
|
emif1: emif@0x4c000000 {
|
||||||
|
compatible = "ti,emif-4d5";
|
||||||
|
ti,hwmods = "emif1";
|
||||||
|
phy-type = <2>; /* DDR PHY type: Intelli PHY */
|
||||||
|
reg = <0x4c000000 0x400>;
|
||||||
|
interrupts = <0 110 0x4>;
|
||||||
|
hw-caps-read-idle-ctrl;
|
||||||
|
hw-caps-ll-interface;
|
||||||
|
hw-caps-temp-alert;
|
||||||
|
};
|
||||||
|
|
||||||
|
emif2: emif@0x4d000000 {
|
||||||
|
compatible = "ti,emif-4d5";
|
||||||
|
ti,hwmods = "emif2";
|
||||||
|
phy-type = <2>; /* DDR PHY type: Intelli PHY */
|
||||||
|
reg = <0x4d000000 0x400>;
|
||||||
|
interrupts = <0 111 0x4>;
|
||||||
|
hw-caps-read-idle-ctrl;
|
||||||
|
hw-caps-ll-interface;
|
||||||
|
hw-caps-temp-alert;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -0,0 +1,67 @@
|
||||||
|
/*
|
||||||
|
* Timings and Geometry for Samsung K3PE0E000B memory part
|
||||||
|
*/
|
||||||
|
|
||||||
|
/ {
|
||||||
|
samsung_K3PE0E000B: lpddr2 {
|
||||||
|
compatible = "Samsung,K3PE0E000B","jedec,lpddr2-s4";
|
||||||
|
density = <4096>;
|
||||||
|
io-width = <32>;
|
||||||
|
|
||||||
|
tRPab-min-tck = <3>;
|
||||||
|
tRCD-min-tck = <3>;
|
||||||
|
tWR-min-tck = <3>;
|
||||||
|
tRASmin-min-tck = <3>;
|
||||||
|
tRRD-min-tck = <2>;
|
||||||
|
tWTR-min-tck = <2>;
|
||||||
|
tXP-min-tck = <2>;
|
||||||
|
tRTP-min-tck = <2>;
|
||||||
|
tCKE-min-tck = <3>;
|
||||||
|
tCKESR-min-tck = <3>;
|
||||||
|
tFAW-min-tck = <8>;
|
||||||
|
|
||||||
|
timings_samsung_K3PE0E000B_533MHz: lpddr2-timings@0 {
|
||||||
|
compatible = "jedec,lpddr2-timings";
|
||||||
|
min-freq = <10000000>;
|
||||||
|
max-freq = <533333333>;
|
||||||
|
tRPab = <21000>;
|
||||||
|
tRCD = <18000>;
|
||||||
|
tWR = <15000>;
|
||||||
|
tRAS-min = <42000>;
|
||||||
|
tRRD = <10000>;
|
||||||
|
tWTR = <7500>;
|
||||||
|
tXP = <7500>;
|
||||||
|
tRTP = <7500>;
|
||||||
|
tCKESR = <15000>;
|
||||||
|
tDQSCK-max = <5500>;
|
||||||
|
tFAW = <50000>;
|
||||||
|
tZQCS = <90000>;
|
||||||
|
tZQCL = <360000>;
|
||||||
|
tZQinit = <1000000>;
|
||||||
|
tRAS-max-ns = <70000>;
|
||||||
|
tDQSCK-max-derated = <6000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
timings_samsung_K3PE0E000B_266MHz: lpddr2-timings@1 {
|
||||||
|
compatible = "jedec,lpddr2-timings";
|
||||||
|
min-freq = <10000000>;
|
||||||
|
max-freq = <266666666>;
|
||||||
|
tRPab = <21000>;
|
||||||
|
tRCD = <18000>;
|
||||||
|
tWR = <15000>;
|
||||||
|
tRAS-min = <42000>;
|
||||||
|
tRRD = <10000>;
|
||||||
|
tWTR = <7500>;
|
||||||
|
tXP = <7500>;
|
||||||
|
tRTP = <7500>;
|
||||||
|
tCKESR = <15000>;
|
||||||
|
tDQSCK-max = <5500>;
|
||||||
|
tFAW = <50000>;
|
||||||
|
tZQCS = <90000>;
|
||||||
|
tZQCL = <360000>;
|
||||||
|
tZQinit = <1000000>;
|
||||||
|
tRAS-max-ns = <70000>;
|
||||||
|
tDQSCK-max-derated = <6000>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
|
@ -37,6 +37,24 @@
|
||||||
regulator-max-microvolt = <3150000>;
|
regulator-max-microvolt = <3150000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vusb1v5: regulator-vusb1v5 {
|
||||||
|
compatible = "ti,twl4030-vusb1v5";
|
||||||
|
};
|
||||||
|
|
||||||
|
vusb1v8: regulator-vusb1v8 {
|
||||||
|
compatible = "ti,twl4030-vusb1v8";
|
||||||
|
};
|
||||||
|
|
||||||
|
vusb3v1: regulator-vusb3v1 {
|
||||||
|
compatible = "ti,twl4030-vusb3v1";
|
||||||
|
};
|
||||||
|
|
||||||
|
vsim: regulator-vsim {
|
||||||
|
compatible = "ti,twl4030-vsim";
|
||||||
|
regulator-min-microvolt = <1800000>;
|
||||||
|
regulator-max-microvolt = <3000000>;
|
||||||
|
};
|
||||||
|
|
||||||
twl_gpio: gpio {
|
twl_gpio: gpio {
|
||||||
compatible = "ti,twl4030-gpio";
|
compatible = "ti,twl4030-gpio";
|
||||||
gpio-controller;
|
gpio-controller;
|
||||||
|
@ -44,4 +62,13 @@
|
||||||
interrupt-controller;
|
interrupt-controller;
|
||||||
#interrupt-cells = <1>;
|
#interrupt-cells = <1>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
twl4030-usb {
|
||||||
|
compatible = "ti,twl4030-usb";
|
||||||
|
interrupts = <10>, <4>;
|
||||||
|
usb1v5-supply = <&vusb1v5>;
|
||||||
|
usb1v8-supply = <&vusb1v8>;
|
||||||
|
usb3v1-supply = <&vusb3v1>;
|
||||||
|
usb_mode = <1>;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -86,4 +86,9 @@
|
||||||
clk32kg: regulator-clk32kg {
|
clk32kg: regulator-clk32kg {
|
||||||
compatible = "ti,twl6030-clk32kg";
|
compatible = "ti,twl6030-clk32kg";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
twl_usb_comparator: usb-comparator {
|
||||||
|
compatible = "ti,twl6030-usb";
|
||||||
|
interrupts = <4>, <10>;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -139,6 +139,7 @@ CONFIG_I2C_IMX=y
|
||||||
CONFIG_SPI=y
|
CONFIG_SPI=y
|
||||||
CONFIG_SPI_IMX=y
|
CONFIG_SPI_IMX=y
|
||||||
CONFIG_GPIO_SYSFS=y
|
CONFIG_GPIO_SYSFS=y
|
||||||
|
CONFIG_GPIO_MC9S08DZ60=y
|
||||||
# CONFIG_HWMON is not set
|
# CONFIG_HWMON is not set
|
||||||
CONFIG_WATCHDOG=y
|
CONFIG_WATCHDOG=y
|
||||||
CONFIG_IMX2_WDT=y
|
CONFIG_IMX2_WDT=y
|
||||||
|
@ -155,6 +156,7 @@ CONFIG_SOC_CAMERA=y
|
||||||
CONFIG_SOC_CAMERA_OV2640=y
|
CONFIG_SOC_CAMERA_OV2640=y
|
||||||
CONFIG_VIDEO_MX3=y
|
CONFIG_VIDEO_MX3=y
|
||||||
CONFIG_FB=y
|
CONFIG_FB=y
|
||||||
|
CONFIG_LCD_PLATFORM=y
|
||||||
CONFIG_BACKLIGHT_LCD_SUPPORT=y
|
CONFIG_BACKLIGHT_LCD_SUPPORT=y
|
||||||
CONFIG_LCD_CLASS_DEVICE=y
|
CONFIG_LCD_CLASS_DEVICE=y
|
||||||
CONFIG_LCD_L4F00242T03=y
|
CONFIG_LCD_L4F00242T03=y
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
CONFIG_EXPERIMENTAL=y
|
CONFIG_EXPERIMENTAL=y
|
||||||
CONFIG_SYSVIPC=y
|
CONFIG_SYSVIPC=y
|
||||||
CONFIG_NO_HZ=y
|
CONFIG_IRQ_DOMAIN_DEBUG=y
|
||||||
CONFIG_HIGH_RES_TIMERS=y
|
CONFIG_HIGH_RES_TIMERS=y
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
CONFIG_BLK_DEV_INITRD=y
|
CONFIG_BLK_DEV_INITRD=y
|
||||||
|
@ -9,10 +9,12 @@ CONFIG_SLAB=y
|
||||||
CONFIG_MODULES=y
|
CONFIG_MODULES=y
|
||||||
CONFIG_MODULE_UNLOAD=y
|
CONFIG_MODULE_UNLOAD=y
|
||||||
CONFIG_ARCH_MVEBU=y
|
CONFIG_ARCH_MVEBU=y
|
||||||
CONFIG_MACH_ARMADA_370_XP=y
|
CONFIG_MACH_ARMADA_370=y
|
||||||
|
CONFIG_MACH_ARMADA_XP=y
|
||||||
|
# CONFIG_CACHE_L2X0 is not set
|
||||||
CONFIG_AEABI=y
|
CONFIG_AEABI=y
|
||||||
CONFIG_HIGHMEM=y
|
CONFIG_HIGHMEM=y
|
||||||
CONFIG_USE_OF=y
|
# CONFIG_COMPACTION is not set
|
||||||
CONFIG_ZBOOT_ROM_TEXT=0x0
|
CONFIG_ZBOOT_ROM_TEXT=0x0
|
||||||
CONFIG_ZBOOT_ROM_BSS=0x0
|
CONFIG_ZBOOT_ROM_BSS=0x0
|
||||||
CONFIG_ARM_APPENDED_DTB=y
|
CONFIG_ARM_APPENDED_DTB=y
|
||||||
|
@ -23,6 +25,8 @@ CONFIG_SERIAL_8250_CONSOLE=y
|
||||||
CONFIG_SERIAL_OF_PLATFORM=y
|
CONFIG_SERIAL_OF_PLATFORM=y
|
||||||
CONFIG_GPIOLIB=y
|
CONFIG_GPIOLIB=y
|
||||||
CONFIG_GPIO_SYSFS=y
|
CONFIG_GPIO_SYSFS=y
|
||||||
|
# CONFIG_USB_SUPPORT is not set
|
||||||
|
# CONFIG_IOMMU_SUPPORT is not set
|
||||||
CONFIG_EXT2_FS=y
|
CONFIG_EXT2_FS=y
|
||||||
CONFIG_EXT3_FS=y
|
CONFIG_EXT3_FS=y
|
||||||
# CONFIG_EXT3_FS_XATTR is not set
|
# CONFIG_EXT3_FS_XATTR is not set
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
CONFIG_ARCH_VERSATILE=y
|
||||||
CONFIG_EXPERIMENTAL=y
|
CONFIG_EXPERIMENTAL=y
|
||||||
# CONFIG_LOCALVERSION_AUTO is not set
|
# CONFIG_LOCALVERSION_AUTO is not set
|
||||||
CONFIG_SYSVIPC=y
|
CONFIG_SYSVIPC=y
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#define flat_argvp_envp_on_stack() 1
|
#define flat_argvp_envp_on_stack() 1
|
||||||
#define flat_old_ram_flag(flags) (flags)
|
#define flat_old_ram_flag(flags) (flags)
|
||||||
#define flat_reloc_valid(reloc, size) ((reloc) <= (size))
|
#define flat_reloc_valid(reloc, size) ((reloc) <= (size))
|
||||||
#define flat_get_addr_from_rp(rp, relval, flags, persistent) get_unaligned(rp)
|
#define flat_get_addr_from_rp(rp, relval, flags, persistent) ((void)persistent,get_unaligned(rp))
|
||||||
#define flat_put_addr_at_rp(rp, val, relval) put_unaligned(val,rp)
|
#define flat_put_addr_at_rp(rp, val, relval) put_unaligned(val,rp)
|
||||||
#define flat_get_relocate_addr(rel) (rel)
|
#define flat_get_relocate_addr(rel) (rel)
|
||||||
#define flat_set_persistent(relval, p) 0
|
#define flat_set_persistent(relval, p) 0
|
||||||
|
|
|
@ -200,8 +200,8 @@ extern int __put_user_8(void *, unsigned long long);
|
||||||
#define USER_DS KERNEL_DS
|
#define USER_DS KERNEL_DS
|
||||||
|
|
||||||
#define segment_eq(a,b) (1)
|
#define segment_eq(a,b) (1)
|
||||||
#define __addr_ok(addr) (1)
|
#define __addr_ok(addr) ((void)(addr),1)
|
||||||
#define __range_ok(addr,size) (0)
|
#define __range_ok(addr,size) ((void)(addr),0)
|
||||||
#define get_fs() (KERNEL_DS)
|
#define get_fs() (KERNEL_DS)
|
||||||
|
|
||||||
static inline void set_fs(mm_segment_t fs)
|
static inline void set_fs(mm_segment_t fs)
|
||||||
|
|
|
@ -29,16 +29,22 @@
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
/* Explicitly size integers that represent pfns in the interface with
|
/* Explicitly size integers that represent pfns in the interface with
|
||||||
* Xen so that we can have one ABI that works for 32 and 64 bit guests. */
|
* Xen so that we can have one ABI that works for 32 and 64 bit guests.
|
||||||
|
* Note that this means that the xen_pfn_t type may be capable of
|
||||||
|
* representing pfn's which the guest cannot represent in its own pfn
|
||||||
|
* type. However since pfn space is controlled by the guest this is
|
||||||
|
* fine since it simply wouldn't be able to create any sure pfns in
|
||||||
|
* the first place.
|
||||||
|
*/
|
||||||
typedef uint64_t xen_pfn_t;
|
typedef uint64_t xen_pfn_t;
|
||||||
|
#define PRI_xen_pfn "llx"
|
||||||
typedef uint64_t xen_ulong_t;
|
typedef uint64_t xen_ulong_t;
|
||||||
|
#define PRI_xen_ulong "llx"
|
||||||
/* Guest handles for primitive C types. */
|
/* Guest handles for primitive C types. */
|
||||||
__DEFINE_GUEST_HANDLE(uchar, unsigned char);
|
__DEFINE_GUEST_HANDLE(uchar, unsigned char);
|
||||||
__DEFINE_GUEST_HANDLE(uint, unsigned int);
|
__DEFINE_GUEST_HANDLE(uint, unsigned int);
|
||||||
__DEFINE_GUEST_HANDLE(ulong, unsigned long);
|
|
||||||
DEFINE_GUEST_HANDLE(char);
|
DEFINE_GUEST_HANDLE(char);
|
||||||
DEFINE_GUEST_HANDLE(int);
|
DEFINE_GUEST_HANDLE(int);
|
||||||
DEFINE_GUEST_HANDLE(long);
|
|
||||||
DEFINE_GUEST_HANDLE(void);
|
DEFINE_GUEST_HANDLE(void);
|
||||||
DEFINE_GUEST_HANDLE(uint64_t);
|
DEFINE_GUEST_HANDLE(uint64_t);
|
||||||
DEFINE_GUEST_HANDLE(uint32_t);
|
DEFINE_GUEST_HANDLE(uint32_t);
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
#include <xen/interface/grant_table.h>
|
#include <xen/interface/grant_table.h>
|
||||||
|
|
||||||
#define pfn_to_mfn(pfn) (pfn)
|
#define pfn_to_mfn(pfn) (pfn)
|
||||||
#define phys_to_machine_mapping_valid (1)
|
#define phys_to_machine_mapping_valid(pfn) (1)
|
||||||
#define mfn_to_pfn(mfn) (mfn)
|
#define mfn_to_pfn(mfn) (mfn)
|
||||||
#define mfn_to_virt(m) (__va(mfn_to_pfn(m) << PAGE_SHIFT))
|
#define mfn_to_virt(m) (__va(mfn_to_pfn(m) << PAGE_SHIFT))
|
||||||
|
|
||||||
|
@ -30,6 +30,8 @@ typedef struct xpaddr {
|
||||||
#define XMADDR(x) ((xmaddr_t) { .maddr = (x) })
|
#define XMADDR(x) ((xmaddr_t) { .maddr = (x) })
|
||||||
#define XPADDR(x) ((xpaddr_t) { .paddr = (x) })
|
#define XPADDR(x) ((xpaddr_t) { .paddr = (x) })
|
||||||
|
|
||||||
|
#define INVALID_P2M_ENTRY (~0UL)
|
||||||
|
|
||||||
static inline xmaddr_t phys_to_machine(xpaddr_t phys)
|
static inline xmaddr_t phys_to_machine(xpaddr_t phys)
|
||||||
{
|
{
|
||||||
unsigned offset = phys.paddr & ~PAGE_MASK;
|
unsigned offset = phys.paddr & ~PAGE_MASK;
|
||||||
|
@ -74,9 +76,14 @@ static inline int m2p_remove_override(struct page *page, bool clear_pte)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline bool __set_phys_to_machine(unsigned long pfn, unsigned long mfn)
|
||||||
|
{
|
||||||
|
BUG_ON(pfn != mfn && mfn != INVALID_P2M_ENTRY);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
static inline bool set_phys_to_machine(unsigned long pfn, unsigned long mfn)
|
static inline bool set_phys_to_machine(unsigned long pfn, unsigned long mfn)
|
||||||
{
|
{
|
||||||
BUG();
|
return __set_phys_to_machine(pfn, mfn);
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
#endif /* _ASM_ARM_XEN_PAGE_H */
|
#endif /* _ASM_ARM_XEN_PAGE_H */
|
||||||
|
|
|
@ -0,0 +1,27 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2011 Picochip Ltd., Jamie Iles
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* Derived from arch/arm/mach-davinci/include/mach/debug-macro.S to use 32-bit
|
||||||
|
* accesses to the 8250.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <linux/serial_reg.h>
|
||||||
|
|
||||||
|
.macro senduart,rd,rx
|
||||||
|
str \rd, [\rx, #UART_TX << UART_SHIFT]
|
||||||
|
.endm
|
||||||
|
|
||||||
|
.macro busyuart,rd,rx
|
||||||
|
1002: ldr \rd, [\rx, #UART_LSR << UART_SHIFT]
|
||||||
|
and \rd, \rd, #UART_LSR_TEMT | UART_LSR_THRE
|
||||||
|
teq \rd, #UART_LSR_TEMT | UART_LSR_THRE
|
||||||
|
bne 1002b
|
||||||
|
.endm
|
||||||
|
|
||||||
|
/* The UART's don't have any flow control IO's wired up. */
|
||||||
|
.macro waituart,rd,rx
|
||||||
|
.endm
|
|
@ -5,10 +5,7 @@
|
||||||
* it under the terms of the GNU General Public License version 2 as
|
* it under the terms of the GNU General Public License version 2 as
|
||||||
* published by the Free Software Foundation.
|
* published by the Free Software Foundation.
|
||||||
*
|
*
|
||||||
* Derived from arch/arm/mach-davinci/include/mach/debug-macro.S to use 32-bit
|
|
||||||
* accesses to the 8250.
|
|
||||||
*/
|
*/
|
||||||
#include <linux/serial_reg.h>
|
|
||||||
|
|
||||||
#define UART_SHIFT 2
|
#define UART_SHIFT 2
|
||||||
#define PICOXCELL_UART1_BASE 0x80230000
|
#define PICOXCELL_UART1_BASE 0x80230000
|
||||||
|
@ -19,17 +16,4 @@
|
||||||
ldr \rp, =PICOXCELL_UART1_BASE
|
ldr \rp, =PICOXCELL_UART1_BASE
|
||||||
.endm
|
.endm
|
||||||
|
|
||||||
.macro senduart,rd,rx
|
#include "8250_32.S"
|
||||||
str \rd, [\rx, #UART_TX << UART_SHIFT]
|
|
||||||
.endm
|
|
||||||
|
|
||||||
.macro busyuart,rd,rx
|
|
||||||
1002: ldr \rd, [\rx, #UART_LSR << UART_SHIFT]
|
|
||||||
and \rd, \rd, #UART_LSR_TEMT | UART_LSR_THRE
|
|
||||||
teq \rd, #UART_LSR_TEMT | UART_LSR_THRE
|
|
||||||
bne 1002b
|
|
||||||
.endm
|
|
||||||
|
|
||||||
/* The UART's don't have any flow control IO's wired up. */
|
|
||||||
.macro waituart,rd,rx
|
|
||||||
.endm
|
|
||||||
|
|
|
@ -7,6 +7,9 @@
|
||||||
* published by the Free Software Foundation.
|
* published by the Free Software Foundation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define UART_SHIFT 2
|
||||||
|
#define DEBUG_LL_UART_OFFSET 0x00002000
|
||||||
|
|
||||||
.macro addruart, rp, rv, tmp
|
.macro addruart, rp, rv, tmp
|
||||||
mov \rp, #DEBUG_LL_UART_OFFSET
|
mov \rp, #DEBUG_LL_UART_OFFSET
|
||||||
orr \rp, \rp, #0x00c00000
|
orr \rp, \rp, #0x00c00000
|
||||||
|
@ -14,3 +17,5 @@
|
||||||
orr \rp, \rp, #0xff000000 @ physical base
|
orr \rp, \rp, #0xff000000 @ physical base
|
||||||
.endm
|
.endm
|
||||||
|
|
||||||
|
#include "8250_32.S"
|
||||||
|
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
#include <linux/list.h>
|
#include <linux/list.h>
|
||||||
#include <linux/kallsyms.h>
|
#include <linux/kallsyms.h>
|
||||||
#include <linux/proc_fs.h>
|
#include <linux/proc_fs.h>
|
||||||
|
#include <linux/export.h>
|
||||||
|
|
||||||
#include <asm/exception.h>
|
#include <asm/exception.h>
|
||||||
#include <asm/mach/arch.h>
|
#include <asm/mach/arch.h>
|
||||||
|
@ -109,6 +110,7 @@ void set_irq_flags(unsigned int irq, unsigned int iflags)
|
||||||
/* Order is clear bits in "clr" then set bits in "set" */
|
/* Order is clear bits in "clr" then set bits in "set" */
|
||||||
irq_modify_status(irq, clr, set & ~clr);
|
irq_modify_status(irq, clr, set & ~clr);
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(set_irq_flags);
|
||||||
|
|
||||||
void __init init_IRQ(void)
|
void __init init_IRQ(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -366,7 +366,9 @@ void kprobe_arm_test_cases(void)
|
||||||
TEST_UNSUPPORTED(".word 0xe04f0392 @ umaal r0, pc, r2, r3")
|
TEST_UNSUPPORTED(".word 0xe04f0392 @ umaal r0, pc, r2, r3")
|
||||||
TEST_UNSUPPORTED(".word 0xe0500090 @ undef")
|
TEST_UNSUPPORTED(".word 0xe0500090 @ undef")
|
||||||
TEST_UNSUPPORTED(".word 0xe05fff9f @ undef")
|
TEST_UNSUPPORTED(".word 0xe05fff9f @ undef")
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if __LINUX_ARM_ARCH__ >= 7
|
||||||
TEST_RRR( "mls r0, r",1, VAL1,", r",2, VAL2,", r",3, VAL3,"")
|
TEST_RRR( "mls r0, r",1, VAL1,", r",2, VAL2,", r",3, VAL3,"")
|
||||||
TEST_RRR( "mlshi r7, r",8, VAL3,", r",9, VAL1,", r",10, VAL2,"")
|
TEST_RRR( "mlshi r7, r",8, VAL3,", r",9, VAL1,", r",10, VAL2,"")
|
||||||
TEST_RR( "mls lr, r",1, VAL2,", r",2, VAL3,", r13")
|
TEST_RR( "mls lr, r",1, VAL2,", r",2, VAL3,", r13")
|
||||||
|
@ -456,6 +458,8 @@ void kprobe_arm_test_cases(void)
|
||||||
TEST_UNSUPPORTED(".word 0xe1700090") /* Unallocated space */
|
TEST_UNSUPPORTED(".word 0xe1700090") /* Unallocated space */
|
||||||
#if __LINUX_ARM_ARCH__ >= 6
|
#if __LINUX_ARM_ARCH__ >= 6
|
||||||
TEST_UNSUPPORTED("ldrex r2, [sp]")
|
TEST_UNSUPPORTED("ldrex r2, [sp]")
|
||||||
|
#endif
|
||||||
|
#if (__LINUX_ARM_ARCH__ >= 7) || defined(CONFIG_CPU_32v6K)
|
||||||
TEST_UNSUPPORTED("strexd r0, r2, r3, [sp]")
|
TEST_UNSUPPORTED("strexd r0, r2, r3, [sp]")
|
||||||
TEST_UNSUPPORTED("ldrexd r2, r3, [sp]")
|
TEST_UNSUPPORTED("ldrexd r2, r3, [sp]")
|
||||||
TEST_UNSUPPORTED("strexb r0, r2, [sp]")
|
TEST_UNSUPPORTED("strexb r0, r2, [sp]")
|
||||||
|
|
|
@ -45,10 +45,9 @@ int machine_kexec_prepare(struct kimage *image)
|
||||||
for (i = 0; i < image->nr_segments; i++) {
|
for (i = 0; i < image->nr_segments; i++) {
|
||||||
current_segment = &image->segment[i];
|
current_segment = &image->segment[i];
|
||||||
|
|
||||||
err = memblock_is_region_memory(current_segment->mem,
|
if (!memblock_is_region_memory(current_segment->mem,
|
||||||
current_segment->memsz);
|
current_segment->memsz))
|
||||||
if (err)
|
return -EINVAL;
|
||||||
return - EINVAL;
|
|
||||||
|
|
||||||
err = get_user(header, (__be32*)current_segment->buf);
|
err = get_user(header, (__be32*)current_segment->buf);
|
||||||
if (err)
|
if (err)
|
||||||
|
|
|
@ -96,6 +96,10 @@ armpmu_event_set_period(struct perf_event *event,
|
||||||
s64 period = hwc->sample_period;
|
s64 period = hwc->sample_period;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
|
/* The period may have been changed by PERF_EVENT_IOC_PERIOD */
|
||||||
|
if (unlikely(period != hwc->last_period))
|
||||||
|
left = period - (hwc->last_period - left);
|
||||||
|
|
||||||
if (unlikely(left <= -period)) {
|
if (unlikely(left <= -period)) {
|
||||||
left = period;
|
left = period;
|
||||||
local64_set(&hwc->period_left, left);
|
local64_set(&hwc->period_left, left);
|
||||||
|
|
|
@ -294,18 +294,24 @@ static void percpu_timer_setup(void);
|
||||||
asmlinkage void __cpuinit secondary_start_kernel(void)
|
asmlinkage void __cpuinit secondary_start_kernel(void)
|
||||||
{
|
{
|
||||||
struct mm_struct *mm = &init_mm;
|
struct mm_struct *mm = &init_mm;
|
||||||
unsigned int cpu = smp_processor_id();
|
unsigned int cpu;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The identity mapping is uncached (strongly ordered), so
|
||||||
|
* switch away from it before attempting any exclusive accesses.
|
||||||
|
*/
|
||||||
|
cpu_switch_mm(mm->pgd, mm);
|
||||||
|
enter_lazy_tlb(mm, current);
|
||||||
|
local_flush_tlb_all();
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* All kernel threads share the same mm context; grab a
|
* All kernel threads share the same mm context; grab a
|
||||||
* reference and switch to it.
|
* reference and switch to it.
|
||||||
*/
|
*/
|
||||||
|
cpu = smp_processor_id();
|
||||||
atomic_inc(&mm->mm_count);
|
atomic_inc(&mm->mm_count);
|
||||||
current->active_mm = mm;
|
current->active_mm = mm;
|
||||||
cpumask_set_cpu(cpu, mm_cpumask(mm));
|
cpumask_set_cpu(cpu, mm_cpumask(mm));
|
||||||
cpu_switch_mm(mm->pgd, mm);
|
|
||||||
enter_lazy_tlb(mm, current);
|
|
||||||
local_flush_tlb_all();
|
|
||||||
|
|
||||||
printk("CPU%u: Booted secondary processor\n", cpu);
|
printk("CPU%u: Booted secondary processor\n", cpu);
|
||||||
|
|
||||||
|
|
|
@ -42,10 +42,10 @@ static void twd_set_mode(enum clock_event_mode mode,
|
||||||
|
|
||||||
switch (mode) {
|
switch (mode) {
|
||||||
case CLOCK_EVT_MODE_PERIODIC:
|
case CLOCK_EVT_MODE_PERIODIC:
|
||||||
/* timer load already set up */
|
|
||||||
ctrl = TWD_TIMER_CONTROL_ENABLE | TWD_TIMER_CONTROL_IT_ENABLE
|
ctrl = TWD_TIMER_CONTROL_ENABLE | TWD_TIMER_CONTROL_IT_ENABLE
|
||||||
| TWD_TIMER_CONTROL_PERIODIC;
|
| TWD_TIMER_CONTROL_PERIODIC;
|
||||||
__raw_writel(twd_timer_rate / HZ, twd_base + TWD_TIMER_LOAD);
|
__raw_writel(DIV_ROUND_CLOSEST(twd_timer_rate, HZ),
|
||||||
|
twd_base + TWD_TIMER_LOAD);
|
||||||
break;
|
break;
|
||||||
case CLOCK_EVT_MODE_ONESHOT:
|
case CLOCK_EVT_MODE_ONESHOT:
|
||||||
/* period set, and timer enabled in 'next_event' hook */
|
/* period set, and timer enabled in 'next_event' hook */
|
||||||
|
|
|
@ -45,6 +45,7 @@ int read_current_timer(unsigned long *timer_val)
|
||||||
*timer_val = delay_timer->read_current_timer();
|
*timer_val = delay_timer->read_current_timer();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(read_current_timer);
|
||||||
|
|
||||||
static void __timer_delay(unsigned long cycles)
|
static void __timer_delay(unsigned long cycles)
|
||||||
{
|
{
|
||||||
|
|
|
@ -21,19 +21,13 @@ config SOC_AT91SAM9
|
||||||
bool
|
bool
|
||||||
select CPU_ARM926T
|
select CPU_ARM926T
|
||||||
select GENERIC_CLOCKEVENTS
|
select GENERIC_CLOCKEVENTS
|
||||||
|
select MULTI_IRQ_HANDLER
|
||||||
|
select SPARSE_IRQ
|
||||||
|
|
||||||
menu "Atmel AT91 System-on-Chip"
|
menu "Atmel AT91 System-on-Chip"
|
||||||
|
|
||||||
comment "Atmel AT91 Processor"
|
comment "Atmel AT91 Processor"
|
||||||
|
|
||||||
config SOC_AT91SAM9
|
|
||||||
bool
|
|
||||||
select AT91_SAM9_SMC
|
|
||||||
select AT91_SAM9_TIME
|
|
||||||
select CPU_ARM926T
|
|
||||||
select MULTI_IRQ_HANDLER
|
|
||||||
select SPARSE_IRQ
|
|
||||||
|
|
||||||
config SOC_AT91RM9200
|
config SOC_AT91RM9200
|
||||||
bool "AT91RM9200"
|
bool "AT91RM9200"
|
||||||
select CPU_ARM920T
|
select CPU_ARM920T
|
||||||
|
|
|
@ -187,7 +187,7 @@ static struct clk_lookup periph_clocks_lookups[] = {
|
||||||
CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk),
|
CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc0_clk),
|
||||||
CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk),
|
CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk),
|
||||||
CLKDEV_CON_DEV_ID("pclk", "ssc.2", &ssc2_clk),
|
CLKDEV_CON_DEV_ID("pclk", "ssc.2", &ssc2_clk),
|
||||||
CLKDEV_CON_DEV_ID(NULL, "i2c-at91rm9200", &twi_clk),
|
CLKDEV_CON_DEV_ID(NULL, "i2c-at91rm9200.0", &twi_clk),
|
||||||
/* fake hclk clock */
|
/* fake hclk clock */
|
||||||
CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &ohci_clk),
|
CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &ohci_clk),
|
||||||
CLKDEV_CON_ID("pioA", &pioA_clk),
|
CLKDEV_CON_ID("pioA", &pioA_clk),
|
||||||
|
|
|
@ -479,7 +479,7 @@ static struct i2c_gpio_platform_data pdata = {
|
||||||
|
|
||||||
static struct platform_device at91rm9200_twi_device = {
|
static struct platform_device at91rm9200_twi_device = {
|
||||||
.name = "i2c-gpio",
|
.name = "i2c-gpio",
|
||||||
.id = -1,
|
.id = 0,
|
||||||
.dev.platform_data = &pdata,
|
.dev.platform_data = &pdata,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -512,7 +512,7 @@ static struct resource twi_resources[] = {
|
||||||
|
|
||||||
static struct platform_device at91rm9200_twi_device = {
|
static struct platform_device at91rm9200_twi_device = {
|
||||||
.name = "i2c-at91rm9200",
|
.name = "i2c-at91rm9200",
|
||||||
.id = -1,
|
.id = 0,
|
||||||
.resource = twi_resources,
|
.resource = twi_resources,
|
||||||
.num_resources = ARRAY_SIZE(twi_resources),
|
.num_resources = ARRAY_SIZE(twi_resources),
|
||||||
};
|
};
|
||||||
|
|
|
@ -211,8 +211,8 @@ static struct clk_lookup periph_clocks_lookups[] = {
|
||||||
CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.1", &tc4_clk),
|
CLKDEV_CON_DEV_ID("t1_clk", "atmel_tcb.1", &tc4_clk),
|
||||||
CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.1", &tc5_clk),
|
CLKDEV_CON_DEV_ID("t2_clk", "atmel_tcb.1", &tc5_clk),
|
||||||
CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc_clk),
|
CLKDEV_CON_DEV_ID("pclk", "ssc.0", &ssc_clk),
|
||||||
CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9260", &twi_clk),
|
CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9260.0", &twi_clk),
|
||||||
CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9g20", &twi_clk),
|
CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9g20.0", &twi_clk),
|
||||||
/* more usart lookup table for DT entries */
|
/* more usart lookup table for DT entries */
|
||||||
CLKDEV_CON_DEV_ID("usart", "fffff200.serial", &mck),
|
CLKDEV_CON_DEV_ID("usart", "fffff200.serial", &mck),
|
||||||
CLKDEV_CON_DEV_ID("usart", "fffb0000.serial", &usart0_clk),
|
CLKDEV_CON_DEV_ID("usart", "fffb0000.serial", &usart0_clk),
|
||||||
|
|
|
@ -389,7 +389,7 @@ static struct i2c_gpio_platform_data pdata = {
|
||||||
|
|
||||||
static struct platform_device at91sam9260_twi_device = {
|
static struct platform_device at91sam9260_twi_device = {
|
||||||
.name = "i2c-gpio",
|
.name = "i2c-gpio",
|
||||||
.id = -1,
|
.id = 0,
|
||||||
.dev.platform_data = &pdata,
|
.dev.platform_data = &pdata,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -421,7 +421,7 @@ static struct resource twi_resources[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device at91sam9260_twi_device = {
|
static struct platform_device at91sam9260_twi_device = {
|
||||||
.id = -1,
|
.id = 0,
|
||||||
.resource = twi_resources,
|
.resource = twi_resources,
|
||||||
.num_resources = ARRAY_SIZE(twi_resources),
|
.num_resources = ARRAY_SIZE(twi_resources),
|
||||||
};
|
};
|
||||||
|
|
|
@ -178,8 +178,8 @@ static struct clk_lookup periph_clocks_lookups[] = {
|
||||||
CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk),
|
CLKDEV_CON_DEV_ID("pclk", "ssc.1", &ssc1_clk),
|
||||||
CLKDEV_CON_DEV_ID("pclk", "ssc.2", &ssc2_clk),
|
CLKDEV_CON_DEV_ID("pclk", "ssc.2", &ssc2_clk),
|
||||||
CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &hck0),
|
CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &hck0),
|
||||||
CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9261", &twi_clk),
|
CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9261.0", &twi_clk),
|
||||||
CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9g10", &twi_clk),
|
CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9g10.0", &twi_clk),
|
||||||
CLKDEV_CON_ID("pioA", &pioA_clk),
|
CLKDEV_CON_ID("pioA", &pioA_clk),
|
||||||
CLKDEV_CON_ID("pioB", &pioB_clk),
|
CLKDEV_CON_ID("pioB", &pioB_clk),
|
||||||
CLKDEV_CON_ID("pioC", &pioC_clk),
|
CLKDEV_CON_ID("pioC", &pioC_clk),
|
||||||
|
|
|
@ -285,7 +285,7 @@ static struct i2c_gpio_platform_data pdata = {
|
||||||
|
|
||||||
static struct platform_device at91sam9261_twi_device = {
|
static struct platform_device at91sam9261_twi_device = {
|
||||||
.name = "i2c-gpio",
|
.name = "i2c-gpio",
|
||||||
.id = -1,
|
.id = 0,
|
||||||
.dev.platform_data = &pdata,
|
.dev.platform_data = &pdata,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -317,7 +317,7 @@ static struct resource twi_resources[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device at91sam9261_twi_device = {
|
static struct platform_device at91sam9261_twi_device = {
|
||||||
.id = -1,
|
.id = 0,
|
||||||
.resource = twi_resources,
|
.resource = twi_resources,
|
||||||
.num_resources = ARRAY_SIZE(twi_resources),
|
.num_resources = ARRAY_SIZE(twi_resources),
|
||||||
};
|
};
|
||||||
|
|
|
@ -193,7 +193,7 @@ static struct clk_lookup periph_clocks_lookups[] = {
|
||||||
CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.0", &spi0_clk),
|
CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.0", &spi0_clk),
|
||||||
CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.1", &spi1_clk),
|
CLKDEV_CON_DEV_ID("spi_clk", "atmel_spi.1", &spi1_clk),
|
||||||
CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tcb_clk),
|
CLKDEV_CON_DEV_ID("t0_clk", "atmel_tcb.0", &tcb_clk),
|
||||||
CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9260", &twi_clk),
|
CLKDEV_CON_DEV_ID(NULL, "i2c-at91sam9260.0", &twi_clk),
|
||||||
/* fake hclk clock */
|
/* fake hclk clock */
|
||||||
CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &ohci_clk),
|
CLKDEV_CON_DEV_ID("hclk", "at91_ohci", &ohci_clk),
|
||||||
CLKDEV_CON_ID("pioA", &pioA_clk),
|
CLKDEV_CON_ID("pioA", &pioA_clk),
|
||||||
|
|
|
@ -567,7 +567,7 @@ static struct i2c_gpio_platform_data pdata = {
|
||||||
|
|
||||||
static struct platform_device at91sam9263_twi_device = {
|
static struct platform_device at91sam9263_twi_device = {
|
||||||
.name = "i2c-gpio",
|
.name = "i2c-gpio",
|
||||||
.id = -1,
|
.id = 0,
|
||||||
.dev.platform_data = &pdata,
|
.dev.platform_data = &pdata,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -600,7 +600,7 @@ static struct resource twi_resources[] = {
|
||||||
|
|
||||||
static struct platform_device at91sam9263_twi_device = {
|
static struct platform_device at91sam9263_twi_device = {
|
||||||
.name = "i2c-at91sam9260",
|
.name = "i2c-at91sam9260",
|
||||||
.id = -1,
|
.id = 0,
|
||||||
.resource = twi_resources,
|
.resource = twi_resources,
|
||||||
.num_resources = ARRAY_SIZE(twi_resources),
|
.num_resources = ARRAY_SIZE(twi_resources),
|
||||||
};
|
};
|
||||||
|
|
|
@ -314,7 +314,7 @@ static struct i2c_gpio_platform_data pdata = {
|
||||||
|
|
||||||
static struct platform_device at91sam9rl_twi_device = {
|
static struct platform_device at91sam9rl_twi_device = {
|
||||||
.name = "i2c-gpio",
|
.name = "i2c-gpio",
|
||||||
.id = -1,
|
.id = 0,
|
||||||
.dev.platform_data = &pdata,
|
.dev.platform_data = &pdata,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -347,7 +347,7 @@ static struct resource twi_resources[] = {
|
||||||
|
|
||||||
static struct platform_device at91sam9rl_twi_device = {
|
static struct platform_device at91sam9rl_twi_device = {
|
||||||
.name = "i2c-at91sam9g20",
|
.name = "i2c-at91sam9g20",
|
||||||
.id = -1,
|
.id = 0,
|
||||||
.resource = twi_resources,
|
.resource = twi_resources,
|
||||||
.num_resources = ARRAY_SIZE(twi_resources),
|
.num_resources = ARRAY_SIZE(twi_resources),
|
||||||
};
|
};
|
||||||
|
|
|
@ -88,6 +88,6 @@ void __init at91x40_init_interrupts(unsigned int priority[NR_AIC_IRQS])
|
||||||
if (!priority)
|
if (!priority)
|
||||||
priority = at91x40_default_irq_priority;
|
priority = at91x40_default_irq_priority;
|
||||||
|
|
||||||
at91_aic_init(priority);
|
at91_aic_init(priority, at91_extern_irq);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -129,7 +129,7 @@ static struct spi_board_info neocore926_spi_devices[] = {
|
||||||
.max_speed_hz = 125000 * 16,
|
.max_speed_hz = 125000 * 16,
|
||||||
.bus_num = 0,
|
.bus_num = 0,
|
||||||
.platform_data = &ads_info,
|
.platform_data = &ads_info,
|
||||||
.irq = AT91SAM9263_ID_IRQ1,
|
.irq = NR_IRQS_LEGACY + AT91SAM9263_ID_IRQ1,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
|
@ -309,7 +309,7 @@ static struct spi_board_info ek_spi_devices[] = {
|
||||||
.max_speed_hz = 125000 * 26, /* (max sample rate @ 3V) * (cmd + data + overhead) */
|
.max_speed_hz = 125000 * 26, /* (max sample rate @ 3V) * (cmd + data + overhead) */
|
||||||
.bus_num = 0,
|
.bus_num = 0,
|
||||||
.platform_data = &ads_info,
|
.platform_data = &ads_info,
|
||||||
.irq = AT91SAM9261_ID_IRQ0,
|
.irq = NR_IRQS_LEGACY + AT91SAM9261_ID_IRQ0,
|
||||||
.controller_data = (void *) AT91_PIN_PA28, /* CS pin */
|
.controller_data = (void *) AT91_PIN_PA28, /* CS pin */
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -132,7 +132,7 @@ static struct spi_board_info ek_spi_devices[] = {
|
||||||
.max_speed_hz = 125000 * 26, /* (max sample rate @ 3V) * (cmd + data + overhead) */
|
.max_speed_hz = 125000 * 26, /* (max sample rate @ 3V) * (cmd + data + overhead) */
|
||||||
.bus_num = 0,
|
.bus_num = 0,
|
||||||
.platform_data = &ads_info,
|
.platform_data = &ads_info,
|
||||||
.irq = AT91SAM9263_ID_IRQ1,
|
.irq = NR_IRQS_LEGACY + AT91SAM9263_ID_IRQ1,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
|
@ -26,7 +26,8 @@ extern void __init at91_dt_initialize(void);
|
||||||
extern void __init at91_init_irq_default(void);
|
extern void __init at91_init_irq_default(void);
|
||||||
extern void __init at91_init_interrupts(unsigned int priority[]);
|
extern void __init at91_init_interrupts(unsigned int priority[]);
|
||||||
extern void __init at91x40_init_interrupts(unsigned int priority[]);
|
extern void __init at91x40_init_interrupts(unsigned int priority[]);
|
||||||
extern void __init at91_aic_init(unsigned int priority[]);
|
extern void __init at91_aic_init(unsigned int priority[],
|
||||||
|
unsigned int ext_irq_mask);
|
||||||
extern int __init at91_aic_of_init(struct device_node *node,
|
extern int __init at91_aic_of_init(struct device_node *node,
|
||||||
struct device_node *parent);
|
struct device_node *parent);
|
||||||
extern int __init at91_aic5_of_init(struct device_node *node,
|
extern int __init at91_aic5_of_init(struct device_node *node,
|
||||||
|
|
|
@ -502,14 +502,19 @@ int __init at91_aic5_of_init(struct device_node *node,
|
||||||
/*
|
/*
|
||||||
* Initialize the AIC interrupt controller.
|
* Initialize the AIC interrupt controller.
|
||||||
*/
|
*/
|
||||||
void __init at91_aic_init(unsigned int *priority)
|
void __init at91_aic_init(unsigned int *priority, unsigned int ext_irq_mask)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
int irq_base;
|
int irq_base;
|
||||||
|
|
||||||
if (at91_aic_pm_init())
|
at91_extern_irq = kzalloc(BITS_TO_LONGS(n_irqs)
|
||||||
|
* sizeof(*at91_extern_irq), GFP_KERNEL);
|
||||||
|
|
||||||
|
if (at91_aic_pm_init() || at91_extern_irq == NULL)
|
||||||
panic("Unable to allocate bit maps\n");
|
panic("Unable to allocate bit maps\n");
|
||||||
|
|
||||||
|
*at91_extern_irq = ext_irq_mask;
|
||||||
|
|
||||||
at91_aic_base = ioremap(AT91_AIC, 512);
|
at91_aic_base = ioremap(AT91_AIC, 512);
|
||||||
if (!at91_aic_base)
|
if (!at91_aic_base)
|
||||||
panic("Unable to ioremap AIC registers\n");
|
panic("Unable to ioremap AIC registers\n");
|
||||||
|
|
|
@ -47,7 +47,7 @@ void __init at91_init_irq_default(void)
|
||||||
void __init at91_init_interrupts(unsigned int *priority)
|
void __init at91_init_interrupts(unsigned int *priority)
|
||||||
{
|
{
|
||||||
/* Initialize the AIC interrupt controller */
|
/* Initialize the AIC interrupt controller */
|
||||||
at91_aic_init(priority);
|
at91_aic_init(priority, at91_extern_irq);
|
||||||
|
|
||||||
/* Enable GPIO interrupts */
|
/* Enable GPIO interrupts */
|
||||||
at91_gpio_irq_setup();
|
at91_gpio_irq_setup();
|
||||||
|
@ -151,7 +151,7 @@ static void __init soc_detect(u32 dbgu_base)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* at91sam9g10 */
|
/* at91sam9g10 */
|
||||||
if ((cidr & ~AT91_CIDR_EXT) == ARCH_ID_AT91SAM9G10) {
|
if ((socid & ~AT91_CIDR_EXT) == ARCH_ID_AT91SAM9G10) {
|
||||||
at91_soc_initdata.type = AT91_SOC_SAM9G10;
|
at91_soc_initdata.type = AT91_SOC_SAM9G10;
|
||||||
at91_boot_soc = at91sam9261_soc;
|
at91_boot_soc = at91sam9261_soc;
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,6 +47,7 @@
|
||||||
#include <plat/fimc-core.h>
|
#include <plat/fimc-core.h>
|
||||||
#include <plat/iic-core.h>
|
#include <plat/iic-core.h>
|
||||||
#include <plat/tv-core.h>
|
#include <plat/tv-core.h>
|
||||||
|
#include <plat/spi-core.h>
|
||||||
#include <plat/regs-serial.h>
|
#include <plat/regs-serial.h>
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
@ -346,6 +347,8 @@ static void __init exynos4_map_io(void)
|
||||||
|
|
||||||
s5p_fb_setname(0, "exynos4-fb");
|
s5p_fb_setname(0, "exynos4-fb");
|
||||||
s5p_hdmi_setname("exynos4-hdmi");
|
s5p_hdmi_setname("exynos4-hdmi");
|
||||||
|
|
||||||
|
s3c64xx_spi_setname("exynos4210-spi");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __init exynos5_map_io(void)
|
static void __init exynos5_map_io(void)
|
||||||
|
@ -366,6 +369,8 @@ static void __init exynos5_map_io(void)
|
||||||
s3c_i2c0_setname("s3c2440-i2c");
|
s3c_i2c0_setname("s3c2440-i2c");
|
||||||
s3c_i2c1_setname("s3c2440-i2c");
|
s3c_i2c1_setname("s3c2440-i2c");
|
||||||
s3c_i2c2_setname("s3c2440-i2c");
|
s3c_i2c2_setname("s3c2440-i2c");
|
||||||
|
|
||||||
|
s3c64xx_spi_setname("exynos4210-spi");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __init exynos4_init_clocks(int xtal)
|
static void __init exynos4_init_clocks(int xtal)
|
||||||
|
|
|
@ -99,6 +99,7 @@ static char const *exynos4_dt_compat[] __initdata = {
|
||||||
|
|
||||||
DT_MACHINE_START(EXYNOS4210_DT, "Samsung Exynos4 (Flattened Device Tree)")
|
DT_MACHINE_START(EXYNOS4210_DT, "Samsung Exynos4 (Flattened Device Tree)")
|
||||||
/* Maintainer: Thomas Abraham <thomas.abraham@linaro.org> */
|
/* Maintainer: Thomas Abraham <thomas.abraham@linaro.org> */
|
||||||
|
.smp = smp_ops(exynos_smp_ops),
|
||||||
.init_irq = exynos4_init_irq,
|
.init_irq = exynos4_init_irq,
|
||||||
.map_io = exynos4_dt_map_io,
|
.map_io = exynos4_dt_map_io,
|
||||||
.handle_irq = gic_handle_irq,
|
.handle_irq = gic_handle_irq,
|
||||||
|
|
|
@ -108,7 +108,7 @@ struct clk *imx_clk_busy_divider(const char *name, const char *parent_name,
|
||||||
busy->div.hw.init = &init;
|
busy->div.hw.init = &init;
|
||||||
|
|
||||||
clk = clk_register(NULL, &busy->div.hw);
|
clk = clk_register(NULL, &busy->div.hw);
|
||||||
if (!clk)
|
if (IS_ERR(clk))
|
||||||
kfree(busy);
|
kfree(busy);
|
||||||
|
|
||||||
return clk;
|
return clk;
|
||||||
|
|
|
@ -127,8 +127,8 @@ int __init mx25_clocks_init(void)
|
||||||
clk[esdhc2_ipg_per] = imx_clk_gate("esdhc2_ipg_per", "per4", ccm(CCM_CGCR0), 4);
|
clk[esdhc2_ipg_per] = imx_clk_gate("esdhc2_ipg_per", "per4", ccm(CCM_CGCR0), 4);
|
||||||
clk[gpt_ipg_per] = imx_clk_gate("gpt_ipg_per", "per5", ccm(CCM_CGCR0), 5);
|
clk[gpt_ipg_per] = imx_clk_gate("gpt_ipg_per", "per5", ccm(CCM_CGCR0), 5);
|
||||||
clk[i2c_ipg_per] = imx_clk_gate("i2c_ipg_per", "per6", ccm(CCM_CGCR0), 6);
|
clk[i2c_ipg_per] = imx_clk_gate("i2c_ipg_per", "per6", ccm(CCM_CGCR0), 6);
|
||||||
clk[lcdc_ipg_per] = imx_clk_gate("lcdc_ipg_per", "per8", ccm(CCM_CGCR0), 7);
|
clk[lcdc_ipg_per] = imx_clk_gate("lcdc_ipg_per", "per7", ccm(CCM_CGCR0), 7);
|
||||||
clk[nfc_ipg_per] = imx_clk_gate("nfc_ipg_per", "ipg_per", ccm(CCM_CGCR0), 8);
|
clk[nfc_ipg_per] = imx_clk_gate("nfc_ipg_per", "per8", ccm(CCM_CGCR0), 8);
|
||||||
clk[ssi1_ipg_per] = imx_clk_gate("ssi1_ipg_per", "per13", ccm(CCM_CGCR0), 13);
|
clk[ssi1_ipg_per] = imx_clk_gate("ssi1_ipg_per", "per13", ccm(CCM_CGCR0), 13);
|
||||||
clk[ssi2_ipg_per] = imx_clk_gate("ssi2_ipg_per", "per14", ccm(CCM_CGCR0), 14);
|
clk[ssi2_ipg_per] = imx_clk_gate("ssi2_ipg_per", "per14", ccm(CCM_CGCR0), 14);
|
||||||
clk[uart_ipg_per] = imx_clk_gate("uart_ipg_per", "per15", ccm(CCM_CGCR0), 15);
|
clk[uart_ipg_per] = imx_clk_gate("uart_ipg_per", "per15", ccm(CCM_CGCR0), 15);
|
||||||
|
|
|
@ -109,7 +109,7 @@ int __init mx27_clocks_init(unsigned long fref)
|
||||||
clk[per3_div] = imx_clk_divider("per3_div", "mpll_main2", CCM_PCDR1, 16, 6);
|
clk[per3_div] = imx_clk_divider("per3_div", "mpll_main2", CCM_PCDR1, 16, 6);
|
||||||
clk[per4_div] = imx_clk_divider("per4_div", "mpll_main2", CCM_PCDR1, 24, 6);
|
clk[per4_div] = imx_clk_divider("per4_div", "mpll_main2", CCM_PCDR1, 24, 6);
|
||||||
clk[vpu_sel] = imx_clk_mux("vpu_sel", CCM_CSCR, 21, 1, vpu_sel_clks, ARRAY_SIZE(vpu_sel_clks));
|
clk[vpu_sel] = imx_clk_mux("vpu_sel", CCM_CSCR, 21, 1, vpu_sel_clks, ARRAY_SIZE(vpu_sel_clks));
|
||||||
clk[vpu_div] = imx_clk_divider("vpu_div", "vpu_sel", CCM_PCDR0, 10, 3);
|
clk[vpu_div] = imx_clk_divider("vpu_div", "vpu_sel", CCM_PCDR0, 10, 6);
|
||||||
clk[usb_div] = imx_clk_divider("usb_div", "spll", CCM_CSCR, 28, 3);
|
clk[usb_div] = imx_clk_divider("usb_div", "spll", CCM_CSCR, 28, 3);
|
||||||
clk[cpu_sel] = imx_clk_mux("cpu_sel", CCM_CSCR, 15, 1, cpu_sel_clks, ARRAY_SIZE(cpu_sel_clks));
|
clk[cpu_sel] = imx_clk_mux("cpu_sel", CCM_CSCR, 15, 1, cpu_sel_clks, ARRAY_SIZE(cpu_sel_clks));
|
||||||
clk[clko_sel] = imx_clk_mux("clko_sel", CCM_CCSR, 0, 5, clko_sel_clks, ARRAY_SIZE(clko_sel_clks));
|
clk[clko_sel] = imx_clk_mux("clko_sel", CCM_CCSR, 0, 5, clko_sel_clks, ARRAY_SIZE(clko_sel_clks));
|
||||||
|
@ -121,7 +121,7 @@ int __init mx27_clocks_init(unsigned long fref)
|
||||||
clk[ssi1_sel] = imx_clk_mux("ssi1_sel", CCM_CSCR, 22, 1, ssi_sel_clks, ARRAY_SIZE(ssi_sel_clks));
|
clk[ssi1_sel] = imx_clk_mux("ssi1_sel", CCM_CSCR, 22, 1, ssi_sel_clks, ARRAY_SIZE(ssi_sel_clks));
|
||||||
clk[ssi2_sel] = imx_clk_mux("ssi2_sel", CCM_CSCR, 23, 1, ssi_sel_clks, ARRAY_SIZE(ssi_sel_clks));
|
clk[ssi2_sel] = imx_clk_mux("ssi2_sel", CCM_CSCR, 23, 1, ssi_sel_clks, ARRAY_SIZE(ssi_sel_clks));
|
||||||
clk[ssi1_div] = imx_clk_divider("ssi1_div", "ssi1_sel", CCM_PCDR0, 16, 6);
|
clk[ssi1_div] = imx_clk_divider("ssi1_div", "ssi1_sel", CCM_PCDR0, 16, 6);
|
||||||
clk[ssi2_div] = imx_clk_divider("ssi2_div", "ssi2_sel", CCM_PCDR0, 26, 3);
|
clk[ssi2_div] = imx_clk_divider("ssi2_div", "ssi2_sel", CCM_PCDR0, 26, 6);
|
||||||
clk[clko_en] = imx_clk_gate("clko_en", "clko_div", CCM_PCCR0, 0);
|
clk[clko_en] = imx_clk_gate("clko_en", "clko_div", CCM_PCCR0, 0);
|
||||||
clk[ssi2_ipg_gate] = imx_clk_gate("ssi2_ipg_gate", "ipg", CCM_PCCR0, 0);
|
clk[ssi2_ipg_gate] = imx_clk_gate("ssi2_ipg_gate", "ipg", CCM_PCCR0, 0);
|
||||||
clk[ssi1_ipg_gate] = imx_clk_gate("ssi1_ipg_gate", "ipg", CCM_PCCR0, 1);
|
clk[ssi1_ipg_gate] = imx_clk_gate("ssi1_ipg_gate", "ipg", CCM_PCCR0, 1);
|
||||||
|
|
|
@ -108,9 +108,8 @@ void __init imx3_init_l2x0(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
l2x0_base = ioremap(MX3x_L2CC_BASE_ADDR, 4096);
|
l2x0_base = ioremap(MX3x_L2CC_BASE_ADDR, 4096);
|
||||||
if (IS_ERR(l2x0_base)) {
|
if (!l2x0_base) {
|
||||||
printk(KERN_ERR "remapping L2 cache area failed with %ld\n",
|
printk(KERN_ERR "remapping L2 cache area failed\n");
|
||||||
PTR_ERR(l2x0_base));
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,6 @@ config ARCH_OMAP2PLUS_TYPICAL
|
||||||
select I2C_OMAP
|
select I2C_OMAP
|
||||||
select MENELAUS if ARCH_OMAP2
|
select MENELAUS if ARCH_OMAP2
|
||||||
select NEON if ARCH_OMAP3 || ARCH_OMAP4 || SOC_OMAP5
|
select NEON if ARCH_OMAP3 || ARCH_OMAP4 || SOC_OMAP5
|
||||||
select PINCTRL
|
|
||||||
select PM_RUNTIME
|
select PM_RUNTIME
|
||||||
select REGULATOR
|
select REGULATOR
|
||||||
select SERIAL_OMAP
|
select SERIAL_OMAP
|
||||||
|
|
|
@ -97,6 +97,23 @@ DT_MACHINE_START(OMAP3_DT, "Generic OMAP3 (Flattened Device Tree)")
|
||||||
.dt_compat = omap3_boards_compat,
|
.dt_compat = omap3_boards_compat,
|
||||||
.restart = omap_prcm_restart,
|
.restart = omap_prcm_restart,
|
||||||
MACHINE_END
|
MACHINE_END
|
||||||
|
|
||||||
|
static const char *omap3_gp_boards_compat[] __initdata = {
|
||||||
|
"ti,omap3-beagle",
|
||||||
|
NULL,
|
||||||
|
};
|
||||||
|
|
||||||
|
DT_MACHINE_START(OMAP3_GP_DT, "Generic OMAP3-GP (Flattened Device Tree)")
|
||||||
|
.reserve = omap_reserve,
|
||||||
|
.map_io = omap3_map_io,
|
||||||
|
.init_early = omap3430_init_early,
|
||||||
|
.init_irq = omap_intc_of_init,
|
||||||
|
.handle_irq = omap3_intc_handle_irq,
|
||||||
|
.init_machine = omap_generic_init,
|
||||||
|
.timer = &omap3_secure_timer,
|
||||||
|
.dt_compat = omap3_gp_boards_compat,
|
||||||
|
.restart = omap_prcm_restart,
|
||||||
|
MACHINE_END
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_SOC_AM33XX
|
#ifdef CONFIG_SOC_AM33XX
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#include <linux/input.h>
|
#include <linux/input.h>
|
||||||
#include <linux/gpio_keys.h>
|
#include <linux/gpio_keys.h>
|
||||||
#include <linux/opp.h>
|
#include <linux/opp.h>
|
||||||
|
#include <linux/cpu.h>
|
||||||
|
|
||||||
#include <linux/mtd/mtd.h>
|
#include <linux/mtd/mtd.h>
|
||||||
#include <linux/mtd/partitions.h>
|
#include <linux/mtd/partitions.h>
|
||||||
|
@ -447,27 +448,31 @@ static struct omap_board_mux board_mux[] __initdata = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static void __init beagle_opp_init(void)
|
static int __init beagle_opp_init(void)
|
||||||
{
|
{
|
||||||
int r = 0;
|
int r = 0;
|
||||||
|
|
||||||
/* Initialize the omap3 opp table */
|
if (!machine_is_omap3_beagle())
|
||||||
if (omap3_opp_init()) {
|
return 0;
|
||||||
|
|
||||||
|
/* Initialize the omap3 opp table if not already created. */
|
||||||
|
r = omap3_opp_init();
|
||||||
|
if (IS_ERR_VALUE(r) && (r != -EEXIST)) {
|
||||||
pr_err("%s: opp default init failed\n", __func__);
|
pr_err("%s: opp default init failed\n", __func__);
|
||||||
return;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Custom OPP enabled for all xM versions */
|
/* Custom OPP enabled for all xM versions */
|
||||||
if (cpu_is_omap3630()) {
|
if (cpu_is_omap3630()) {
|
||||||
struct device *mpu_dev, *iva_dev;
|
struct device *mpu_dev, *iva_dev;
|
||||||
|
|
||||||
mpu_dev = omap_device_get_by_hwmod_name("mpu");
|
mpu_dev = get_cpu_device(0);
|
||||||
iva_dev = omap_device_get_by_hwmod_name("iva");
|
iva_dev = omap_device_get_by_hwmod_name("iva");
|
||||||
|
|
||||||
if (IS_ERR(mpu_dev) || IS_ERR(iva_dev)) {
|
if (IS_ERR(mpu_dev) || IS_ERR(iva_dev)) {
|
||||||
pr_err("%s: Aiee.. no mpu/dsp devices? %p %p\n",
|
pr_err("%s: Aiee.. no mpu/dsp devices? %p %p\n",
|
||||||
__func__, mpu_dev, iva_dev);
|
__func__, mpu_dev, iva_dev);
|
||||||
return;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
/* Enable MPU 1GHz and lower opps */
|
/* Enable MPU 1GHz and lower opps */
|
||||||
r = opp_enable(mpu_dev, 800000000);
|
r = opp_enable(mpu_dev, 800000000);
|
||||||
|
@ -487,8 +492,9 @@ static void __init beagle_opp_init(void)
|
||||||
opp_disable(iva_dev, 660000000);
|
opp_disable(iva_dev, 660000000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return;
|
return 0;
|
||||||
}
|
}
|
||||||
|
device_initcall(beagle_opp_init);
|
||||||
|
|
||||||
static void __init omap3_beagle_init(void)
|
static void __init omap3_beagle_init(void)
|
||||||
{
|
{
|
||||||
|
@ -526,8 +532,6 @@ static void __init omap3_beagle_init(void)
|
||||||
/* Ensure SDRC pins are mux'd for self-refresh */
|
/* Ensure SDRC pins are mux'd for self-refresh */
|
||||||
omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
|
omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT);
|
||||||
omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
|
omap_mux_init_signal("sdrc_cke1", OMAP_PIN_OUTPUT);
|
||||||
|
|
||||||
beagle_opp_init();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
MACHINE_START(OMAP3_BEAGLE, "OMAP3 Beagle Board")
|
MACHINE_START(OMAP3_BEAGLE, "OMAP3 Beagle Board")
|
||||||
|
|
|
@ -1072,6 +1072,8 @@ static struct omap_clk am33xx_clks[] = {
|
||||||
CLK(NULL, "gfx_fck_div_ck", &gfx_fck_div_ck, CK_AM33XX),
|
CLK(NULL, "gfx_fck_div_ck", &gfx_fck_div_ck, CK_AM33XX),
|
||||||
CLK(NULL, "sysclkout_pre_ck", &sysclkout_pre_ck, CK_AM33XX),
|
CLK(NULL, "sysclkout_pre_ck", &sysclkout_pre_ck, CK_AM33XX),
|
||||||
CLK(NULL, "clkout2_ck", &clkout2_ck, CK_AM33XX),
|
CLK(NULL, "clkout2_ck", &clkout2_ck, CK_AM33XX),
|
||||||
|
CLK(NULL, "timer_32k_ck", &clkdiv32k_ick, CK_AM33XX),
|
||||||
|
CLK(NULL, "timer_sys_ck", &sys_clkin_ck, CK_AM33XX),
|
||||||
};
|
};
|
||||||
|
|
||||||
int __init am33xx_clk_init(void)
|
int __init am33xx_clk_init(void)
|
||||||
|
|
|
@ -614,16 +614,16 @@ static struct omap_mux __initdata omap3_muxmodes[] = {
|
||||||
"sys_off_mode", NULL, NULL, NULL,
|
"sys_off_mode", NULL, NULL, NULL,
|
||||||
"gpio_9", NULL, NULL, "safe_mode"),
|
"gpio_9", NULL, NULL, "safe_mode"),
|
||||||
_OMAP3_MUXENTRY(UART1_CTS, 150,
|
_OMAP3_MUXENTRY(UART1_CTS, 150,
|
||||||
"uart1_cts", NULL, NULL, NULL,
|
"uart1_cts", "ssi1_rdy_tx", NULL, NULL,
|
||||||
"gpio_150", "hsusb3_tll_clk", NULL, "safe_mode"),
|
"gpio_150", "hsusb3_tll_clk", NULL, "safe_mode"),
|
||||||
_OMAP3_MUXENTRY(UART1_RTS, 149,
|
_OMAP3_MUXENTRY(UART1_RTS, 149,
|
||||||
"uart1_rts", NULL, NULL, NULL,
|
"uart1_rts", "ssi1_flag_tx", NULL, NULL,
|
||||||
"gpio_149", NULL, NULL, "safe_mode"),
|
"gpio_149", NULL, NULL, "safe_mode"),
|
||||||
_OMAP3_MUXENTRY(UART1_RX, 151,
|
_OMAP3_MUXENTRY(UART1_RX, 151,
|
||||||
"uart1_rx", NULL, "mcbsp1_clkr", "mcspi4_clk",
|
"uart1_rx", "ss1_wake_tx", "mcbsp1_clkr", "mcspi4_clk",
|
||||||
"gpio_151", NULL, NULL, "safe_mode"),
|
"gpio_151", NULL, NULL, "safe_mode"),
|
||||||
_OMAP3_MUXENTRY(UART1_TX, 148,
|
_OMAP3_MUXENTRY(UART1_TX, 148,
|
||||||
"uart1_tx", NULL, NULL, NULL,
|
"uart1_tx", "ssi1_dat_tx", NULL, NULL,
|
||||||
"gpio_148", NULL, NULL, "safe_mode"),
|
"gpio_148", NULL, NULL, "safe_mode"),
|
||||||
_OMAP3_MUXENTRY(UART2_CTS, 144,
|
_OMAP3_MUXENTRY(UART2_CTS, 144,
|
||||||
"uart2_cts", "mcbsp3_dx", "gpt9_pwm_evt", NULL,
|
"uart2_cts", "mcbsp3_dx", "gpt9_pwm_evt", NULL,
|
||||||
|
|
|
@ -91,6 +91,7 @@ extern void omap3_save_scratchpad_contents(void);
|
||||||
|
|
||||||
#define PM_RTA_ERRATUM_i608 (1 << 0)
|
#define PM_RTA_ERRATUM_i608 (1 << 0)
|
||||||
#define PM_SDRC_WAKEUP_ERRATUM_i583 (1 << 1)
|
#define PM_SDRC_WAKEUP_ERRATUM_i583 (1 << 1)
|
||||||
|
#define PM_PER_MEMORIES_ERRATUM_i582 (1 << 2)
|
||||||
|
|
||||||
#if defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3)
|
#if defined(CONFIG_PM) && defined(CONFIG_ARCH_OMAP3)
|
||||||
extern u16 pm34xx_errata;
|
extern u16 pm34xx_errata;
|
||||||
|
|
|
@ -653,14 +653,17 @@ static void __init pm_errata_configure(void)
|
||||||
/* Enable the l2 cache toggling in sleep logic */
|
/* Enable the l2 cache toggling in sleep logic */
|
||||||
enable_omap3630_toggle_l2_on_restore();
|
enable_omap3630_toggle_l2_on_restore();
|
||||||
if (omap_rev() < OMAP3630_REV_ES1_2)
|
if (omap_rev() < OMAP3630_REV_ES1_2)
|
||||||
pm34xx_errata |= PM_SDRC_WAKEUP_ERRATUM_i583;
|
pm34xx_errata |= (PM_SDRC_WAKEUP_ERRATUM_i583 |
|
||||||
|
PM_PER_MEMORIES_ERRATUM_i582);
|
||||||
|
} else if (cpu_is_omap34xx()) {
|
||||||
|
pm34xx_errata |= PM_PER_MEMORIES_ERRATUM_i582;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int __init omap3_pm_init(void)
|
int __init omap3_pm_init(void)
|
||||||
{
|
{
|
||||||
struct power_state *pwrst, *tmp;
|
struct power_state *pwrst, *tmp;
|
||||||
struct clockdomain *neon_clkdm, *mpu_clkdm;
|
struct clockdomain *neon_clkdm, *mpu_clkdm, *per_clkdm, *wkup_clkdm;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (!omap3_has_io_chain_ctrl())
|
if (!omap3_has_io_chain_ctrl())
|
||||||
|
@ -712,6 +715,8 @@ int __init omap3_pm_init(void)
|
||||||
|
|
||||||
neon_clkdm = clkdm_lookup("neon_clkdm");
|
neon_clkdm = clkdm_lookup("neon_clkdm");
|
||||||
mpu_clkdm = clkdm_lookup("mpu_clkdm");
|
mpu_clkdm = clkdm_lookup("mpu_clkdm");
|
||||||
|
per_clkdm = clkdm_lookup("per_clkdm");
|
||||||
|
wkup_clkdm = clkdm_lookup("wkup_clkdm");
|
||||||
|
|
||||||
#ifdef CONFIG_SUSPEND
|
#ifdef CONFIG_SUSPEND
|
||||||
omap_pm_suspend = omap3_pm_suspend;
|
omap_pm_suspend = omap3_pm_suspend;
|
||||||
|
@ -728,6 +733,27 @@ int __init omap3_pm_init(void)
|
||||||
if (IS_PM34XX_ERRATUM(PM_RTA_ERRATUM_i608))
|
if (IS_PM34XX_ERRATUM(PM_RTA_ERRATUM_i608))
|
||||||
omap3630_ctrl_disable_rta();
|
omap3630_ctrl_disable_rta();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The UART3/4 FIFO and the sidetone memory in McBSP2/3 are
|
||||||
|
* not correctly reset when the PER powerdomain comes back
|
||||||
|
* from OFF or OSWR when the CORE powerdomain is kept active.
|
||||||
|
* See OMAP36xx Erratum i582 "PER Domain reset issue after
|
||||||
|
* Domain-OFF/OSWR Wakeup". This wakeup dependency is not a
|
||||||
|
* complete workaround. The kernel must also prevent the PER
|
||||||
|
* powerdomain from going to OSWR/OFF while the CORE
|
||||||
|
* powerdomain is not going to OSWR/OFF. And if PER last
|
||||||
|
* power state was off while CORE last power state was ON, the
|
||||||
|
* UART3/4 and McBSP2/3 SIDETONE devices need to run a
|
||||||
|
* self-test using their loopback tests; if that fails, those
|
||||||
|
* devices are unusable until the PER/CORE can complete a transition
|
||||||
|
* from ON to OSWR/OFF and then back to ON.
|
||||||
|
*
|
||||||
|
* XXX Technically this workaround is only needed if off-mode
|
||||||
|
* or OSWR is enabled.
|
||||||
|
*/
|
||||||
|
if (IS_PM34XX_ERRATUM(PM_PER_MEMORIES_ERRATUM_i582))
|
||||||
|
clkdm_add_wkdep(per_clkdm, wkup_clkdm);
|
||||||
|
|
||||||
clkdm_add_wkdep(neon_clkdm, mpu_clkdm);
|
clkdm_add_wkdep(neon_clkdm, mpu_clkdm);
|
||||||
if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
|
if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
|
||||||
omap3_secure_ram_storage =
|
omap3_secure_ram_storage =
|
||||||
|
|
|
@ -330,6 +330,11 @@ void __init omap_serial_init_port(struct omap_board_data *bdata,
|
||||||
|
|
||||||
oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt);
|
oh->mux = omap_hwmod_mux_init(bdata->pads, bdata->pads_cnt);
|
||||||
|
|
||||||
|
if (console_uart_id == bdata->id) {
|
||||||
|
omap_device_enable(pdev);
|
||||||
|
pm_runtime_set_active(&pdev->dev);
|
||||||
|
}
|
||||||
|
|
||||||
oh->dev_attr = uart;
|
oh->dev_attr = uart;
|
||||||
|
|
||||||
if (((cpu_is_omap34xx() || cpu_is_omap44xx()) && bdata->pads)
|
if (((cpu_is_omap34xx() || cpu_is_omap44xx()) && bdata->pads)
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue