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
1
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
8fdd78e
Documentation
arch
alpha
arm
arm64
avr32
blackfin
c6x
boot
configs
include
asm
Kbuild
asm-offsets.h
bitops.h
bug.h
cache.h
cacheflush.h
checksum.h
clkdev.h
clock.h
cmpxchg.h
delay.h
dma-mapping.h
dscr.h
elf.h
ftrace.h
hardirq.h
irq.h
irqflags.h
linkage.h
megamod-pic.h
mmu.h
module.h
mutex.h
page.h
pgtable.h
processor.h
procinfo.h
prom.h
ptrace.h
sections.h
setup.h
soc.h
special_insns.h
string.h
switch_to.h
syscall.h
syscalls.h
thread_info.h
timer64.h
timex.h
tlb.h
traps.h
uaccess.h
unaligned.h
uapi
kernel
lib
mm
platforms
Kconfig
Makefile
cris
frv
h8300
hexagon
ia64
m32r
m68k
microblaze
mips
mn10300
openrisc
parisc
powerpc
s390
score
sh
sparc
tile
um
unicore32
x86
xtensa
.gitignore
Kconfig
block
crypto
drivers
firmware
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
REPORTING-BUGS
Breadcrumbs
linux
/
arch
/
c6x
/
include
/
asm
/
setup.h
Copy path
Blame
Blame
Latest commit
History
History
33 lines (26 loc) · 939 Bytes
Breadcrumbs
linux
/
arch
/
c6x
/
include
/
asm
/
setup.h
Top
File metadata and controls
Code
Blame
33 lines (26 loc) · 939 Bytes
Raw
/* * Port on Texas Instruments TMS320C6x architecture * * Copyright (C) 2004, 2009, 2010 2011 Texas Instruments Incorporated * Author: Aurelien Jacquiot (aurelien.jacquiot@jaluna.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. */ #ifndef _ASM_C6X_SETUP_H #define _ASM_C6X_SETUP_H #include <uapi/asm/setup.h> #ifndef __ASSEMBLY__ extern char c6x_command_line[COMMAND_LINE_SIZE]; extern int c6x_add_memory(phys_addr_t start, unsigned long size); extern unsigned long ram_start; extern unsigned long ram_end; extern int c6x_num_cores; extern unsigned int c6x_silicon_rev; extern unsigned int c6x_devstat; extern unsigned char c6x_fuse_mac[6]; extern void machine_init(unsigned long dt_ptr); extern void time_init(void); #endif /* !__ASSEMBLY__ */ #endif /* _ASM_C6X_SETUP_H */
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
30
31
32
33
You can’t perform that action at this time.