mirror of https://gitee.com/openkylin/linux.git
Merge branch 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc
* 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc: powerpc: pseries/dtl.c should include asm/firmware.h powerpc: Fix data-corrupting bug in __futex_atomic_op powerpc/pseries: Set error_state to pci_channel_io_normal in eeh_report_reset() powerpc: Allow 256kB pages with SHMEM powerpc: Document new FSL I2C bindings and cleanup powerpc/mm: Fix compile warning powerpc/85xx: TQM8548: update defconfig powerpc/85xx: TQM8548: use proper phy-handles for enet2 and enet3 powerpc/85xx: TQM85xx: correct address of LM75 I2C device nodes powerpc: Add support for early tlbilx opcode powerpc: Fix tlbilx opcode
This commit is contained in:
commit
a23c218bd3
|
@ -7,8 +7,10 @@ Required properties :
|
||||||
|
|
||||||
Recommended properties :
|
Recommended properties :
|
||||||
|
|
||||||
- compatible : Should be "fsl-i2c" for parts compatible with
|
- compatible : compatibility list with 2 entries, the first should
|
||||||
Freescale I2C specifications.
|
be "fsl,CHIP-i2c" where CHIP is the name of a compatible processor,
|
||||||
|
e.g. mpc8313, mpc8543, mpc8544, mpc5200 or mpc5200b. The second one
|
||||||
|
should be "fsl-i2c".
|
||||||
- interrupts : <a b> where a is the interrupt number and b is a
|
- interrupts : <a b> where a is the interrupt number and b is a
|
||||||
field that represents an encoding of the sense and level
|
field that represents an encoding of the sense and level
|
||||||
information for the interrupt. This should be encoded based on
|
information for the interrupt. This should be encoded based on
|
||||||
|
@ -16,17 +18,31 @@ Recommended properties :
|
||||||
controller you have.
|
controller you have.
|
||||||
- interrupt-parent : the phandle for the interrupt controller that
|
- interrupt-parent : the phandle for the interrupt controller that
|
||||||
services interrupts for this device.
|
services interrupts for this device.
|
||||||
- dfsrr : boolean; if defined, indicates that this I2C device has
|
- fsl,preserve-clocking : boolean; if defined, the clock settings
|
||||||
a digital filter sampling rate register
|
from the bootloader are preserved (not touched).
|
||||||
- fsl5200-clocking : boolean; if defined, indicated that this device
|
- clock-frequency : desired I2C bus clock frequency in Hz.
|
||||||
uses the FSL 5200 clocking mechanism.
|
|
||||||
|
|
||||||
Example :
|
Examples :
|
||||||
i2c@3000 {
|
|
||||||
interrupt-parent = <40000>;
|
i2c@3d00 {
|
||||||
interrupts = <1b 3>;
|
#address-cells = <1>;
|
||||||
reg = <3000 18>;
|
#size-cells = <0>;
|
||||||
device_type = "i2c";
|
compatible = "fsl,mpc5200b-i2c","fsl,mpc5200-i2c","fsl-i2c";
|
||||||
compatible = "fsl-i2c";
|
cell-index = <0>;
|
||||||
dfsrr;
|
reg = <0x3d00 0x40>;
|
||||||
|
interrupts = <2 15 0>;
|
||||||
|
interrupt-parent = <&mpc5200_pic>;
|
||||||
|
fsl,preserve-clocking;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
i2c@3100 {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
cell-index = <1>;
|
||||||
|
compatible = "fsl,mpc8544-i2c", "fsl-i2c";
|
||||||
|
reg = <0x3100 0x100>;
|
||||||
|
interrupts = <43 2>;
|
||||||
|
interrupt-parent = <&mpic>;
|
||||||
|
clock-frequency = <400000>;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
|
@ -462,7 +462,7 @@ config PPC_64K_PAGES
|
||||||
|
|
||||||
config PPC_256K_PAGES
|
config PPC_256K_PAGES
|
||||||
bool "256k page size" if 44x
|
bool "256k page size" if 44x
|
||||||
depends on !STDBINUTILS && (!SHMEM || BROKEN)
|
depends on !STDBINUTILS
|
||||||
help
|
help
|
||||||
Make the page size 256k.
|
Make the page size 256k.
|
||||||
|
|
||||||
|
|
|
@ -84,9 +84,9 @@ i2c@3000 {
|
||||||
interrupt-parent = <&mpic>;
|
interrupt-parent = <&mpic>;
|
||||||
dfsrr;
|
dfsrr;
|
||||||
|
|
||||||
dtt@50 {
|
dtt@48 {
|
||||||
compatible = "national,lm75";
|
compatible = "national,lm75";
|
||||||
reg = <0x50>;
|
reg = <0x48>;
|
||||||
};
|
};
|
||||||
|
|
||||||
rtc@68 {
|
rtc@68 {
|
||||||
|
|
|
@ -83,9 +83,9 @@ i2c@3000 {
|
||||||
interrupt-parent = <&mpic>;
|
interrupt-parent = <&mpic>;
|
||||||
dfsrr;
|
dfsrr;
|
||||||
|
|
||||||
dtt@50 {
|
dtt@48 {
|
||||||
compatible = "national,lm75";
|
compatible = "national,lm75";
|
||||||
reg = <0x50>;
|
reg = <0x48>;
|
||||||
};
|
};
|
||||||
|
|
||||||
rtc@68 {
|
rtc@68 {
|
||||||
|
|
|
@ -85,9 +85,9 @@ i2c@3000 {
|
||||||
interrupt-parent = <&mpic>;
|
interrupt-parent = <&mpic>;
|
||||||
dfsrr;
|
dfsrr;
|
||||||
|
|
||||||
dtt@50 {
|
dtt@48 {
|
||||||
compatible = "national,lm75";
|
compatible = "national,lm75";
|
||||||
reg = <0x50>;
|
reg = <0x48>;
|
||||||
};
|
};
|
||||||
|
|
||||||
rtc@68 {
|
rtc@68 {
|
||||||
|
@ -247,7 +247,7 @@ enet2: ethernet@26000 {
|
||||||
interrupts = <31 2 32 2 33 2>;
|
interrupts = <31 2 32 2 33 2>;
|
||||||
interrupt-parent = <&mpic>;
|
interrupt-parent = <&mpic>;
|
||||||
tbi-handle = <&tbi2>;
|
tbi-handle = <&tbi2>;
|
||||||
phy-handle = <&phy3>;
|
phy-handle = <&phy4>;
|
||||||
|
|
||||||
mdio@520 {
|
mdio@520 {
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
|
@ -275,7 +275,7 @@ enet3: ethernet@27000 {
|
||||||
interrupts = <37 2 38 2 39 2>;
|
interrupts = <37 2 38 2 39 2>;
|
||||||
interrupt-parent = <&mpic>;
|
interrupt-parent = <&mpic>;
|
||||||
tbi-handle = <&tbi3>;
|
tbi-handle = <&tbi3>;
|
||||||
phy-handle = <&phy4>;
|
phy-handle = <&phy5>;
|
||||||
|
|
||||||
mdio@520 {
|
mdio@520 {
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
|
|
|
@ -85,9 +85,9 @@ i2c@3000 {
|
||||||
interrupt-parent = <&mpic>;
|
interrupt-parent = <&mpic>;
|
||||||
dfsrr;
|
dfsrr;
|
||||||
|
|
||||||
dtt@50 {
|
dtt@48 {
|
||||||
compatible = "national,lm75";
|
compatible = "national,lm75";
|
||||||
reg = <0x50>;
|
reg = <0x48>;
|
||||||
};
|
};
|
||||||
|
|
||||||
rtc@68 {
|
rtc@68 {
|
||||||
|
@ -247,7 +247,7 @@ enet2: ethernet@26000 {
|
||||||
interrupts = <31 2 32 2 33 2>;
|
interrupts = <31 2 32 2 33 2>;
|
||||||
interrupt-parent = <&mpic>;
|
interrupt-parent = <&mpic>;
|
||||||
tbi-handle = <&tbi2>;
|
tbi-handle = <&tbi2>;
|
||||||
phy-handle = <&phy3>;
|
phy-handle = <&phy4>;
|
||||||
|
|
||||||
mdio@520 {
|
mdio@520 {
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
|
@ -275,7 +275,7 @@ enet3: ethernet@27000 {
|
||||||
interrupts = <37 2 38 2 39 2>;
|
interrupts = <37 2 38 2 39 2>;
|
||||||
interrupt-parent = <&mpic>;
|
interrupt-parent = <&mpic>;
|
||||||
tbi-handle = <&tbi3>;
|
tbi-handle = <&tbi3>;
|
||||||
phy-handle = <&phy4>;
|
phy-handle = <&phy5>;
|
||||||
|
|
||||||
mdio@520 {
|
mdio@520 {
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
|
|
|
@ -83,9 +83,9 @@ i2c@3000 {
|
||||||
interrupt-parent = <&mpic>;
|
interrupt-parent = <&mpic>;
|
||||||
dfsrr;
|
dfsrr;
|
||||||
|
|
||||||
dtt@50 {
|
dtt@48 {
|
||||||
compatible = "national,lm75";
|
compatible = "national,lm75";
|
||||||
reg = <0x50>;
|
reg = <0x48>;
|
||||||
};
|
};
|
||||||
|
|
||||||
rtc@68 {
|
rtc@68 {
|
||||||
|
|
|
@ -85,9 +85,9 @@ i2c@3000 {
|
||||||
interrupt-parent = <&mpic>;
|
interrupt-parent = <&mpic>;
|
||||||
dfsrr;
|
dfsrr;
|
||||||
|
|
||||||
dtt@50 {
|
dtt@48 {
|
||||||
compatible = "national,lm75";
|
compatible = "national,lm75";
|
||||||
reg = <0x50>;
|
reg = <0x48>;
|
||||||
};
|
};
|
||||||
|
|
||||||
rtc@68 {
|
rtc@68 {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#
|
#
|
||||||
# Automatically generated make config: don't edit
|
# Automatically generated make config: don't edit
|
||||||
# Linux kernel version: 2.6.29-rc2
|
# Linux kernel version: 2.6.29-rc7
|
||||||
# Mon Jan 26 15:36:20 2009
|
# Mon Mar 16 09:03:28 2009
|
||||||
#
|
#
|
||||||
# CONFIG_PPC64 is not set
|
# CONFIG_PPC64 is not set
|
||||||
|
|
||||||
|
@ -22,6 +22,7 @@ CONFIG_FSL_EMB_PERFMON=y
|
||||||
# CONFIG_PHYS_64BIT is not set
|
# CONFIG_PHYS_64BIT is not set
|
||||||
CONFIG_SPE=y
|
CONFIG_SPE=y
|
||||||
CONFIG_PPC_MMU_NOHASH=y
|
CONFIG_PPC_MMU_NOHASH=y
|
||||||
|
CONFIG_PPC_BOOK3E_MMU=y
|
||||||
# CONFIG_PPC_MM_SLICES is not set
|
# CONFIG_PPC_MM_SLICES is not set
|
||||||
# CONFIG_SMP is not set
|
# CONFIG_SMP is not set
|
||||||
CONFIG_PPC32=y
|
CONFIG_PPC32=y
|
||||||
|
@ -75,6 +76,15 @@ CONFIG_SYSVIPC_SYSCTL=y
|
||||||
# CONFIG_BSD_PROCESS_ACCT is not set
|
# CONFIG_BSD_PROCESS_ACCT is not set
|
||||||
# CONFIG_TASKSTATS is not set
|
# CONFIG_TASKSTATS is not set
|
||||||
# CONFIG_AUDIT is not set
|
# CONFIG_AUDIT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# RCU Subsystem
|
||||||
|
#
|
||||||
|
CONFIG_CLASSIC_RCU=y
|
||||||
|
# CONFIG_TREE_RCU is not set
|
||||||
|
# CONFIG_PREEMPT_RCU is not set
|
||||||
|
# CONFIG_TREE_RCU_TRACE is not set
|
||||||
|
# CONFIG_PREEMPT_RCU_TRACE is not set
|
||||||
# CONFIG_IKCONFIG is not set
|
# CONFIG_IKCONFIG is not set
|
||||||
CONFIG_LOG_BUF_SHIFT=14
|
CONFIG_LOG_BUF_SHIFT=14
|
||||||
CONFIG_GROUP_SCHED=y
|
CONFIG_GROUP_SCHED=y
|
||||||
|
@ -152,11 +162,6 @@ CONFIG_DEFAULT_AS=y
|
||||||
# CONFIG_DEFAULT_CFQ is not set
|
# CONFIG_DEFAULT_CFQ is not set
|
||||||
# CONFIG_DEFAULT_NOOP is not set
|
# CONFIG_DEFAULT_NOOP is not set
|
||||||
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
CONFIG_DEFAULT_IOSCHED="anticipatory"
|
||||||
CONFIG_CLASSIC_RCU=y
|
|
||||||
# CONFIG_TREE_RCU is not set
|
|
||||||
# CONFIG_PREEMPT_RCU is not set
|
|
||||||
# CONFIG_TREE_RCU_TRACE is not set
|
|
||||||
# CONFIG_PREEMPT_RCU_TRACE is not set
|
|
||||||
# CONFIG_FREEZER is not set
|
# CONFIG_FREEZER is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -202,7 +207,7 @@ CONFIG_MPIC=y
|
||||||
#
|
#
|
||||||
# Kernel options
|
# Kernel options
|
||||||
#
|
#
|
||||||
# CONFIG_HIGHMEM is not set
|
CONFIG_HIGHMEM=y
|
||||||
CONFIG_TICK_ONESHOT=y
|
CONFIG_TICK_ONESHOT=y
|
||||||
CONFIG_NO_HZ=y
|
CONFIG_NO_HZ=y
|
||||||
CONFIG_HIGH_RES_TIMERS=y
|
CONFIG_HIGH_RES_TIMERS=y
|
||||||
|
@ -244,6 +249,7 @@ CONFIG_UNEVICTABLE_LRU=y
|
||||||
CONFIG_PPC_4K_PAGES=y
|
CONFIG_PPC_4K_PAGES=y
|
||||||
# CONFIG_PPC_16K_PAGES is not set
|
# CONFIG_PPC_16K_PAGES is not set
|
||||||
# CONFIG_PPC_64K_PAGES is not set
|
# CONFIG_PPC_64K_PAGES is not set
|
||||||
|
# CONFIG_PPC_256K_PAGES is not set
|
||||||
CONFIG_FORCE_MAX_ZONEORDER=11
|
CONFIG_FORCE_MAX_ZONEORDER=11
|
||||||
CONFIG_PROC_DEVICETREE=y
|
CONFIG_PROC_DEVICETREE=y
|
||||||
# CONFIG_CMDLINE_BOOL is not set
|
# CONFIG_CMDLINE_BOOL is not set
|
||||||
|
@ -259,6 +265,7 @@ CONFIG_ZONE_DMA=y
|
||||||
CONFIG_PPC_INDIRECT_PCI=y
|
CONFIG_PPC_INDIRECT_PCI=y
|
||||||
CONFIG_FSL_SOC=y
|
CONFIG_FSL_SOC=y
|
||||||
CONFIG_FSL_PCI=y
|
CONFIG_FSL_PCI=y
|
||||||
|
CONFIG_FSL_LBC=y
|
||||||
CONFIG_PPC_PCI_CHOICE=y
|
CONFIG_PPC_PCI_CHOICE=y
|
||||||
CONFIG_PCI=y
|
CONFIG_PCI=y
|
||||||
CONFIG_PCI_DOMAINS=y
|
CONFIG_PCI_DOMAINS=y
|
||||||
|
@ -284,10 +291,11 @@ CONFIG_ARCH_SUPPORTS_MSI=y
|
||||||
# Default settings for advanced configuration options are used
|
# Default settings for advanced configuration options are used
|
||||||
#
|
#
|
||||||
CONFIG_LOWMEM_SIZE=0x30000000
|
CONFIG_LOWMEM_SIZE=0x30000000
|
||||||
|
CONFIG_LOWMEM_CAM_NUM=3
|
||||||
CONFIG_PAGE_OFFSET=0xc0000000
|
CONFIG_PAGE_OFFSET=0xc0000000
|
||||||
CONFIG_KERNEL_START=0xc0000000
|
CONFIG_KERNEL_START=0xc0000000
|
||||||
CONFIG_PHYSICAL_START=0x00000000
|
CONFIG_PHYSICAL_START=0x00000000
|
||||||
CONFIG_PHYSICAL_ALIGN=0x10000000
|
CONFIG_PHYSICAL_ALIGN=0x04000000
|
||||||
CONFIG_TASK_SIZE=0xc0000000
|
CONFIG_TASK_SIZE=0xc0000000
|
||||||
CONFIG_NET=y
|
CONFIG_NET=y
|
||||||
|
|
||||||
|
@ -363,12 +371,7 @@ CONFIG_DEFAULT_TCP_CONG="cubic"
|
||||||
# CONFIG_BT is not set
|
# CONFIG_BT is not set
|
||||||
# CONFIG_AF_RXRPC is not set
|
# CONFIG_AF_RXRPC is not set
|
||||||
# CONFIG_PHONET is not set
|
# CONFIG_PHONET is not set
|
||||||
CONFIG_WIRELESS=y
|
# CONFIG_WIRELESS is not set
|
||||||
# CONFIG_CFG80211 is not set
|
|
||||||
CONFIG_WIRELESS_OLD_REGULATORY=y
|
|
||||||
# CONFIG_WIRELESS_EXT is not set
|
|
||||||
# CONFIG_LIB80211 is not set
|
|
||||||
# CONFIG_MAC80211 is not set
|
|
||||||
# CONFIG_WIMAX is not set
|
# CONFIG_WIMAX is not set
|
||||||
# CONFIG_RFKILL is not set
|
# CONFIG_RFKILL is not set
|
||||||
# CONFIG_NET_9P is not set
|
# CONFIG_NET_9P is not set
|
||||||
|
@ -471,27 +474,18 @@ CONFIG_MTD_NAND_IDS=y
|
||||||
# CONFIG_MTD_NAND_NANDSIM is not set
|
# CONFIG_MTD_NAND_NANDSIM is not set
|
||||||
# CONFIG_MTD_NAND_PLATFORM is not set
|
# CONFIG_MTD_NAND_PLATFORM is not set
|
||||||
# CONFIG_MTD_NAND_FSL_ELBC is not set
|
# CONFIG_MTD_NAND_FSL_ELBC is not set
|
||||||
# CONFIG_MTD_NAND_FSL_UPM is not set
|
CONFIG_MTD_NAND_FSL_UPM=y
|
||||||
# CONFIG_MTD_ONENAND is not set
|
# CONFIG_MTD_ONENAND is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# LPDDR flash memory drivers
|
# LPDDR flash memory drivers
|
||||||
#
|
#
|
||||||
# CONFIG_MTD_LPDDR is not set
|
# CONFIG_MTD_LPDDR is not set
|
||||||
# CONFIG_MTD_QINFO_PROBE is not set
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# UBI - Unsorted block images
|
# UBI - Unsorted block images
|
||||||
#
|
#
|
||||||
CONFIG_MTD_UBI=m
|
# CONFIG_MTD_UBI is not set
|
||||||
CONFIG_MTD_UBI_WL_THRESHOLD=4096
|
|
||||||
CONFIG_MTD_UBI_BEB_RESERVE=1
|
|
||||||
# CONFIG_MTD_UBI_GLUEBI is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# UBI debugging options
|
|
||||||
#
|
|
||||||
# CONFIG_MTD_UBI_DEBUG is not set
|
|
||||||
CONFIG_OF_DEVICE=y
|
CONFIG_OF_DEVICE=y
|
||||||
CONFIG_OF_I2C=y
|
CONFIG_OF_I2C=y
|
||||||
# CONFIG_PARPORT is not set
|
# CONFIG_PARPORT is not set
|
||||||
|
@ -515,69 +509,21 @@ CONFIG_BLK_DEV_RAM_SIZE=32768
|
||||||
# CONFIG_BLK_DEV_HD is not set
|
# CONFIG_BLK_DEV_HD is not set
|
||||||
CONFIG_MISC_DEVICES=y
|
CONFIG_MISC_DEVICES=y
|
||||||
# CONFIG_PHANTOM is not set
|
# CONFIG_PHANTOM is not set
|
||||||
# CONFIG_EEPROM_93CX6 is not set
|
|
||||||
# CONFIG_SGI_IOC4 is not set
|
# CONFIG_SGI_IOC4 is not set
|
||||||
# CONFIG_TIFM_CORE is not set
|
# CONFIG_TIFM_CORE is not set
|
||||||
# CONFIG_ICS932S401 is not set
|
# CONFIG_ICS932S401 is not set
|
||||||
# CONFIG_ENCLOSURE_SERVICES is not set
|
# CONFIG_ENCLOSURE_SERVICES is not set
|
||||||
# CONFIG_HP_ILO is not set
|
# CONFIG_HP_ILO is not set
|
||||||
# CONFIG_C2PORT is not set
|
# CONFIG_C2PORT is not set
|
||||||
|
|
||||||
|
#
|
||||||
|
# EEPROM support
|
||||||
|
#
|
||||||
|
# CONFIG_EEPROM_AT24 is not set
|
||||||
|
# CONFIG_EEPROM_LEGACY is not set
|
||||||
|
# CONFIG_EEPROM_93CX6 is not set
|
||||||
CONFIG_HAVE_IDE=y
|
CONFIG_HAVE_IDE=y
|
||||||
CONFIG_IDE=y
|
# CONFIG_IDE is not set
|
||||||
|
|
||||||
#
|
|
||||||
# Please see Documentation/ide/ide.txt for help/info on IDE drives
|
|
||||||
#
|
|
||||||
CONFIG_IDE_TIMINGS=y
|
|
||||||
# CONFIG_BLK_DEV_IDE_SATA is not set
|
|
||||||
CONFIG_IDE_GD=y
|
|
||||||
CONFIG_IDE_GD_ATA=y
|
|
||||||
# CONFIG_IDE_GD_ATAPI is not set
|
|
||||||
# CONFIG_BLK_DEV_IDECD is not set
|
|
||||||
# CONFIG_BLK_DEV_IDETAPE is not set
|
|
||||||
# CONFIG_IDE_TASK_IOCTL is not set
|
|
||||||
CONFIG_IDE_PROC_FS=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# IDE chipset support/bugfixes
|
|
||||||
#
|
|
||||||
# CONFIG_BLK_DEV_PLATFORM is not set
|
|
||||||
CONFIG_BLK_DEV_IDEDMA_SFF=y
|
|
||||||
|
|
||||||
#
|
|
||||||
# PCI IDE chipsets support
|
|
||||||
#
|
|
||||||
CONFIG_BLK_DEV_IDEPCI=y
|
|
||||||
CONFIG_IDEPCI_PCIBUS_ORDER=y
|
|
||||||
# CONFIG_BLK_DEV_OFFBOARD is not set
|
|
||||||
CONFIG_BLK_DEV_GENERIC=y
|
|
||||||
# CONFIG_BLK_DEV_OPTI621 is not set
|
|
||||||
CONFIG_BLK_DEV_IDEDMA_PCI=y
|
|
||||||
# CONFIG_BLK_DEV_AEC62XX is not set
|
|
||||||
# CONFIG_BLK_DEV_ALI15X3 is not set
|
|
||||||
# CONFIG_BLK_DEV_AMD74XX is not set
|
|
||||||
# CONFIG_BLK_DEV_CMD64X is not set
|
|
||||||
# CONFIG_BLK_DEV_TRIFLEX is not set
|
|
||||||
# CONFIG_BLK_DEV_CS5520 is not set
|
|
||||||
# CONFIG_BLK_DEV_CS5530 is not set
|
|
||||||
# CONFIG_BLK_DEV_HPT366 is not set
|
|
||||||
# CONFIG_BLK_DEV_JMICRON is not set
|
|
||||||
# CONFIG_BLK_DEV_SC1200 is not set
|
|
||||||
# CONFIG_BLK_DEV_PIIX is not set
|
|
||||||
# CONFIG_BLK_DEV_IT8172 is not set
|
|
||||||
# CONFIG_BLK_DEV_IT8213 is not set
|
|
||||||
# CONFIG_BLK_DEV_IT821X is not set
|
|
||||||
# CONFIG_BLK_DEV_NS87415 is not set
|
|
||||||
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
|
|
||||||
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
|
|
||||||
# CONFIG_BLK_DEV_SVWKS is not set
|
|
||||||
# CONFIG_BLK_DEV_SIIMAGE is not set
|
|
||||||
# CONFIG_BLK_DEV_SL82C105 is not set
|
|
||||||
# CONFIG_BLK_DEV_SLC90E66 is not set
|
|
||||||
# CONFIG_BLK_DEV_TRM290 is not set
|
|
||||||
CONFIG_BLK_DEV_VIA82CXXX=y
|
|
||||||
# CONFIG_BLK_DEV_TC86C001 is not set
|
|
||||||
CONFIG_BLK_DEV_IDEDMA=y
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# SCSI device support
|
# SCSI device support
|
||||||
|
@ -650,7 +596,7 @@ CONFIG_MII=y
|
||||||
CONFIG_NETDEV_1000=y
|
CONFIG_NETDEV_1000=y
|
||||||
# CONFIG_ACENIC is not set
|
# CONFIG_ACENIC is not set
|
||||||
# CONFIG_DL2K is not set
|
# CONFIG_DL2K is not set
|
||||||
CONFIG_E1000=y
|
# CONFIG_E1000 is not set
|
||||||
# CONFIG_E1000E is not set
|
# CONFIG_E1000E is not set
|
||||||
# CONFIG_IP1000 is not set
|
# CONFIG_IP1000 is not set
|
||||||
# CONFIG_IGB is not set
|
# CONFIG_IGB is not set
|
||||||
|
@ -668,6 +614,7 @@ CONFIG_GIANFAR=y
|
||||||
# CONFIG_QLA3XXX is not set
|
# CONFIG_QLA3XXX is not set
|
||||||
# CONFIG_ATL1 is not set
|
# CONFIG_ATL1 is not set
|
||||||
# CONFIG_ATL1E is not set
|
# CONFIG_ATL1E is not set
|
||||||
|
# CONFIG_ATL1C is not set
|
||||||
# CONFIG_JME is not set
|
# CONFIG_JME is not set
|
||||||
CONFIG_NETDEV_10000=y
|
CONFIG_NETDEV_10000=y
|
||||||
# CONFIG_CHELSIO_T1 is not set
|
# CONFIG_CHELSIO_T1 is not set
|
||||||
|
@ -835,8 +782,6 @@ CONFIG_I2C_MPC=y
|
||||||
# Miscellaneous I2C Chip support
|
# Miscellaneous I2C Chip support
|
||||||
#
|
#
|
||||||
# CONFIG_DS1682 is not set
|
# CONFIG_DS1682 is not set
|
||||||
# CONFIG_EEPROM_AT24 is not set
|
|
||||||
# CONFIG_EEPROM_LEGACY is not set
|
|
||||||
# CONFIG_SENSORS_PCF8574 is not set
|
# CONFIG_SENSORS_PCF8574 is not set
|
||||||
# CONFIG_PCF8575 is not set
|
# CONFIG_PCF8575 is not set
|
||||||
# CONFIG_SENSORS_PCA9539 is not set
|
# CONFIG_SENSORS_PCA9539 is not set
|
||||||
|
@ -975,26 +920,7 @@ CONFIG_HID=y
|
||||||
# Special HID drivers
|
# Special HID drivers
|
||||||
#
|
#
|
||||||
CONFIG_HID_COMPAT=y
|
CONFIG_HID_COMPAT=y
|
||||||
CONFIG_USB_SUPPORT=y
|
# CONFIG_USB_SUPPORT is not set
|
||||||
CONFIG_USB_ARCH_HAS_HCD=y
|
|
||||||
CONFIG_USB_ARCH_HAS_OHCI=y
|
|
||||||
CONFIG_USB_ARCH_HAS_EHCI=y
|
|
||||||
# CONFIG_USB is not set
|
|
||||||
# CONFIG_USB_OTG_WHITELIST is not set
|
|
||||||
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# Enable Host or Gadget support to see Inventra options
|
|
||||||
#
|
|
||||||
|
|
||||||
#
|
|
||||||
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may also be needed;
|
|
||||||
#
|
|
||||||
# CONFIG_USB_GADGET is not set
|
|
||||||
|
|
||||||
#
|
|
||||||
# OTG and related infrastructure
|
|
||||||
#
|
|
||||||
# CONFIG_UWB is not set
|
# CONFIG_UWB is not set
|
||||||
# CONFIG_MMC is not set
|
# CONFIG_MMC is not set
|
||||||
# CONFIG_MEMSTICK is not set
|
# CONFIG_MEMSTICK is not set
|
||||||
|
@ -1064,16 +990,9 @@ CONFIG_RTC_DRV_DS1307=y
|
||||||
#
|
#
|
||||||
# File systems
|
# File systems
|
||||||
#
|
#
|
||||||
CONFIG_EXT2_FS=y
|
# CONFIG_EXT2_FS is not set
|
||||||
# CONFIG_EXT2_FS_XATTR is not set
|
# CONFIG_EXT3_FS is not set
|
||||||
# CONFIG_EXT2_FS_XIP is not set
|
|
||||||
CONFIG_EXT3_FS=y
|
|
||||||
CONFIG_EXT3_FS_XATTR=y
|
|
||||||
# CONFIG_EXT3_FS_POSIX_ACL is not set
|
|
||||||
# CONFIG_EXT3_FS_SECURITY is not set
|
|
||||||
# CONFIG_EXT4_FS is not set
|
# CONFIG_EXT4_FS is not set
|
||||||
CONFIG_JBD=y
|
|
||||||
CONFIG_FS_MBCACHE=y
|
|
||||||
# CONFIG_REISERFS_FS is not set
|
# CONFIG_REISERFS_FS is not set
|
||||||
# CONFIG_JFS_FS is not set
|
# CONFIG_JFS_FS is not set
|
||||||
# CONFIG_FS_POSIX_ACL is not set
|
# CONFIG_FS_POSIX_ACL is not set
|
||||||
|
@ -1122,8 +1041,17 @@ CONFIG_MISC_FILESYSTEMS=y
|
||||||
# CONFIG_BEFS_FS is not set
|
# CONFIG_BEFS_FS is not set
|
||||||
# CONFIG_BFS_FS is not set
|
# CONFIG_BFS_FS is not set
|
||||||
# CONFIG_EFS_FS is not set
|
# CONFIG_EFS_FS is not set
|
||||||
# CONFIG_JFFS2_FS is not set
|
CONFIG_JFFS2_FS=y
|
||||||
# CONFIG_UBIFS_FS is not set
|
CONFIG_JFFS2_FS_DEBUG=0
|
||||||
|
CONFIG_JFFS2_FS_WRITEBUFFER=y
|
||||||
|
# CONFIG_JFFS2_FS_WBUF_VERIFY is not set
|
||||||
|
# CONFIG_JFFS2_SUMMARY is not set
|
||||||
|
# CONFIG_JFFS2_FS_XATTR is not set
|
||||||
|
# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set
|
||||||
|
CONFIG_JFFS2_ZLIB=y
|
||||||
|
# CONFIG_JFFS2_LZO is not set
|
||||||
|
CONFIG_JFFS2_RTIME=y
|
||||||
|
# CONFIG_JFFS2_RUBIN is not set
|
||||||
# CONFIG_CRAMFS is not set
|
# CONFIG_CRAMFS is not set
|
||||||
# CONFIG_SQUASHFS is not set
|
# CONFIG_SQUASHFS is not set
|
||||||
# CONFIG_VXFS_FS is not set
|
# CONFIG_VXFS_FS is not set
|
||||||
|
@ -1184,6 +1112,8 @@ CONFIG_GENERIC_FIND_LAST_BIT=y
|
||||||
CONFIG_CRC32=y
|
CONFIG_CRC32=y
|
||||||
# CONFIG_CRC7 is not set
|
# CONFIG_CRC7 is not set
|
||||||
# CONFIG_LIBCRC32C is not set
|
# CONFIG_LIBCRC32C is not set
|
||||||
|
CONFIG_ZLIB_INFLATE=y
|
||||||
|
CONFIG_ZLIB_DEFLATE=y
|
||||||
CONFIG_PLIST=y
|
CONFIG_PLIST=y
|
||||||
CONFIG_HAS_IOMEM=y
|
CONFIG_HAS_IOMEM=y
|
||||||
CONFIG_HAS_IOPORT=y
|
CONFIG_HAS_IOPORT=y
|
||||||
|
@ -1219,6 +1149,7 @@ CONFIG_DEBUG_MUTEXES=y
|
||||||
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
|
||||||
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
|
||||||
# CONFIG_DEBUG_KOBJECT is not set
|
# CONFIG_DEBUG_KOBJECT is not set
|
||||||
|
# CONFIG_DEBUG_HIGHMEM is not set
|
||||||
# CONFIG_DEBUG_BUGVERBOSE is not set
|
# CONFIG_DEBUG_BUGVERBOSE is not set
|
||||||
# CONFIG_DEBUG_INFO is not set
|
# CONFIG_DEBUG_INFO is not set
|
||||||
# CONFIG_DEBUG_VM is not set
|
# CONFIG_DEBUG_VM is not set
|
||||||
|
@ -1236,6 +1167,7 @@ CONFIG_DEBUG_MUTEXES=y
|
||||||
# CONFIG_LATENCYTOP is not set
|
# CONFIG_LATENCYTOP is not set
|
||||||
CONFIG_SYSCTL_SYSCALL_CHECK=y
|
CONFIG_SYSCTL_SYSCALL_CHECK=y
|
||||||
CONFIG_HAVE_FUNCTION_TRACER=y
|
CONFIG_HAVE_FUNCTION_TRACER=y
|
||||||
|
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
|
||||||
CONFIG_HAVE_DYNAMIC_FTRACE=y
|
CONFIG_HAVE_DYNAMIC_FTRACE=y
|
||||||
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
|
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
PPC_LONG "1b,4b,2b,4b\n" \
|
PPC_LONG "1b,4b,2b,4b\n" \
|
||||||
".previous" \
|
".previous" \
|
||||||
: "=&r" (oldval), "=&r" (ret) \
|
: "=&r" (oldval), "=&r" (ret) \
|
||||||
: "b" (uaddr), "i" (-EFAULT), "1" (oparg) \
|
: "b" (uaddr), "i" (-EFAULT), "r" (oparg) \
|
||||||
: "cr0", "memory")
|
: "cr0", "memory")
|
||||||
|
|
||||||
static inline int futex_atomic_op_inuser (int encoded_op, int __user *uaddr)
|
static inline int futex_atomic_op_inuser (int encoded_op, int __user *uaddr)
|
||||||
|
@ -47,19 +47,19 @@ static inline int futex_atomic_op_inuser (int encoded_op, int __user *uaddr)
|
||||||
|
|
||||||
switch (op) {
|
switch (op) {
|
||||||
case FUTEX_OP_SET:
|
case FUTEX_OP_SET:
|
||||||
__futex_atomic_op("", ret, oldval, uaddr, oparg);
|
__futex_atomic_op("mr %1,%4\n", ret, oldval, uaddr, oparg);
|
||||||
break;
|
break;
|
||||||
case FUTEX_OP_ADD:
|
case FUTEX_OP_ADD:
|
||||||
__futex_atomic_op("add %1,%0,%1\n", ret, oldval, uaddr, oparg);
|
__futex_atomic_op("add %1,%0,%4\n", ret, oldval, uaddr, oparg);
|
||||||
break;
|
break;
|
||||||
case FUTEX_OP_OR:
|
case FUTEX_OP_OR:
|
||||||
__futex_atomic_op("or %1,%0,%1\n", ret, oldval, uaddr, oparg);
|
__futex_atomic_op("or %1,%0,%4\n", ret, oldval, uaddr, oparg);
|
||||||
break;
|
break;
|
||||||
case FUTEX_OP_ANDN:
|
case FUTEX_OP_ANDN:
|
||||||
__futex_atomic_op("andc %1,%0,%1\n", ret, oldval, uaddr, oparg);
|
__futex_atomic_op("andc %1,%0,%4\n", ret, oldval, uaddr, oparg);
|
||||||
break;
|
break;
|
||||||
case FUTEX_OP_XOR:
|
case FUTEX_OP_XOR:
|
||||||
__futex_atomic_op("xor %1,%0,%1\n", ret, oldval, uaddr, oparg);
|
__futex_atomic_op("xor %1,%0,%4\n", ret, oldval, uaddr, oparg);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
ret = -ENOSYS;
|
ret = -ENOSYS;
|
||||||
|
|
|
@ -52,6 +52,12 @@
|
||||||
*/
|
*/
|
||||||
#define MMU_FTR_NEED_DTLB_SW_LRU ASM_CONST(0x00200000)
|
#define MMU_FTR_NEED_DTLB_SW_LRU ASM_CONST(0x00200000)
|
||||||
|
|
||||||
|
/* This indicates that the processor uses the wrong opcode for tlbilx
|
||||||
|
* instructions. During the ISA 2.06 development the opcode for tlbilx
|
||||||
|
* changed and some early implementations used to old opcode
|
||||||
|
*/
|
||||||
|
#define MMU_FTR_TLBILX_EARLY_OPCODE ASM_CONST(0x00400000)
|
||||||
|
|
||||||
#ifndef __ASSEMBLY__
|
#ifndef __ASSEMBLY__
|
||||||
#include <asm/cputable.h>
|
#include <asm/cputable.h>
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,8 @@
|
||||||
|
|
||||||
#define PPC_INST_STSWI 0x7c0005aa
|
#define PPC_INST_STSWI 0x7c0005aa
|
||||||
#define PPC_INST_STSWX 0x7c00052a
|
#define PPC_INST_STSWX 0x7c00052a
|
||||||
#define PPC_INST_TLBILX 0x7c000626
|
#define PPC_INST_TLBILX 0x7c000024
|
||||||
|
#define PPC_INST_TLBILX_EARLY 0x7c000626
|
||||||
#define PPC_INST_WAIT 0x7c00007c
|
#define PPC_INST_WAIT 0x7c00007c
|
||||||
|
|
||||||
/* macros to insert fields into opcodes */
|
/* macros to insert fields into opcodes */
|
||||||
|
@ -63,10 +64,18 @@
|
||||||
#define PPC_RFDI stringify_in_c(.long PPC_INST_RFDI)
|
#define PPC_RFDI stringify_in_c(.long PPC_INST_RFDI)
|
||||||
#define PPC_RFMCI stringify_in_c(.long PPC_INST_RFMCI)
|
#define PPC_RFMCI stringify_in_c(.long PPC_INST_RFMCI)
|
||||||
#define PPC_TLBILX(t, a, b) stringify_in_c(.long PPC_INST_TLBILX | \
|
#define PPC_TLBILX(t, a, b) stringify_in_c(.long PPC_INST_TLBILX | \
|
||||||
__PPC_T_TLB(t) | __PPC_RA(a) | __PPC_RB(b))
|
__PPC_T_TLB(t) | \
|
||||||
|
__PPC_RA(a) | __PPC_RB(b))
|
||||||
#define PPC_TLBILX_ALL(a, b) PPC_TLBILX(0, a, b)
|
#define PPC_TLBILX_ALL(a, b) PPC_TLBILX(0, a, b)
|
||||||
#define PPC_TLBILX_PID(a, b) PPC_TLBILX(1, a, b)
|
#define PPC_TLBILX_PID(a, b) PPC_TLBILX(1, a, b)
|
||||||
#define PPC_TLBILX_VA(a, b) PPC_TLBILX(3, a, b)
|
#define PPC_TLBILX_VA(a, b) PPC_TLBILX(3, a, b)
|
||||||
|
|
||||||
|
#define PPC_TLBILX_EARLY(t, a, b) stringify_in_c(.long PPC_INST_TLBILX_EARLY | \
|
||||||
|
__PPC_T_TLB(t) | \
|
||||||
|
__PPC_RA(a) | __PPC_RB(b))
|
||||||
|
#define PPC_TLBILX_ALL_EARLY(a, b) PPC_TLBILX_EARLY(0, a, b)
|
||||||
|
#define PPC_TLBILX_PID_EARLY(a, b) PPC_TLBILX_EARLY(1, a, b)
|
||||||
|
#define PPC_TLBILX_VA_EARLY(a, b) PPC_TLBILX_EARLY(3, a, b)
|
||||||
#define PPC_WAIT(w) stringify_in_c(.long PPC_INST_WAIT | \
|
#define PPC_WAIT(w) stringify_in_c(.long PPC_INST_WAIT | \
|
||||||
__PPC_WC(w))
|
__PPC_WC(w))
|
||||||
|
|
||||||
|
|
|
@ -1766,7 +1766,7 @@ static struct cpu_spec __initdata cpu_specs[] = {
|
||||||
.cpu_features = CPU_FTRS_E500MC,
|
.cpu_features = CPU_FTRS_E500MC,
|
||||||
.cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
|
.cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
|
||||||
.mmu_features = MMU_FTR_TYPE_FSL_E | MMU_FTR_BIG_PHYS |
|
.mmu_features = MMU_FTR_TYPE_FSL_E | MMU_FTR_BIG_PHYS |
|
||||||
MMU_FTR_USE_TLBILX,
|
MMU_FTR_USE_TLBILX | MMU_FTR_TLBILX_EARLY_OPCODE,
|
||||||
.icache_bsize = 64,
|
.icache_bsize = 64,
|
||||||
.dcache_bsize = 64,
|
.dcache_bsize = 64,
|
||||||
.num_pmcs = 4,
|
.num_pmcs = 4,
|
||||||
|
|
|
@ -125,7 +125,6 @@ static void do_flush_tlb_page_ipi(void *param)
|
||||||
|
|
||||||
void flush_tlb_mm(struct mm_struct *mm)
|
void flush_tlb_mm(struct mm_struct *mm)
|
||||||
{
|
{
|
||||||
cpumask_t cpu_mask;
|
|
||||||
unsigned int pid;
|
unsigned int pid;
|
||||||
|
|
||||||
preempt_disable();
|
preempt_disable();
|
||||||
|
|
|
@ -138,7 +138,11 @@ BEGIN_MMU_FTR_SECTION
|
||||||
andi. r3,r3,MMUCSR0_TLBFI@l
|
andi. r3,r3,MMUCSR0_TLBFI@l
|
||||||
bne 1b
|
bne 1b
|
||||||
MMU_FTR_SECTION_ELSE
|
MMU_FTR_SECTION_ELSE
|
||||||
PPC_TLBILX_ALL(0,0)
|
BEGIN_MMU_FTR_SECTION_NESTED(96)
|
||||||
|
PPC_TLBILX_ALL(0,r3)
|
||||||
|
MMU_FTR_SECTION_ELSE_NESTED(96)
|
||||||
|
PPC_TLBILX_ALL_EARLY(0,r3)
|
||||||
|
ALT_MMU_FTR_SECTION_END_NESTED_IFCLR(MMU_FTR_TLBILX_EARLY_OPCODE, 96)
|
||||||
ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_USE_TLBILX)
|
ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_USE_TLBILX)
|
||||||
msync
|
msync
|
||||||
isync
|
isync
|
||||||
|
@ -151,7 +155,11 @@ BEGIN_MMU_FTR_SECTION
|
||||||
wrteei 0
|
wrteei 0
|
||||||
mfspr r4,SPRN_MAS6 /* save MAS6 */
|
mfspr r4,SPRN_MAS6 /* save MAS6 */
|
||||||
mtspr SPRN_MAS6,r3
|
mtspr SPRN_MAS6,r3
|
||||||
|
BEGIN_MMU_FTR_SECTION_NESTED(96)
|
||||||
PPC_TLBILX_PID(0,0)
|
PPC_TLBILX_PID(0,0)
|
||||||
|
MMU_FTR_SECTION_ELSE_NESTED(96)
|
||||||
|
PPC_TLBILX_PID_EARLY(0,0)
|
||||||
|
ALT_MMU_FTR_SECTION_END_NESTED_IFCLR(MMU_FTR_TLBILX_EARLY_OPCODE, 96)
|
||||||
mtspr SPRN_MAS6,r4 /* restore MAS6 */
|
mtspr SPRN_MAS6,r4 /* restore MAS6 */
|
||||||
wrtee r10
|
wrtee r10
|
||||||
MMU_FTR_SECTION_ELSE
|
MMU_FTR_SECTION_ELSE
|
||||||
|
@ -185,7 +193,11 @@ BEGIN_MMU_FTR_SECTION
|
||||||
mtspr SPRN_MAS1,r4
|
mtspr SPRN_MAS1,r4
|
||||||
tlbwe
|
tlbwe
|
||||||
MMU_FTR_SECTION_ELSE
|
MMU_FTR_SECTION_ELSE
|
||||||
|
BEGIN_MMU_FTR_SECTION_NESTED(96)
|
||||||
PPC_TLBILX_VA(0,r3)
|
PPC_TLBILX_VA(0,r3)
|
||||||
|
MMU_FTR_SECTION_ELSE_NESTED(96)
|
||||||
|
PPC_TLBILX_VA_EARLY(0,r3)
|
||||||
|
ALT_MMU_FTR_SECTION_END_NESTED_IFCLR(MMU_FTR_TLBILX_EARLY_OPCODE, 96)
|
||||||
ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_USE_TLBILX)
|
ALT_MMU_FTR_SECTION_END_IFCLR(MMU_FTR_USE_TLBILX)
|
||||||
msync
|
msync
|
||||||
isync
|
isync
|
||||||
|
|
|
@ -25,6 +25,7 @@
|
||||||
#include <asm/smp.h>
|
#include <asm/smp.h>
|
||||||
#include <asm/system.h>
|
#include <asm/system.h>
|
||||||
#include <asm/uaccess.h>
|
#include <asm/uaccess.h>
|
||||||
|
#include <asm/firmware.h>
|
||||||
|
|
||||||
#include "plpar_wrappers.h"
|
#include "plpar_wrappers.h"
|
||||||
|
|
||||||
|
|
|
@ -182,6 +182,8 @@ static void eeh_report_reset(struct pci_dev *dev, void *userdata)
|
||||||
if (!driver)
|
if (!driver)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
dev->error_state = pci_channel_io_normal;
|
||||||
|
|
||||||
eeh_enable_irq(dev);
|
eeh_enable_irq(dev);
|
||||||
|
|
||||||
if (!driver->err_handler ||
|
if (!driver->err_handler ||
|
||||||
|
|
|
@ -43,10 +43,6 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Flags related to I2C device features */
|
|
||||||
#define FSL_I2C_DEV_SEPARATE_DFSRR 0x00000001
|
|
||||||
#define FSL_I2C_DEV_CLOCK_5200 0x00000002
|
|
||||||
|
|
||||||
enum fsl_usb2_operating_modes {
|
enum fsl_usb2_operating_modes {
|
||||||
FSL_USB2_MPH_HOST,
|
FSL_USB2_MPH_HOST,
|
||||||
FSL_USB2_DR_HOST,
|
FSL_USB2_DR_HOST,
|
||||||
|
|
Loading…
Reference in New Issue