Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
6fa612b5
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
6fa612b5
编写于
5月 11, 2009
作者:
M
Michal Simek
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
microblaze: Kconfig: Enable drivers for Microblaze
Signed-off-by:
N
Michal Simek
<
monstr@monstr.eu
>
上级
873a2e89
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
15 addition
and
13 deletion
+15
-13
arch/microblaze/Kconfig
arch/microblaze/Kconfig
+4
-3
drivers/block/Kconfig
drivers/block/Kconfig
+1
-1
drivers/char/Kconfig
drivers/char/Kconfig
+1
-1
drivers/gpio/Kconfig
drivers/gpio/Kconfig
+1
-1
drivers/input/serio/Kconfig
drivers/input/serio/Kconfig
+1
-1
drivers/of/Kconfig
drivers/of/Kconfig
+4
-4
drivers/spi/Kconfig
drivers/spi/Kconfig
+1
-1
drivers/usb/Kconfig
drivers/usb/Kconfig
+1
-0
drivers/video/Kconfig
drivers/video/Kconfig
+1
-1
未找到文件。
arch/microblaze/Kconfig
浏览文件 @
6fa612b5
...
...
@@ -6,6 +6,7 @@ mainmenu "Linux/Microblaze Kernel Configuration"
config MICROBLAZE
def_bool y
select HAVE_LMB
select ARCH_WANT_OPTIONAL_GPIOLIB
config SWAP
def_bool n
...
...
@@ -49,6 +50,9 @@ config GENERIC_CLOCKEVENTS
config GENERIC_HARDIRQS_NO__DO_IRQ
def_bool y
config GENERIC_GPIO
def_bool y
config PCI
depends on !MMU
def_bool n
...
...
@@ -105,9 +109,6 @@ config CMDLINE_FORCE
config OF
def_bool y
config OF_DEVICE
def_bool y
config PROC_DEVICETREE
bool "Support for device tree in /proc"
depends on PROC_FS
...
...
drivers/block/Kconfig
浏览文件 @
6fa612b5
...
...
@@ -438,7 +438,7 @@ source "drivers/s390/block/Kconfig"
config XILINX_SYSACE
tristate "Xilinx SystemACE support"
depends on 4xx
depends on 4xx
|| MICROBLAZE
help
Include support for the Xilinx SystemACE CompactFlash interface
...
...
drivers/char/Kconfig
浏览文件 @
6fa612b5
...
...
@@ -893,7 +893,7 @@ config DTLK
config XILINX_HWICAP
tristate "Xilinx HWICAP Support"
depends on XILINX_VIRTEX
depends on XILINX_VIRTEX
|| MICROBLAZE
help
This option enables support for Xilinx Internal Configuration
Access Port (ICAP) driver. The ICAP is used on Xilinx Virtex
...
...
drivers/gpio/Kconfig
浏览文件 @
6fa612b5
...
...
@@ -69,7 +69,7 @@ comment "Memory mapped GPIO expanders:"
config GPIO_XILINX
bool "Xilinx GPIO support"
depends on PPC_OF
depends on PPC_OF
|| MICROBLAZE
help
Say yes here to support the Xilinx FPGA GPIO device
...
...
drivers/input/serio/Kconfig
浏览文件 @
6fa612b5
...
...
@@ -192,7 +192,7 @@ config SERIO_RAW
config SERIO_XILINX_XPS_PS2
tristate "Xilinx XPS PS/2 Controller Support"
depends on PPC
depends on PPC
|| MICROBLAZE
help
This driver supports XPS PS/2 IP from the Xilinx EDK on
PowerPC platform.
...
...
drivers/of/Kconfig
浏览文件 @
6fa612b5
config OF_DEVICE
def_bool y
depends on OF && (SPARC || PPC_OF)
depends on OF && (SPARC || PPC_OF
|| MICROBLAZE
)
config OF_GPIO
def_bool y
depends on OF &&
PPC_OF
&& GPIOLIB
depends on OF &&
(PPC_OF || MICROBLAZE)
&& GPIOLIB
help
OpenFirmware GPIO accessors
config OF_I2C
def_tristate I2C
depends on
PPC_OF
&& I2C
depends on
(PPC_OF || MICROBLAZE)
&& I2C
help
OpenFirmware I2C accessors
config OF_SPI
def_tristate SPI
depends on OF &&
PPC_OF
&& SPI
depends on OF &&
(PPC_OF || MICROBLAZE)
&& SPI
help
OpenFirmware SPI accessors
drivers/spi/Kconfig
浏览文件 @
6fa612b5
...
...
@@ -212,7 +212,7 @@ config SPI_TXX9
config SPI_XILINX
tristate "Xilinx SPI controller"
depends on
XILINX_VIRTEX
&& EXPERIMENTAL
depends on
(XILINX_VIRTEX || MICROBLAZE)
&& EXPERIMENTAL
select SPI_BITBANG
help
This exposes the SPI controller IP from the Xilinx EDK.
...
...
drivers/usb/Kconfig
浏览文件 @
6fa612b5
...
...
@@ -22,6 +22,7 @@ config USB_ARCH_HAS_HCD
default y if PCMCIA && !M32R # sl811_cs
default y if ARM # SL-811
default y if SUPERH # r8a66597-hcd
default y if MICROBLAZE
default PCI
# many non-PCI SOC chips embed OHCI
...
...
drivers/video/Kconfig
浏览文件 @
6fa612b5
...
...
@@ -1996,7 +1996,7 @@ config FB_PS3_DEFAULT_SIZE_M
config FB_XILINX
tristate "Xilinx frame buffer support"
depends on FB &&
XILINX_VIRTEX
depends on FB &&
(XILINX_VIRTEX || MICROBLAZE)
select FB_CFB_FILLRECT
select FB_CFB_COPYAREA
select FB_CFB_IMAGEBLIT
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录