aboutsummaryrefslogtreecommitdiffstats
path: root/arch/c6x/kernel
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2015-04-16 18:48:55 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2015-04-16 18:48:55 -0400
commit45701e2636a02ab1c5305ead5236f05bda64c15f (patch)
tree1a447dfd3b1779254bafc14b092ec2371b2206c3 /arch/c6x/kernel
parent497a5df7bf6ffd136ae21c49d1a01292930d7ca2 (diff)
parent3083ca2376a76072dc0071fb211de80b0ac44bd1 (diff)
Merge tag 'for-linus' of git://linux-c6x.org/git/projects/linux-c6x-upstreaming
Pull arch/c6x fixes from Mark Salter. * tag 'for-linus' of git://linux-c6x.org/git/projects/linux-c6x-upstreaming: c6x: platforms: cache: Export symbol L1P_cache_block_invalidate and L1D_cache_block_writeback c6x: kernel: setup: Export symbol memory_end c6x: kernel: setup: Add screen_info global variable c6x: include: asm: Kbuild: Add generic serial.h c6x: include: asm: dma-mapping: Add dummy dma_sync_single_range_for_device c6x: include: asm: setup: Include "linux/types.h" c6x: asm: Add default flat.h according to xtensa architecture c6x: kernel: setup: Remove 'const' for local variables in machine_init c6x: Makefile: Add -D__linux__ C6x: time: Ensure consistency in __init c6x: kernel: setup: Include "linux/console.h"
Diffstat (limited to 'arch/c6x/kernel')
-rw-r--r--arch/c6x/kernel/setup.c10
-rw-r--r--arch/c6x/kernel/time.c2
2 files changed, 8 insertions, 4 deletions
diff --git a/arch/c6x/kernel/setup.c b/arch/c6x/kernel/setup.c
index 757128868d43..72e17f7ebd6f 100644
--- a/arch/c6x/kernel/setup.c
+++ b/arch/c6x/kernel/setup.c
@@ -26,7 +26,8 @@
26#include <linux/cpu.h> 26#include <linux/cpu.h>
27#include <linux/fs.h> 27#include <linux/fs.h>
28#include <linux/of.h> 28#include <linux/of.h>
29 29#include <linux/console.h>
30#include <linux/screen_info.h>
30 31
31#include <asm/sections.h> 32#include <asm/sections.h>
32#include <asm/div64.h> 33#include <asm/div64.h>
@@ -38,6 +39,8 @@
38 39
39static const char *c6x_soc_name; 40static const char *c6x_soc_name;
40 41
42struct screen_info screen_info;
43
41int c6x_num_cores; 44int c6x_num_cores;
42EXPORT_SYMBOL_GPL(c6x_num_cores); 45EXPORT_SYMBOL_GPL(c6x_num_cores);
43 46
@@ -60,6 +63,7 @@ unsigned char c6x_fuse_mac[6];
60 63
61unsigned long memory_start; 64unsigned long memory_start;
62unsigned long memory_end; 65unsigned long memory_end;
66EXPORT_SYMBOL(memory_end);
63 67
64unsigned long ram_start; 68unsigned long ram_start;
65unsigned long ram_end; 69unsigned long ram_end;
@@ -265,8 +269,8 @@ int __init c6x_add_memory(phys_addr_t start, unsigned long size)
265 */ 269 */
266notrace void __init machine_init(unsigned long dt_ptr) 270notrace void __init machine_init(unsigned long dt_ptr)
267{ 271{
268 const void *dtb = __va(dt_ptr); 272 void *dtb = __va(dt_ptr);
269 const void *fdt = _fdt_start; 273 void *fdt = _fdt_start;
270 274
271 /* interrupts must be masked */ 275 /* interrupts must be masked */
272 set_creg(IER, 2); 276 set_creg(IER, 2);
diff --git a/arch/c6x/kernel/time.c b/arch/c6x/kernel/time.c
index 356ee84cad95..04845aaf5985 100644
--- a/arch/c6x/kernel/time.c
+++ b/arch/c6x/kernel/time.c
@@ -49,7 +49,7 @@ u64 sched_clock(void)
49 return (tsc * sched_clock_multiplier) >> SCHED_CLOCK_SHIFT; 49 return (tsc * sched_clock_multiplier) >> SCHED_CLOCK_SHIFT;
50} 50}
51 51
52void time_init(void) 52void __init time_init(void)
53{ 53{
54 u64 tmp = (u64)NSEC_PER_SEC << SCHED_CLOCK_SHIFT; 54 u64 tmp = (u64)NSEC_PER_SEC << SCHED_CLOCK_SHIFT;
55 55