Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
c0ab852
Documentation
LICENSES
arch
alpha
arc
arm
arm64
c6x
h8300
hexagon
ia64
m68k
microblaze
boot
configs
include
kernel
cpu
.gitignore
Makefile
asm-offsets.c
dma.c
entry-nommu.S
entry.S
exceptions.c
ftrace.c
head.S
heartbeat.c
hw_exception_handler.S
irq.c
kgdb.c
mcount.S
microblaze_ksyms.c
misc.S
module.c
platform.c
process.c
prom.c
ptrace.c
reset.c
setup.c
signal.c
stacktrace.c
sys_microblaze.c
syscall_table.S
timer.c
traps.c
unwind.c
vmlinux.lds.S
lib
mm
oprofile
pci
Kconfig
Kconfig.debug
Kconfig.platform
Makefile
mips
nds32
nios2
openrisc
parisc
powerpc
riscv
s390
sh
sparc
um
unicore32
x86
xtensa
.gitignore
Kconfig
block
certs
crypto
drivers
firmware
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
arch
/
microblaze
/
kernel
/
platform.c
Blame
Blame
Latest commit
History
History
29 lines (26 loc) · 740 Bytes
Breadcrumbs
linux
/
arch
/
microblaze
/
kernel
/
platform.c
Top
File metadata and controls
Code
Blame
29 lines (26 loc) · 740 Bytes
Raw
/* * Copyright 2008 Michal Simek <monstr@monstr.eu> * * based on virtex.c file * * Copyright 2007 Secret Lab Technologies Ltd. * * This file is licensed under the terms of the GNU General Public License * version 2. This program is licensed "as is" without any warranty of any * kind, whether express or implied. */ #include <linux/init.h> #include <linux/of_platform.h> #include <asm/setup.h> static struct of_device_id xilinx_of_bus_ids[] __initdata = { { .compatible = "simple-bus", }, { .compatible = "xlnx,compound", }, {} }; static int __init microblaze_device_probe(void) { of_platform_bus_probe(NULL, xilinx_of_bus_ids, NULL); of_platform_reset_gpio_probe(); return 0; } device_initcall(microblaze_device_probe);
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
You can’t perform that action at this time.