diff options
Diffstat (limited to 'arch')
289 files changed, 7731 insertions, 7853 deletions
diff --git a/arch/alpha/Kconfig b/arch/alpha/Kconfig index d5b9b5e645cc..9944dedee5b1 100644 --- a/arch/alpha/Kconfig +++ b/arch/alpha/Kconfig | |||
@@ -18,6 +18,8 @@ config ALPHA | |||
18 | select ARCH_HAVE_NMI_SAFE_CMPXCHG | 18 | select ARCH_HAVE_NMI_SAFE_CMPXCHG |
19 | select GENERIC_SMP_IDLE_THREAD | 19 | select GENERIC_SMP_IDLE_THREAD |
20 | select GENERIC_CMOS_UPDATE | 20 | select GENERIC_CMOS_UPDATE |
21 | select GENERIC_STRNCPY_FROM_USER | ||
22 | select GENERIC_STRNLEN_USER | ||
21 | help | 23 | help |
22 | The Alpha is a 64-bit general-purpose processor designed and | 24 | The Alpha is a 64-bit general-purpose processor designed and |
23 | marketed by the Digital Equipment Corporation of blessed memory, | 25 | marketed by the Digital Equipment Corporation of blessed memory, |
diff --git a/arch/alpha/include/asm/atomic.h b/arch/alpha/include/asm/atomic.h index 3bb7ffeae3bc..c2cbe4fc391c 100644 --- a/arch/alpha/include/asm/atomic.h +++ b/arch/alpha/include/asm/atomic.h | |||
@@ -14,8 +14,8 @@ | |||
14 | */ | 14 | */ |
15 | 15 | ||
16 | 16 | ||
17 | #define ATOMIC_INIT(i) ( (atomic_t) { (i) } ) | 17 | #define ATOMIC_INIT(i) { (i) } |
18 | #define ATOMIC64_INIT(i) ( (atomic64_t) { (i) } ) | 18 | #define ATOMIC64_INIT(i) { (i) } |
19 | 19 | ||
20 | #define atomic_read(v) (*(volatile int *)&(v)->counter) | 20 | #define atomic_read(v) (*(volatile int *)&(v)->counter) |
21 | #define atomic64_read(v) (*(volatile long *)&(v)->counter) | 21 | #define atomic64_read(v) (*(volatile long *)&(v)->counter) |
diff --git a/arch/alpha/include/asm/fpu.h b/arch/alpha/include/asm/fpu.h index db00f7885faa..e477bcd5b94a 100644 --- a/arch/alpha/include/asm/fpu.h +++ b/arch/alpha/include/asm/fpu.h | |||
@@ -1,7 +1,9 @@ | |||
1 | #ifndef __ASM_ALPHA_FPU_H | 1 | #ifndef __ASM_ALPHA_FPU_H |
2 | #define __ASM_ALPHA_FPU_H | 2 | #define __ASM_ALPHA_FPU_H |
3 | 3 | ||
4 | #ifdef __KERNEL__ | ||
4 | #include <asm/special_insns.h> | 5 | #include <asm/special_insns.h> |
6 | #endif | ||
5 | 7 | ||
6 | /* | 8 | /* |
7 | * Alpha floating-point control register defines: | 9 | * Alpha floating-point control register defines: |
diff --git a/arch/alpha/include/asm/ptrace.h b/arch/alpha/include/asm/ptrace.h index fd698a174f26..b87755a19554 100644 --- a/arch/alpha/include/asm/ptrace.h +++ b/arch/alpha/include/asm/ptrace.h | |||
@@ -76,7 +76,10 @@ struct switch_stack { | |||
76 | #define task_pt_regs(task) \ | 76 | #define task_pt_regs(task) \ |
77 | ((struct pt_regs *) (task_stack_page(task) + 2*PAGE_SIZE) - 1) | 77 | ((struct pt_regs *) (task_stack_page(task) + 2*PAGE_SIZE) - 1) |
78 | 78 | ||
79 | #define force_successful_syscall_return() (task_pt_regs(current)->r0 = 0) | 79 | #define current_pt_regs() \ |
80 | ((struct pt_regs *) ((char *)current_thread_info() + 2*PAGE_SIZE) - 1) | ||
81 | |||
82 | #define force_successful_syscall_return() (current_pt_regs()->r0 = 0) | ||
80 | 83 | ||
81 | #endif | 84 | #endif |
82 | 85 | ||
diff --git a/arch/alpha/include/asm/socket.h b/arch/alpha/include/asm/socket.h index dcb221a4b5be..7d2f75be932e 100644 --- a/arch/alpha/include/asm/socket.h +++ b/arch/alpha/include/asm/socket.h | |||
@@ -76,9 +76,11 @@ | |||
76 | /* Instruct lower device to use last 4-bytes of skb data as FCS */ | 76 | /* Instruct lower device to use last 4-bytes of skb data as FCS */ |
77 | #define SO_NOFCS 43 | 77 | #define SO_NOFCS 43 |
78 | 78 | ||
79 | #ifdef __KERNEL__ | ||
79 | /* O_NONBLOCK clashes with the bits used for socket types. Therefore we | 80 | /* O_NONBLOCK clashes with the bits used for socket types. Therefore we |
80 | * have to define SOCK_NONBLOCK to a different value here. | 81 | * have to define SOCK_NONBLOCK to a different value here. |
81 | */ | 82 | */ |
82 | #define SOCK_NONBLOCK 0x40000000 | 83 | #define SOCK_NONBLOCK 0x40000000 |
84 | #endif /* __KERNEL__ */ | ||
83 | 85 | ||
84 | #endif /* _ASM_SOCKET_H */ | 86 | #endif /* _ASM_SOCKET_H */ |
diff --git a/arch/alpha/include/asm/uaccess.h b/arch/alpha/include/asm/uaccess.h index b49ec2f8d6e3..766fdfde2b7a 100644 --- a/arch/alpha/include/asm/uaccess.h +++ b/arch/alpha/include/asm/uaccess.h | |||
@@ -433,36 +433,12 @@ clear_user(void __user *to, long len) | |||
433 | #undef __module_address | 433 | #undef __module_address |
434 | #undef __module_call | 434 | #undef __module_call |
435 | 435 | ||
436 | /* Returns: -EFAULT if exception before terminator, N if the entire | 436 | #define user_addr_max() \ |
437 | buffer filled, else strlen. */ | 437 | (segment_eq(get_fs(), USER_DS) ? TASK_SIZE : ~0UL) |
438 | 438 | ||
439 | extern long __strncpy_from_user(char *__to, const char __user *__from, long __to_len); | 439 | extern long strncpy_from_user(char *dest, const char __user *src, long count); |
440 | 440 | extern __must_check long strlen_user(const char __user *str); | |
441 | extern inline long | 441 | extern __must_check long strnlen_user(const char __user *str, long n); |
442 | strncpy_from_user(char *to, const char __user *from, long n) | ||
443 | { | ||
444 | long ret = -EFAULT; | ||
445 | if (__access_ok((unsigned long)from, 0, get_fs())) | ||
446 | ret = __strncpy_from_user(to, from, n); | ||
447 | return ret; | ||
448 | } | ||
449 | |||
450 | /* Returns: 0 if bad, string length+1 (memory size) of string if ok */ | ||
451 | extern long __strlen_user(const char __user *); | ||
452 | |||
453 | extern inline long strlen_user(const char __user *str) | ||
454 | { | ||
455 | return access_ok(VERIFY_READ,str,0) ? __strlen_user(str) : 0; | ||
456 | } | ||
457 | |||
458 | /* Returns: 0 if exception before NUL or reaching the supplied limit (N), | ||
459 | * a value greater than N if the limit would be exceeded, else strlen. */ | ||
460 | extern long __strnlen_user(const char __user *, long); | ||
461 | |||
462 | extern inline long strnlen_user(const char __user *str, long n) | ||
463 | { | ||
464 | return access_ok(VERIFY_READ,str,0) ? __strnlen_user(str, n) : 0; | ||
465 | } | ||
466 | 442 | ||
467 | /* | 443 | /* |
468 | * About the exception table: | 444 | * About the exception table: |
diff --git a/arch/alpha/include/asm/unistd.h b/arch/alpha/include/asm/unistd.h index 633b23b0664a..a31a78eac9b9 100644 --- a/arch/alpha/include/asm/unistd.h +++ b/arch/alpha/include/asm/unistd.h | |||
@@ -465,10 +465,12 @@ | |||
465 | #define __NR_setns 501 | 465 | #define __NR_setns 501 |
466 | #define __NR_accept4 502 | 466 | #define __NR_accept4 502 |
467 | #define __NR_sendmmsg 503 | 467 | #define __NR_sendmmsg 503 |
468 | #define __NR_process_vm_readv 504 | ||
469 | #define __NR_process_vm_writev 505 | ||
468 | 470 | ||
469 | #ifdef __KERNEL__ | 471 | #ifdef __KERNEL__ |
470 | 472 | ||
471 | #define NR_SYSCALLS 504 | 473 | #define NR_SYSCALLS 506 |
472 | 474 | ||
473 | #define __ARCH_WANT_OLD_READDIR | 475 | #define __ARCH_WANT_OLD_READDIR |
474 | #define __ARCH_WANT_STAT64 | 476 | #define __ARCH_WANT_STAT64 |
diff --git a/arch/alpha/include/asm/word-at-a-time.h b/arch/alpha/include/asm/word-at-a-time.h new file mode 100644 index 000000000000..6b340d0f1521 --- /dev/null +++ b/arch/alpha/include/asm/word-at-a-time.h | |||
@@ -0,0 +1,55 @@ | |||
1 | #ifndef _ASM_WORD_AT_A_TIME_H | ||
2 | #define _ASM_WORD_AT_A_TIME_H | ||
3 | |||
4 | #include <asm/compiler.h> | ||
5 | |||
6 | /* | ||
7 | * word-at-a-time interface for Alpha. | ||
8 | */ | ||
9 | |||
10 | /* | ||
11 | * We do not use the word_at_a_time struct on Alpha, but it needs to be | ||
12 | * implemented to humour the generic code. | ||
13 | */ | ||
14 | struct word_at_a_time { | ||
15 | const unsigned long unused; | ||
16 | }; | ||
17 | |||
18 | #define WORD_AT_A_TIME_CONSTANTS { 0 } | ||
19 | |||
20 | /* Return nonzero if val has a zero */ | ||
21 | static inline unsigned long has_zero(unsigned long val, unsigned long *bits, const struct word_at_a_time *c) | ||
22 | { | ||
23 | unsigned long zero_locations = __kernel_cmpbge(0, val); | ||
24 | *bits = zero_locations; | ||
25 | return zero_locations; | ||
26 | } | ||
27 | |||
28 | static inline unsigned long prep_zero_mask(unsigned long val, unsigned long bits, const struct word_at_a_time *c) | ||
29 | { | ||
30 | return bits; | ||
31 | } | ||
32 | |||
33 | #define create_zero_mask(bits) (bits) | ||
34 | |||
35 | static inline unsigned long find_zero(unsigned long bits) | ||
36 | { | ||
37 | #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67) | ||
38 | /* Simple if have CIX instructions */ | ||
39 | return __kernel_cttz(bits); | ||
40 | #else | ||
41 | unsigned long t1, t2, t3; | ||
42 | /* Retain lowest set bit only */ | ||
43 | bits &= -bits; | ||
44 | /* Binary search for lowest set bit */ | ||
45 | t1 = bits & 0xf0; | ||
46 | t2 = bits & 0xcc; | ||
47 | t3 = bits & 0xaa; | ||
48 | if (t1) t1 = 4; | ||
49 | if (t2) t2 = 2; | ||
50 | if (t3) t3 = 1; | ||
51 | return t1 + t2 + t3; | ||
52 | #endif | ||
53 | } | ||
54 | |||
55 | #endif /* _ASM_WORD_AT_A_TIME_H */ | ||
diff --git a/arch/alpha/kernel/alpha_ksyms.c b/arch/alpha/kernel/alpha_ksyms.c index d96e742d4dc2..15fa821d09cd 100644 --- a/arch/alpha/kernel/alpha_ksyms.c +++ b/arch/alpha/kernel/alpha_ksyms.c | |||
@@ -52,7 +52,6 @@ EXPORT_SYMBOL(alpha_write_fp_reg_s); | |||
52 | 52 | ||
53 | /* entry.S */ | 53 | /* entry.S */ |
54 | EXPORT_SYMBOL(kernel_thread); | 54 | EXPORT_SYMBOL(kernel_thread); |
55 | EXPORT_SYMBOL(kernel_execve); | ||
56 | 55 | ||
57 | /* Networking helper routines. */ | 56 | /* Networking helper routines. */ |
58 | EXPORT_SYMBOL(csum_tcpudp_magic); | 57 | EXPORT_SYMBOL(csum_tcpudp_magic); |
@@ -74,8 +73,6 @@ EXPORT_SYMBOL(alpha_fp_emul); | |||
74 | */ | 73 | */ |
75 | EXPORT_SYMBOL(__copy_user); | 74 | EXPORT_SYMBOL(__copy_user); |
76 | EXPORT_SYMBOL(__do_clear_user); | 75 | EXPORT_SYMBOL(__do_clear_user); |
77 | EXPORT_SYMBOL(__strncpy_from_user); | ||
78 | EXPORT_SYMBOL(__strnlen_user); | ||
79 | 76 | ||
80 | /* | 77 | /* |
81 | * SMP-specific symbols. | 78 | * SMP-specific symbols. |
diff --git a/arch/alpha/kernel/entry.S b/arch/alpha/kernel/entry.S index 6d159cee5f2f..ec0da0567ab5 100644 --- a/arch/alpha/kernel/entry.S +++ b/arch/alpha/kernel/entry.S | |||
@@ -663,58 +663,6 @@ kernel_thread: | |||
663 | br ret_to_kernel | 663 | br ret_to_kernel |
664 | .end kernel_thread | 664 | .end kernel_thread |
665 | 665 | ||
666 | /* | ||
667 | * kernel_execve(path, argv, envp) | ||
668 | */ | ||
669 | .align 4 | ||
670 | .globl kernel_execve | ||
671 | .ent kernel_execve | ||
672 | kernel_execve: | ||
673 | /* We can be called from a module. */ | ||
674 | ldgp $gp, 0($27) | ||
675 | lda $sp, -(32+SIZEOF_PT_REGS+8)($sp) | ||
676 | .frame $sp, 32+SIZEOF_PT_REGS+8, $26, 0 | ||
677 | stq $26, 0($sp) | ||
678 | stq $16, 8($sp) | ||
679 | stq $17, 16($sp) | ||
680 | stq $18, 24($sp) | ||
681 | .prologue 1 | ||
682 | |||
683 | lda $16, 32($sp) | ||
684 | lda $17, 0 | ||
685 | lda $18, SIZEOF_PT_REGS | ||
686 | bsr $26, memset !samegp | ||
687 | |||
688 | /* Avoid the HAE being gratuitously wrong, which would cause us | ||
689 | to do the whole turn off interrupts thing and restore it. */ | ||
690 | ldq $2, alpha_mv+HAE_CACHE | ||
691 | stq $2, 152+32($sp) | ||
692 | |||
693 | ldq $16, 8($sp) | ||
694 | ldq $17, 16($sp) | ||
695 | ldq $18, 24($sp) | ||
696 | lda $19, 32($sp) | ||
697 | bsr $26, do_execve !samegp | ||
698 | |||
699 | ldq $26, 0($sp) | ||
700 | bne $0, 1f /* error! */ | ||
701 | |||
702 | /* Move the temporary pt_regs struct from its current location | ||
703 | to the top of the kernel stack frame. See copy_thread for | ||
704 | details for a normal process. */ | ||
705 | lda $16, 0x4000 - SIZEOF_PT_REGS($8) | ||
706 | lda $17, 32($sp) | ||
707 | lda $18, SIZEOF_PT_REGS | ||
708 | bsr $26, memmove !samegp | ||
709 | |||
710 | /* Take that over as our new stack frame and visit userland! */ | ||
711 | lda $sp, 0x4000 - SIZEOF_PT_REGS($8) | ||
712 | br $31, ret_from_sys_call | ||
713 | |||
714 | 1: lda $sp, 32+SIZEOF_PT_REGS+8($sp) | ||
715 | ret | ||
716 | .end kernel_execve | ||
717 | |||
718 | 666 | ||
719 | /* | 667 | /* |
720 | * Special system calls. Most of these are special in that they either | 668 | * Special system calls. Most of these are special in that they either |
@@ -797,115 +745,6 @@ sys_rt_sigreturn: | |||
797 | .end sys_rt_sigreturn | 745 | .end sys_rt_sigreturn |
798 | 746 | ||
799 | .align 4 | 747 | .align 4 |
800 | .globl sys_sethae | ||
801 | .ent sys_sethae | ||
802 | sys_sethae: | ||
803 | .prologue 0 | ||
804 | stq $16, 152($sp) | ||
805 | ret | ||
806 | .end sys_sethae | ||
807 | |||
808 | .align 4 | ||
809 | .globl osf_getpriority | ||
810 | .ent osf_getpriority | ||
811 | osf_getpriority: | ||
812 | lda $sp, -16($sp) | ||
813 | stq $26, 0($sp) | ||
814 | .prologue 0 | ||
815 | |||
816 | jsr $26, sys_getpriority | ||
817 | |||
818 | ldq $26, 0($sp) | ||
819 | blt $0, 1f | ||
820 | |||
821 | /* Return value is the unbiased priority, i.e. 20 - prio. | ||
822 | This does result in negative return values, so signal | ||
823 | no error by writing into the R0 slot. */ | ||
824 | lda $1, 20 | ||
825 | stq $31, 16($sp) | ||
826 | subl $1, $0, $0 | ||
827 | unop | ||
828 | |||
829 | 1: lda $sp, 16($sp) | ||
830 | ret | ||
831 | .end osf_getpriority | ||
832 | |||
833 | .align 4 | ||
834 | .globl sys_getxuid | ||
835 | .ent sys_getxuid | ||
836 | sys_getxuid: | ||
837 | .prologue 0 | ||
838 | ldq $2, TI_TASK($8) | ||
839 | ldq $3, TASK_CRED($2) | ||
840 | ldl $0, CRED_UID($3) | ||
841 | ldl $1, CRED_EUID($3) | ||
842 | stq $1, 80($sp) | ||
843 | ret | ||
844 | .end sys_getxuid | ||
845 | |||
846 | .align 4 | ||
847 | .globl sys_getxgid | ||
848 | .ent sys_getxgid | ||
849 | sys_getxgid: | ||
850 | .prologue 0 | ||
851 | ldq $2, TI_TASK($8) | ||
852 | ldq $3, TASK_CRED($2) | ||
853 | ldl $0, CRED_GID($3) | ||
854 | ldl $1, CRED_EGID($3) | ||
855 | stq $1, 80($sp) | ||
856 | ret | ||
857 | .end sys_getxgid | ||
858 | |||
859 | .align 4 | ||
860 | .globl sys_getxpid | ||
861 | .ent sys_getxpid | ||
862 | sys_getxpid: | ||
863 | .prologue 0 | ||
864 | ldq $2, TI_TASK($8) | ||
865 | |||
866 | /* See linux/kernel/timer.c sys_getppid for discussion | ||
867 | about this loop. */ | ||
868 | ldq $3, TASK_GROUP_LEADER($2) | ||
869 | ldq $4, TASK_REAL_PARENT($3) | ||
870 | ldl $0, TASK_TGID($2) | ||
871 | 1: ldl $1, TASK_TGID($4) | ||
872 | #ifdef CONFIG_SMP | ||
873 | mov $4, $5 | ||
874 | mb | ||
875 | ldq $3, TASK_GROUP_LEADER($2) | ||
876 | ldq $4, TASK_REAL_PARENT($3) | ||
877 | cmpeq $4, $5, $5 | ||
878 | beq $5, 1b | ||
879 | #endif | ||
880 | stq $1, 80($sp) | ||
881 | ret | ||
882 | .end sys_getxpid | ||
883 | |||
884 | .align 4 | ||
885 | .globl sys_alpha_pipe | ||
886 | .ent sys_alpha_pipe | ||
887 | sys_alpha_pipe: | ||
888 | lda $sp, -16($sp) | ||
889 | stq $26, 0($sp) | ||
890 | .prologue 0 | ||
891 | |||
892 | mov $31, $17 | ||
893 | lda $16, 8($sp) | ||
894 | jsr $26, do_pipe_flags | ||
895 | |||
896 | ldq $26, 0($sp) | ||
897 | bne $0, 1f | ||
898 | |||
899 | /* The return values are in $0 and $20. */ | ||
900 | ldl $1, 12($sp) | ||
901 | ldl $0, 8($sp) | ||
902 | |||
903 | stq $1, 80+16($sp) | ||
904 | 1: lda $sp, 16($sp) | ||
905 | ret | ||
906 | .end sys_alpha_pipe | ||
907 | |||
908 | .align 4 | ||
909 | .globl sys_execve | 748 | .globl sys_execve |
910 | .ent sys_execve | 749 | .ent sys_execve |
911 | sys_execve: | 750 | sys_execve: |
diff --git a/arch/alpha/kernel/osf_sys.c b/arch/alpha/kernel/osf_sys.c index 98a103621af6..bc1acdda7a5e 100644 --- a/arch/alpha/kernel/osf_sys.c +++ b/arch/alpha/kernel/osf_sys.c | |||
@@ -1404,3 +1404,52 @@ SYSCALL_DEFINE3(osf_writev, unsigned long, fd, | |||
1404 | } | 1404 | } |
1405 | 1405 | ||
1406 | #endif | 1406 | #endif |
1407 | |||
1408 | SYSCALL_DEFINE2(osf_getpriority, int, which, int, who) | ||
1409 | { | ||
1410 | int prio = sys_getpriority(which, who); | ||
1411 | if (prio >= 0) { | ||
1412 | /* Return value is the unbiased priority, i.e. 20 - prio. | ||
1413 | This does result in negative return values, so signal | ||
1414 | no error */ | ||
1415 | force_successful_syscall_return(); | ||
1416 | prio = 20 - prio; | ||
1417 | } | ||
1418 | return prio; | ||
1419 | } | ||
1420 | |||
1421 | SYSCALL_DEFINE0(getxuid) | ||
1422 | { | ||
1423 | current_pt_regs()->r20 = sys_geteuid(); | ||
1424 | return sys_getuid(); | ||
1425 | } | ||
1426 | |||
1427 | SYSCALL_DEFINE0(getxgid) | ||
1428 | { | ||
1429 | current_pt_regs()->r20 = sys_getegid(); | ||
1430 | return sys_getgid(); | ||
1431 | } | ||
1432 | |||
1433 | SYSCALL_DEFINE0(getxpid) | ||
1434 | { | ||
1435 | current_pt_regs()->r20 = sys_getppid(); | ||
1436 | return sys_getpid(); | ||
1437 | } | ||
1438 | |||
1439 | SYSCALL_DEFINE0(alpha_pipe) | ||
1440 | { | ||
1441 | int fd[2]; | ||
1442 | int res = do_pipe_flags(fd, 0); | ||
1443 | if (!res) { | ||
1444 | /* The return values are in $0 and $20. */ | ||
1445 | current_pt_regs()->r20 = fd[1]; | ||
1446 | res = fd[0]; | ||
1447 | } | ||
1448 | return res; | ||
1449 | } | ||
1450 | |||
1451 | SYSCALL_DEFINE1(sethae, unsigned long, val) | ||
1452 | { | ||
1453 | current_pt_regs()->hae = val; | ||
1454 | return 0; | ||
1455 | } | ||
diff --git a/arch/alpha/kernel/process.c b/arch/alpha/kernel/process.c index 153d3fce3e8e..d6fde98b74b3 100644 --- a/arch/alpha/kernel/process.c +++ b/arch/alpha/kernel/process.c | |||
@@ -455,3 +455,22 @@ get_wchan(struct task_struct *p) | |||
455 | } | 455 | } |
456 | return pc; | 456 | return pc; |
457 | } | 457 | } |
458 | |||
459 | int kernel_execve(const char *path, const char *const argv[], const char *const envp[]) | ||
460 | { | ||
461 | /* Avoid the HAE being gratuitously wrong, which would cause us | ||
462 | to do the whole turn off interrupts thing and restore it. */ | ||
463 | struct pt_regs regs = {.hae = alpha_mv.hae_cache}; | ||
464 | int err = do_execve(path, argv, envp, ®s); | ||
465 | if (!err) { | ||
466 | struct pt_regs *p = current_pt_regs(); | ||
467 | /* copy regs to normal position and off to userland we go... */ | ||
468 | *p = regs; | ||
469 | __asm__ __volatile__ ( | ||
470 | "mov %0, $sp;" | ||
471 | "br $31, ret_from_sys_call" | ||
472 | : : "r"(p)); | ||
473 | } | ||
474 | return err; | ||
475 | } | ||
476 | EXPORT_SYMBOL(kernel_execve); | ||
diff --git a/arch/alpha/kernel/systbls.S b/arch/alpha/kernel/systbls.S index 87835235f114..2ac6b45c3e00 100644 --- a/arch/alpha/kernel/systbls.S +++ b/arch/alpha/kernel/systbls.S | |||
@@ -111,7 +111,7 @@ sys_call_table: | |||
111 | .quad sys_socket | 111 | .quad sys_socket |
112 | .quad sys_connect | 112 | .quad sys_connect |
113 | .quad sys_accept | 113 | .quad sys_accept |
114 | .quad osf_getpriority /* 100 */ | 114 | .quad sys_osf_getpriority /* 100 */ |
115 | .quad sys_send | 115 | .quad sys_send |
116 | .quad sys_recv | 116 | .quad sys_recv |
117 | .quad sys_sigreturn | 117 | .quad sys_sigreturn |
@@ -522,6 +522,8 @@ sys_call_table: | |||
522 | .quad sys_setns | 522 | .quad sys_setns |
523 | .quad sys_accept4 | 523 | .quad sys_accept4 |
524 | .quad sys_sendmmsg | 524 | .quad sys_sendmmsg |
525 | .quad sys_process_vm_readv | ||
526 | .quad sys_process_vm_writev /* 505 */ | ||
525 | 527 | ||
526 | .size sys_call_table, . - sys_call_table | 528 | .size sys_call_table, . - sys_call_table |
527 | .type sys_call_table, @object | 529 | .type sys_call_table, @object |
diff --git a/arch/alpha/lib/Makefile b/arch/alpha/lib/Makefile index c0a83ab62b78..59660743237c 100644 --- a/arch/alpha/lib/Makefile +++ b/arch/alpha/lib/Makefile | |||
@@ -31,8 +31,6 @@ lib-y = __divqu.o __remqu.o __divlu.o __remlu.o \ | |||
31 | $(ev6-y)memchr.o \ | 31 | $(ev6-y)memchr.o \ |
32 | $(ev6-y)copy_user.o \ | 32 | $(ev6-y)copy_user.o \ |
33 | $(ev6-y)clear_user.o \ | 33 | $(ev6-y)clear_user.o \ |
34 | $(ev6-y)strncpy_from_user.o \ | ||
35 | $(ev67-y)strlen_user.o \ | ||
36 | $(ev6-y)csum_ipv6_magic.o \ | 34 | $(ev6-y)csum_ipv6_magic.o \ |
37 | $(ev6-y)clear_page.o \ | 35 | $(ev6-y)clear_page.o \ |
38 | $(ev6-y)copy_page.o \ | 36 | $(ev6-y)copy_page.o \ |
diff --git a/arch/alpha/lib/ev6-strncpy_from_user.S b/arch/alpha/lib/ev6-strncpy_from_user.S deleted file mode 100644 index d2e28178cacc..000000000000 --- a/arch/alpha/lib/ev6-strncpy_from_user.S +++ /dev/null | |||
@@ -1,424 +0,0 @@ | |||
1 | /* | ||
2 | * arch/alpha/lib/ev6-strncpy_from_user.S | ||
3 | * 21264 version contributed by Rick Gorton <rick.gorton@alpha-processor.com> | ||
4 | * | ||
5 | * Just like strncpy except in the return value: | ||
6 | * | ||
7 | * -EFAULT if an exception occurs before the terminator is copied. | ||
8 | * N if the buffer filled. | ||
9 | * | ||
10 | * Otherwise the length of the string is returned. | ||
11 | * | ||
12 | * Much of the information about 21264 scheduling/coding comes from: | ||
13 | * Compiler Writer's Guide for the Alpha 21264 | ||
14 | * abbreviated as 'CWG' in other comments here | ||
15 | * ftp.digital.com/pub/Digital/info/semiconductor/literature/dsc-library.html | ||
16 | * Scheduling notation: | ||
17 | * E - either cluster | ||
18 | * U - upper subcluster; U0 - subcluster U0; U1 - subcluster U1 | ||
19 | * L - lower subcluster; L0 - subcluster L0; L1 - subcluster L1 | ||
20 | * A bunch of instructions got moved and temp registers were changed | ||
21 | * to aid in scheduling. Control flow was also re-arranged to eliminate | ||
22 | * branches, and to provide longer code sequences to enable better scheduling. | ||
23 | * A total rewrite (using byte load/stores for start & tail sequences) | ||
24 | * is desirable, but very difficult to do without a from-scratch rewrite. | ||
25 | * Save that for the future. | ||
26 | */ | ||
27 | |||
28 | |||
29 | #include <asm/errno.h> | ||
30 | #include <asm/regdef.h> | ||
31 | |||
32 | |||
33 | /* Allow an exception for an insn; exit if we get one. */ | ||
34 | #define EX(x,y...) \ | ||
35 | 99: x,##y; \ | ||
36 | .section __ex_table,"a"; \ | ||
37 | .long 99b - .; \ | ||
38 | lda $31, $exception-99b($0); \ | ||
39 | .previous | ||
40 | |||
41 | |||
42 | .set noat | ||
43 | .set noreorder | ||
44 | .text | ||
45 | |||
46 | .globl __strncpy_from_user | ||
47 | .ent __strncpy_from_user | ||
48 | .frame $30, 0, $26 | ||
49 | .prologue 0 | ||
50 | |||
51 | .align 4 | ||
52 | __strncpy_from_user: | ||
53 | and a0, 7, t3 # E : find dest misalignment | ||
54 | beq a2, $zerolength # U : | ||
55 | |||
56 | /* Are source and destination co-aligned? */ | ||
57 | mov a0, v0 # E : save the string start | ||
58 | xor a0, a1, t4 # E : | ||
59 | EX( ldq_u t1, 0(a1) ) # L : Latency=3 load first quadword | ||
60 | ldq_u t0, 0(a0) # L : load first (partial) aligned dest quadword | ||
61 | |||
62 | addq a2, t3, a2 # E : bias count by dest misalignment | ||
63 | subq a2, 1, a3 # E : | ||
64 | addq zero, 1, t10 # E : | ||
65 | and t4, 7, t4 # E : misalignment between the two | ||
66 | |||
67 | and a3, 7, t6 # E : number of tail bytes | ||
68 | sll t10, t6, t10 # E : t10 = bitmask of last count byte | ||
69 | bne t4, $unaligned # U : | ||
70 | lda t2, -1 # E : build a mask against false zero | ||
71 | |||
72 | /* | ||
73 | * We are co-aligned; take care of a partial first word. | ||
74 | * On entry to this basic block: | ||
75 | * t0 == the first destination word for masking back in | ||
76 | * t1 == the first source word. | ||
77 | */ | ||
78 | |||
79 | srl a3, 3, a2 # E : a2 = loop counter = (count - 1)/8 | ||
80 | addq a1, 8, a1 # E : | ||
81 | mskqh t2, a1, t2 # U : detection in the src word | ||
82 | nop | ||
83 | |||
84 | /* Create the 1st output word and detect 0's in the 1st input word. */ | ||
85 | mskqh t1, a1, t3 # U : | ||
86 | mskql t0, a1, t0 # U : assemble the first output word | ||
87 | ornot t1, t2, t2 # E : | ||
88 | nop | ||
89 | |||
90 | cmpbge zero, t2, t8 # E : bits set iff null found | ||
91 | or t0, t3, t0 # E : | ||
92 | beq a2, $a_eoc # U : | ||
93 | bne t8, $a_eos # U : 2nd branch in a quad. Bad. | ||
94 | |||
95 | /* On entry to this basic block: | ||
96 | * t0 == a source quad not containing a null. | ||
97 | * a0 - current aligned destination address | ||
98 | * a1 - current aligned source address | ||
99 | * a2 - count of quadwords to move. | ||
100 | * NOTE: Loop improvement - unrolling this is going to be | ||
101 | * a huge win, since we're going to stall otherwise. | ||
102 | * Fix this later. For _really_ large copies, look | ||
103 | * at using wh64 on a look-ahead basis. See the code | ||
104 | * in clear_user.S and copy_user.S. | ||
105 | * Presumably, since (a0) and (a1) do not overlap (by C definition) | ||
106 | * Lots of nops here: | ||
107 | * - Separate loads from stores | ||
108 | * - Keep it to 1 branch/quadpack so the branch predictor | ||
109 | * can train. | ||
110 | */ | ||
111 | $a_loop: | ||
112 | stq_u t0, 0(a0) # L : | ||
113 | addq a0, 8, a0 # E : | ||
114 | nop | ||
115 | subq a2, 1, a2 # E : | ||
116 | |||
117 | EX( ldq_u t0, 0(a1) ) # L : | ||
118 | addq a1, 8, a1 # E : | ||
119 | cmpbge zero, t0, t8 # E : Stall 2 cycles on t0 | ||
120 | beq a2, $a_eoc # U : | ||
121 | |||
122 | beq t8, $a_loop # U : | ||
123 | nop | ||
124 | nop | ||
125 | nop | ||
126 | |||
127 | /* Take care of the final (partial) word store. At this point | ||
128 | * the end-of-count bit is set in t8 iff it applies. | ||
129 | * | ||
130 | * On entry to this basic block we have: | ||
131 | * t0 == the source word containing the null | ||
132 | * t8 == the cmpbge mask that found it. | ||
133 | */ | ||
134 | $a_eos: | ||
135 | negq t8, t12 # E : find low bit set | ||
136 | and t8, t12, t12 # E : | ||
137 | |||
138 | /* We're doing a partial word store and so need to combine | ||
139 | our source and original destination words. */ | ||
140 | ldq_u t1, 0(a0) # L : | ||
141 | subq t12, 1, t6 # E : | ||
142 | |||
143 | or t12, t6, t8 # E : | ||
144 | zapnot t0, t8, t0 # U : clear src bytes > null | ||
145 | zap t1, t8, t1 # U : clear dst bytes <= null | ||
146 | or t0, t1, t0 # E : | ||
147 | |||
148 | stq_u t0, 0(a0) # L : | ||
149 | br $finish_up # L0 : | ||
150 | nop | ||
151 | nop | ||
152 | |||
153 | /* Add the end-of-count bit to the eos detection bitmask. */ | ||
154 | .align 4 | ||
155 | $a_eoc: | ||
156 | or t10, t8, t8 | ||
157 | br $a_eos | ||
158 | nop | ||
159 | nop | ||
160 | |||
161 | |||
162 | /* The source and destination are not co-aligned. Align the destination | ||
163 | and cope. We have to be very careful about not reading too much and | ||
164 | causing a SEGV. */ | ||
165 | |||
166 | .align 4 | ||
167 | $u_head: | ||
168 | /* We know just enough now to be able to assemble the first | ||
169 | full source word. We can still find a zero at the end of it | ||
170 | that prevents us from outputting the whole thing. | ||
171 | |||
172 | On entry to this basic block: | ||
173 | t0 == the first dest word, unmasked | ||
174 | t1 == the shifted low bits of the first source word | ||
175 | t6 == bytemask that is -1 in dest word bytes */ | ||
176 | |||
177 | EX( ldq_u t2, 8(a1) ) # L : load second src word | ||
178 | addq a1, 8, a1 # E : | ||
179 | mskql t0, a0, t0 # U : mask trailing garbage in dst | ||
180 | extqh t2, a1, t4 # U : | ||
181 | |||
182 | or t1, t4, t1 # E : first aligned src word complete | ||
183 | mskqh t1, a0, t1 # U : mask leading garbage in src | ||
184 | or t0, t1, t0 # E : first output word complete | ||
185 | or t0, t6, t6 # E : mask original data for zero test | ||
186 | |||
187 | cmpbge zero, t6, t8 # E : | ||
188 | beq a2, $u_eocfin # U : | ||
189 | bne t8, $u_final # U : bad news - 2nd branch in a quad | ||
190 | lda t6, -1 # E : mask out the bits we have | ||
191 | |||
192 | mskql t6, a1, t6 # U : already seen | ||
193 | stq_u t0, 0(a0) # L : store first output word | ||
194 | or t6, t2, t2 # E : | ||
195 | cmpbge zero, t2, t8 # E : find nulls in second partial | ||
196 | |||
197 | addq a0, 8, a0 # E : | ||
198 | subq a2, 1, a2 # E : | ||
199 | bne t8, $u_late_head_exit # U : | ||
200 | nop | ||
201 | |||
202 | /* Finally, we've got all the stupid leading edge cases taken care | ||
203 | of and we can set up to enter the main loop. */ | ||
204 | |||
205 | extql t2, a1, t1 # U : position hi-bits of lo word | ||
206 | EX( ldq_u t2, 8(a1) ) # L : read next high-order source word | ||
207 | addq a1, 8, a1 # E : | ||
208 | cmpbge zero, t2, t8 # E : | ||
209 | |||
210 | beq a2, $u_eoc # U : | ||
211 | bne t8, $u_eos # U : | ||
212 | nop | ||
213 | nop | ||
214 | |||
215 | /* Unaligned copy main loop. In order to avoid reading too much, | ||
216 | the loop is structured to detect zeros in aligned source words. | ||
217 | This has, unfortunately, effectively pulled half of a loop | ||
218 | iteration out into the head and half into the tail, but it does | ||
219 | prevent nastiness from accumulating in the very thing we want | ||
220 | to run as fast as possible. | ||
221 | |||
222 | On entry to this basic block: | ||
223 | t1 == the shifted high-order bits from the previous source word | ||
224 | t2 == the unshifted current source word | ||
225 | |||
226 | We further know that t2 does not contain a null terminator. */ | ||
227 | |||
228 | /* | ||
229 | * Extra nops here: | ||
230 | * separate load quads from store quads | ||
231 | * only one branch/quad to permit predictor training | ||
232 | */ | ||
233 | |||
234 | .align 4 | ||
235 | $u_loop: | ||
236 | extqh t2, a1, t0 # U : extract high bits for current word | ||
237 | addq a1, 8, a1 # E : | ||
238 | extql t2, a1, t3 # U : extract low bits for next time | ||
239 | addq a0, 8, a0 # E : | ||
240 | |||
241 | or t0, t1, t0 # E : current dst word now complete | ||
242 | EX( ldq_u t2, 0(a1) ) # L : load high word for next time | ||
243 | subq a2, 1, a2 # E : | ||
244 | nop | ||
245 | |||
246 | stq_u t0, -8(a0) # L : save the current word | ||
247 | mov t3, t1 # E : | ||
248 | cmpbge zero, t2, t8 # E : test new word for eos | ||
249 | beq a2, $u_eoc # U : | ||
250 | |||
251 | beq t8, $u_loop # U : | ||
252 | nop | ||
253 | nop | ||
254 | nop | ||
255 | |||
256 | /* We've found a zero somewhere in the source word we just read. | ||
257 | If it resides in the lower half, we have one (probably partial) | ||
258 | word to write out, and if it resides in the upper half, we | ||
259 | have one full and one partial word left to write out. | ||
260 | |||
261 | On entry to this basic block: | ||
262 | t1 == the shifted high-order bits from the previous source word | ||
263 | t2 == the unshifted current source word. */ | ||
264 | .align 4 | ||
265 | $u_eos: | ||
266 | extqh t2, a1, t0 # U : | ||
267 | or t0, t1, t0 # E : first (partial) source word complete | ||
268 | cmpbge zero, t0, t8 # E : is the null in this first bit? | ||
269 | nop | ||
270 | |||
271 | bne t8, $u_final # U : | ||
272 | stq_u t0, 0(a0) # L : the null was in the high-order bits | ||
273 | addq a0, 8, a0 # E : | ||
274 | subq a2, 1, a2 # E : | ||
275 | |||
276 | .align 4 | ||
277 | $u_late_head_exit: | ||
278 | extql t2, a1, t0 # U : | ||
279 | cmpbge zero, t0, t8 # E : | ||
280 | or t8, t10, t6 # E : | ||
281 | cmoveq a2, t6, t8 # E : | ||
282 | |||
283 | /* Take care of a final (probably partial) result word. | ||
284 | On entry to this basic block: | ||
285 | t0 == assembled source word | ||
286 | t8 == cmpbge mask that found the null. */ | ||
287 | .align 4 | ||
288 | $u_final: | ||
289 | negq t8, t6 # E : isolate low bit set | ||
290 | and t6, t8, t12 # E : | ||
291 | ldq_u t1, 0(a0) # L : | ||
292 | subq t12, 1, t6 # E : | ||
293 | |||
294 | or t6, t12, t8 # E : | ||
295 | zapnot t0, t8, t0 # U : kill source bytes > null | ||
296 | zap t1, t8, t1 # U : kill dest bytes <= null | ||
297 | or t0, t1, t0 # E : | ||
298 | |||
299 | stq_u t0, 0(a0) # E : | ||
300 | br $finish_up # U : | ||
301 | nop | ||
302 | nop | ||
303 | |||
304 | .align 4 | ||
305 | $u_eoc: # end-of-count | ||
306 | extqh t2, a1, t0 # U : | ||
307 | or t0, t1, t0 # E : | ||
308 | cmpbge zero, t0, t8 # E : | ||
309 | nop | ||
310 | |||
311 | .align 4 | ||
312 | $u_eocfin: # end-of-count, final word | ||
313 | or t10, t8, t8 # E : | ||
314 | br $u_final # U : | ||
315 | nop | ||
316 | nop | ||
317 | |||
318 | /* Unaligned copy entry point. */ | ||
319 | .align 4 | ||
320 | $unaligned: | ||
321 | |||
322 | srl a3, 3, a2 # U : a2 = loop counter = (count - 1)/8 | ||
323 | and a0, 7, t4 # E : find dest misalignment | ||
324 | and a1, 7, t5 # E : find src misalignment | ||
325 | mov zero, t0 # E : | ||
326 | |||
327 | /* Conditionally load the first destination word and a bytemask | ||
328 | with 0xff indicating that the destination byte is sacrosanct. */ | ||
329 | |||
330 | mov zero, t6 # E : | ||
331 | beq t4, 1f # U : | ||
332 | ldq_u t0, 0(a0) # L : | ||
333 | lda t6, -1 # E : | ||
334 | |||
335 | mskql t6, a0, t6 # E : | ||
336 | nop | ||
337 | nop | ||
338 | nop | ||
339 | |||
340 | .align 4 | ||
341 | 1: | ||
342 | subq a1, t4, a1 # E : sub dest misalignment from src addr | ||
343 | /* If source misalignment is larger than dest misalignment, we need | ||
344 | extra startup checks to avoid SEGV. */ | ||
345 | cmplt t4, t5, t12 # E : | ||
346 | extql t1, a1, t1 # U : shift src into place | ||
347 | lda t2, -1 # E : for creating masks later | ||
348 | |||
349 | beq t12, $u_head # U : | ||
350 | mskqh t2, t5, t2 # U : begin src byte validity mask | ||
351 | cmpbge zero, t1, t8 # E : is there a zero? | ||
352 | nop | ||
353 | |||
354 | extql t2, a1, t2 # U : | ||
355 | or t8, t10, t5 # E : test for end-of-count too | ||
356 | cmpbge zero, t2, t3 # E : | ||
357 | cmoveq a2, t5, t8 # E : Latency=2, extra map slot | ||
358 | |||
359 | nop # E : goes with cmov | ||
360 | andnot t8, t3, t8 # E : | ||
361 | beq t8, $u_head # U : | ||
362 | nop | ||
363 | |||
364 | /* At this point we've found a zero in the first partial word of | ||
365 | the source. We need to isolate the valid source data and mask | ||
366 | it into the original destination data. (Incidentally, we know | ||
367 | that we'll need at least one byte of that original dest word.) */ | ||
368 | |||
369 | ldq_u t0, 0(a0) # L : | ||
370 | negq t8, t6 # E : build bitmask of bytes <= zero | ||
371 | mskqh t1, t4, t1 # U : | ||
372 | and t6, t8, t12 # E : | ||
373 | |||
374 | subq t12, 1, t6 # E : | ||
375 | or t6, t12, t8 # E : | ||
376 | zapnot t2, t8, t2 # U : prepare source word; mirror changes | ||
377 | zapnot t1, t8, t1 # U : to source validity mask | ||
378 | |||
379 | andnot t0, t2, t0 # E : zero place for source to reside | ||
380 | or t0, t1, t0 # E : and put it there | ||
381 | stq_u t0, 0(a0) # L : | ||
382 | nop | ||
383 | |||
384 | .align 4 | ||
385 | $finish_up: | ||
386 | zapnot t0, t12, t4 # U : was last byte written null? | ||
387 | and t12, 0xf0, t3 # E : binary search for the address of the | ||
388 | cmovne t4, 1, t4 # E : Latency=2, extra map slot | ||
389 | nop # E : with cmovne | ||
390 | |||
391 | and t12, 0xcc, t2 # E : last byte written | ||
392 | and t12, 0xaa, t1 # E : | ||
393 | cmovne t3, 4, t3 # E : Latency=2, extra map slot | ||
394 | nop # E : with cmovne | ||
395 | |||
396 | bic a0, 7, t0 | ||
397 | cmovne t2, 2, t2 # E : Latency=2, extra map slot | ||
398 | nop # E : with cmovne | ||
399 | nop | ||
400 | |||
401 | cmovne t1, 1, t1 # E : Latency=2, extra map slot | ||
402 | nop # E : with cmovne | ||
403 | addq t0, t3, t0 # E : | ||
404 | addq t1, t2, t1 # E : | ||
405 | |||
406 | addq t0, t1, t0 # E : | ||
407 | addq t0, t4, t0 # add one if we filled the buffer | ||
408 | subq t0, v0, v0 # find string length | ||
409 | ret # L0 : | ||
410 | |||
411 | .align 4 | ||
412 | $zerolength: | ||
413 | nop | ||
414 | nop | ||
415 | nop | ||
416 | clr v0 | ||
417 | |||
418 | $exception: | ||
419 | nop | ||
420 | nop | ||
421 | nop | ||
422 | ret | ||
423 | |||
424 | .end __strncpy_from_user | ||
diff --git a/arch/alpha/lib/ev67-strlen_user.S b/arch/alpha/lib/ev67-strlen_user.S deleted file mode 100644 index 57e0d77b81a6..000000000000 --- a/arch/alpha/lib/ev67-strlen_user.S +++ /dev/null | |||
@@ -1,107 +0,0 @@ | |||
1 | /* | ||
2 | * arch/alpha/lib/ev67-strlen_user.S | ||
3 | * 21264 version contributed by Rick Gorton <rick.gorton@api-networks.com> | ||
4 | * | ||
5 | * Return the length of the string including the NULL terminator | ||
6 | * (strlen+1) or zero if an error occurred. | ||
7 | * | ||
8 | * In places where it is critical to limit the processing time, | ||
9 | * and the data is not trusted, strnlen_user() should be used. | ||
10 | * It will return a value greater than its second argument if | ||
11 | * that limit would be exceeded. This implementation is allowed | ||
12 | * to access memory beyond the limit, but will not cross a page | ||
13 | * boundary when doing so. | ||
14 | * | ||
15 | * Much of the information about 21264 scheduling/coding comes from: | ||
16 | * Compiler Writer's Guide for the Alpha 21264 | ||
17 | * abbreviated as 'CWG' in other comments here | ||
18 | * ftp.digital.com/pub/Digital/info/semiconductor/literature/dsc-library.html | ||
19 | * Scheduling notation: | ||
20 | * E - either cluster | ||
21 | * U - upper subcluster; U0 - subcluster U0; U1 - subcluster U1 | ||
22 | * L - lower subcluster; L0 - subcluster L0; L1 - subcluster L1 | ||
23 | * Try not to change the actual algorithm if possible for consistency. | ||
24 | */ | ||
25 | |||
26 | #include <asm/regdef.h> | ||
27 | |||
28 | |||
29 | /* Allow an exception for an insn; exit if we get one. */ | ||
30 | #define EX(x,y...) \ | ||
31 | 99: x,##y; \ | ||
32 | .section __ex_table,"a"; \ | ||
33 | .long 99b - .; \ | ||
34 | lda v0, $exception-99b(zero); \ | ||
35 | .previous | ||
36 | |||
37 | |||
38 | .set noreorder | ||
39 | .set noat | ||
40 | .text | ||
41 | |||
42 | .globl __strlen_user | ||
43 | .ent __strlen_user | ||
44 | .frame sp, 0, ra | ||
45 | |||
46 | .align 4 | ||
47 | __strlen_user: | ||
48 | ldah a1, 32767(zero) # do not use plain strlen_user() for strings | ||
49 | # that might be almost 2 GB long; you should | ||
50 | # be using strnlen_user() instead | ||
51 | nop | ||
52 | nop | ||
53 | nop | ||
54 | |||
55 | .globl __strnlen_user | ||
56 | |||
57 | .align 4 | ||
58 | __strnlen_user: | ||
59 | .prologue 0 | ||
60 | EX( ldq_u t0, 0(a0) ) # L : load first quadword (a0 may be misaligned) | ||
61 | lda t1, -1(zero) # E : | ||
62 | |||
63 | insqh t1, a0, t1 # U : | ||
64 | andnot a0, 7, v0 # E : | ||
65 | or t1, t0, t0 # E : | ||
66 | subq a0, 1, a0 # E : get our +1 for the return | ||
67 | |||
68 | cmpbge zero, t0, t1 # E : t1 <- bitmask: bit i == 1 <==> i-th byte == 0 | ||
69 | subq a1, 7, t2 # E : | ||
70 | subq a0, v0, t0 # E : | ||
71 | bne t1, $found # U : | ||
72 | |||
73 | addq t2, t0, t2 # E : | ||
74 | addq a1, 1, a1 # E : | ||
75 | nop # E : | ||
76 | nop # E : | ||
77 | |||
78 | .align 4 | ||
79 | $loop: ble t2, $limit # U : | ||
80 | EX( ldq t0, 8(v0) ) # L : | ||
81 | nop # E : | ||
82 | nop # E : | ||
83 | |||
84 | cmpbge zero, t0, t1 # E : | ||
85 | subq t2, 8, t2 # E : | ||
86 | addq v0, 8, v0 # E : addr += 8 | ||
87 | beq t1, $loop # U : | ||
88 | |||
89 | $found: cttz t1, t2 # U0 : | ||
90 | addq v0, t2, v0 # E : | ||
91 | subq v0, a0, v0 # E : | ||
92 | ret # L0 : | ||
93 | |||
94 | $exception: | ||
95 | nop | ||
96 | nop | ||
97 | nop | ||
98 | ret | ||
99 | |||
100 | .align 4 # currently redundant | ||
101 | $limit: | ||
102 | nop | ||
103 | nop | ||
104 | subq a1, t2, v0 | ||
105 | ret | ||
106 | |||
107 | .end __strlen_user | ||
diff --git a/arch/alpha/lib/strlen_user.S b/arch/alpha/lib/strlen_user.S deleted file mode 100644 index 508a18e96479..000000000000 --- a/arch/alpha/lib/strlen_user.S +++ /dev/null | |||
@@ -1,91 +0,0 @@ | |||
1 | /* | ||
2 | * arch/alpha/lib/strlen_user.S | ||
3 | * | ||
4 | * Return the length of the string including the NUL terminator | ||
5 | * (strlen+1) or zero if an error occurred. | ||
6 | * | ||
7 | * In places where it is critical to limit the processing time, | ||
8 | * and the data is not trusted, strnlen_user() should be used. | ||
9 | * It will return a value greater than its second argument if | ||
10 | * that limit would be exceeded. This implementation is allowed | ||
11 | * to access memory beyond the limit, but will not cross a page | ||
12 | * boundary when doing so. | ||
13 | */ | ||
14 | |||
15 | #include <asm/regdef.h> | ||
16 | |||
17 | |||
18 | /* Allow an exception for an insn; exit if we get one. */ | ||
19 | #define EX(x,y...) \ | ||
20 | 99: x,##y; \ | ||
21 | .section __ex_table,"a"; \ | ||
22 | .long 99b - .; \ | ||
23 | lda v0, $exception-99b(zero); \ | ||
24 | .previous | ||
25 | |||
26 | |||
27 | .set noreorder | ||
28 | .set noat | ||
29 | .text | ||
30 | |||
31 | .globl __strlen_user | ||
32 | .ent __strlen_user | ||
33 | .frame sp, 0, ra | ||
34 | |||
35 | .align 3 | ||
36 | __strlen_user: | ||
37 | ldah a1, 32767(zero) # do not use plain strlen_user() for strings | ||
38 | # that might be almost 2 GB long; you should | ||
39 | # be using strnlen_user() instead | ||
40 | |||
41 | .globl __strnlen_user | ||
42 | |||
43 | .align 3 | ||
44 | __strnlen_user: | ||
45 | .prologue 0 | ||
46 | |||
47 | EX( ldq_u t0, 0(a0) ) # load first quadword (a0 may be misaligned) | ||
48 | lda t1, -1(zero) | ||
49 | insqh t1, a0, t1 | ||
50 | andnot a0, 7, v0 | ||
51 | or t1, t0, t0 | ||
52 | subq a0, 1, a0 # get our +1 for the return | ||
53 | cmpbge zero, t0, t1 # t1 <- bitmask: bit i == 1 <==> i-th byte == 0 | ||
54 | subq a1, 7, t2 | ||
55 | subq a0, v0, t0 | ||
56 | bne t1, $found | ||
57 | |||
58 | addq t2, t0, t2 | ||
59 | addq a1, 1, a1 | ||
60 | |||
61 | .align 3 | ||
62 | $loop: ble t2, $limit | ||
63 | EX( ldq t0, 8(v0) ) | ||
64 | subq t2, 8, t2 | ||
65 | addq v0, 8, v0 # addr += 8 | ||
66 | cmpbge zero, t0, t1 | ||
67 | beq t1, $loop | ||
68 | |||
69 | $found: negq t1, t2 # clear all but least set bit | ||
70 | and t1, t2, t1 | ||
71 | |||
72 | and t1, 0xf0, t2 # binary search for that set bit | ||
73 | and t1, 0xcc, t3 | ||
74 | and t1, 0xaa, t4 | ||
75 | cmovne t2, 4, t2 | ||
76 | cmovne t3, 2, t3 | ||
77 | cmovne t4, 1, t4 | ||
78 | addq t2, t3, t2 | ||
79 | addq v0, t4, v0 | ||
80 | addq v0, t2, v0 | ||
81 | nop # dual issue next two on ev4 and ev5 | ||
82 | subq v0, a0, v0 | ||
83 | $exception: | ||
84 | ret | ||
85 | |||
86 | .align 3 # currently redundant | ||
87 | $limit: | ||
88 | subq a1, t2, v0 | ||
89 | ret | ||
90 | |||
91 | .end __strlen_user | ||
diff --git a/arch/alpha/lib/strncpy_from_user.S b/arch/alpha/lib/strncpy_from_user.S deleted file mode 100644 index 73ee21160ff7..000000000000 --- a/arch/alpha/lib/strncpy_from_user.S +++ /dev/null | |||
@@ -1,339 +0,0 @@ | |||
1 | /* | ||
2 | * arch/alpha/lib/strncpy_from_user.S | ||
3 | * Contributed by Richard Henderson (rth@tamu.edu) | ||
4 | * | ||
5 | * Just like strncpy except in the return value: | ||
6 | * | ||
7 | * -EFAULT if an exception occurs before the terminator is copied. | ||
8 | * N if the buffer filled. | ||
9 | * | ||
10 | * Otherwise the length of the string is returned. | ||
11 | */ | ||
12 | |||
13 | |||
14 | #include <asm/errno.h> | ||
15 | #include <asm/regdef.h> | ||
16 | |||
17 | |||
18 | /* Allow an exception for an insn; exit if we get one. */ | ||
19 | #define EX(x,y...) \ | ||
20 | 99: x,##y; \ | ||
21 | .section __ex_table,"a"; \ | ||
22 | .long 99b - .; \ | ||
23 | lda $31, $exception-99b($0); \ | ||
24 | .previous | ||
25 | |||
26 | |||
27 | .set noat | ||
28 | .set noreorder | ||
29 | .text | ||
30 | |||
31 | .globl __strncpy_from_user | ||
32 | .ent __strncpy_from_user | ||
33 | .frame $30, 0, $26 | ||
34 | .prologue 0 | ||
35 | |||
36 | .align 3 | ||
37 | $aligned: | ||
38 | /* On entry to this basic block: | ||
39 | t0 == the first destination word for masking back in | ||
40 | t1 == the first source word. */ | ||
41 | |||
42 | /* Create the 1st output word and detect 0's in the 1st input word. */ | ||
43 | lda t2, -1 # e1 : build a mask against false zero | ||
44 | mskqh t2, a1, t2 # e0 : detection in the src word | ||
45 | mskqh t1, a1, t3 # e0 : | ||
46 | ornot t1, t2, t2 # .. e1 : | ||
47 | mskql t0, a1, t0 # e0 : assemble the first output word | ||
48 | cmpbge zero, t2, t8 # .. e1 : bits set iff null found | ||
49 | or t0, t3, t0 # e0 : | ||
50 | beq a2, $a_eoc # .. e1 : | ||
51 | bne t8, $a_eos # .. e1 : | ||
52 | |||
53 | /* On entry to this basic block: | ||
54 | t0 == a source word not containing a null. */ | ||
55 | |||
56 | $a_loop: | ||
57 | stq_u t0, 0(a0) # e0 : | ||
58 | addq a0, 8, a0 # .. e1 : | ||
59 | EX( ldq_u t0, 0(a1) ) # e0 : | ||
60 | addq a1, 8, a1 # .. e1 : | ||
61 | subq a2, 1, a2 # e0 : | ||
62 | cmpbge zero, t0, t8 # .. e1 (stall) | ||
63 | beq a2, $a_eoc # e1 : | ||
64 | beq t8, $a_loop # e1 : | ||
65 | |||
66 | /* Take care of the final (partial) word store. At this point | ||
67 | the end-of-count bit is set in t8 iff it applies. | ||
68 | |||
69 | On entry to this basic block we have: | ||
70 | t0 == the source word containing the null | ||
71 | t8 == the cmpbge mask that found it. */ | ||
72 | |||
73 | $a_eos: | ||
74 | negq t8, t12 # e0 : find low bit set | ||
75 | and t8, t12, t12 # e1 (stall) | ||
76 | |||
77 | /* For the sake of the cache, don't read a destination word | ||
78 | if we're not going to need it. */ | ||
79 | and t12, 0x80, t6 # e0 : | ||
80 | bne t6, 1f # .. e1 (zdb) | ||
81 | |||
82 | /* We're doing a partial word store and so need to combine | ||
83 | our source and original destination words. */ | ||
84 | ldq_u t1, 0(a0) # e0 : | ||
85 | subq t12, 1, t6 # .. e1 : | ||
86 | or t12, t6, t8 # e0 : | ||
87 | unop # | ||
88 | zapnot t0, t8, t0 # e0 : clear src bytes > null | ||
89 | zap t1, t8, t1 # .. e1 : clear dst bytes <= null | ||
90 | or t0, t1, t0 # e1 : | ||
91 | |||
92 | 1: stq_u t0, 0(a0) | ||
93 | br $finish_up | ||
94 | |||
95 | /* Add the end-of-count bit to the eos detection bitmask. */ | ||
96 | $a_eoc: | ||
97 | or t10, t8, t8 | ||
98 | br $a_eos | ||
99 | |||
100 | /*** The Function Entry Point ***/ | ||
101 | .align 3 | ||
102 | __strncpy_from_user: | ||
103 | mov a0, v0 # save the string start | ||
104 | beq a2, $zerolength | ||
105 | |||
106 | /* Are source and destination co-aligned? */ | ||
107 | xor a0, a1, t1 # e0 : | ||
108 | and a0, 7, t0 # .. e1 : find dest misalignment | ||
109 | and t1, 7, t1 # e0 : | ||
110 | addq a2, t0, a2 # .. e1 : bias count by dest misalignment | ||
111 | subq a2, 1, a2 # e0 : | ||
112 | and a2, 7, t2 # e1 : | ||
113 | srl a2, 3, a2 # e0 : a2 = loop counter = (count - 1)/8 | ||
114 | addq zero, 1, t10 # .. e1 : | ||
115 | sll t10, t2, t10 # e0 : t10 = bitmask of last count byte | ||
116 | bne t1, $unaligned # .. e1 : | ||
117 | |||
118 | /* We are co-aligned; take care of a partial first word. */ | ||
119 | |||
120 | EX( ldq_u t1, 0(a1) ) # e0 : load first src word | ||
121 | addq a1, 8, a1 # .. e1 : | ||
122 | |||
123 | beq t0, $aligned # avoid loading dest word if not needed | ||
124 | ldq_u t0, 0(a0) # e0 : | ||
125 | br $aligned # .. e1 : | ||
126 | |||
127 | |||
128 | /* The source and destination are not co-aligned. Align the destination | ||
129 | and cope. We have to be very careful about not reading too much and | ||
130 | causing a SEGV. */ | ||
131 | |||
132 | .align 3 | ||
133 | $u_head: | ||
134 | /* We know just enough now to be able to assemble the first | ||
135 | full source word. We can still find a zero at the end of it | ||
136 | that prevents us from outputting the whole thing. | ||
137 | |||
138 | On entry to this basic block: | ||
139 | t0 == the first dest word, unmasked | ||
140 | t1 == the shifted low bits of the first source word | ||
141 | t6 == bytemask that is -1 in dest word bytes */ | ||
142 | |||
143 | EX( ldq_u t2, 8(a1) ) # e0 : load second src word | ||
144 | addq a1, 8, a1 # .. e1 : | ||
145 | mskql t0, a0, t0 # e0 : mask trailing garbage in dst | ||
146 | extqh t2, a1, t4 # e0 : | ||
147 | or t1, t4, t1 # e1 : first aligned src word complete | ||
148 | mskqh t1, a0, t1 # e0 : mask leading garbage in src | ||
149 | or t0, t1, t0 # e0 : first output word complete | ||
150 | or t0, t6, t6 # e1 : mask original data for zero test | ||
151 | cmpbge zero, t6, t8 # e0 : | ||
152 | beq a2, $u_eocfin # .. e1 : | ||
153 | bne t8, $u_final # e1 : | ||
154 | |||
155 | lda t6, -1 # e1 : mask out the bits we have | ||
156 | mskql t6, a1, t6 # e0 : already seen | ||
157 | stq_u t0, 0(a0) # e0 : store first output word | ||
158 | or t6, t2, t2 # .. e1 : | ||
159 | cmpbge zero, t2, t8 # e0 : find nulls in second partial | ||
160 | addq a0, 8, a0 # .. e1 : | ||
161 | subq a2, 1, a2 # e0 : | ||
162 | bne t8, $u_late_head_exit # .. e1 : | ||
163 | |||
164 | /* Finally, we've got all the stupid leading edge cases taken care | ||
165 | of and we can set up to enter the main loop. */ | ||
166 | |||
167 | extql t2, a1, t1 # e0 : position hi-bits of lo word | ||
168 | EX( ldq_u t2, 8(a1) ) # .. e1 : read next high-order source word | ||
169 | addq a1, 8, a1 # e0 : | ||
170 | cmpbge zero, t2, t8 # e1 (stall) | ||
171 | beq a2, $u_eoc # e1 : | ||
172 | bne t8, $u_eos # e1 : | ||
173 | |||
174 | /* Unaligned copy main loop. In order to avoid reading too much, | ||
175 | the loop is structured to detect zeros in aligned source words. | ||
176 | This has, unfortunately, effectively pulled half of a loop | ||
177 | iteration out into the head and half into the tail, but it does | ||
178 | prevent nastiness from accumulating in the very thing we want | ||
179 | to run as fast as possible. | ||
180 | |||
181 | On entry to this basic block: | ||
182 | t1 == the shifted high-order bits from the previous source word | ||
183 | t2 == the unshifted current source word | ||
184 | |||
185 | We further know that t2 does not contain a null terminator. */ | ||
186 | |||
187 | .align 3 | ||
188 | $u_loop: | ||
189 | extqh t2, a1, t0 # e0 : extract high bits for current word | ||
190 | addq a1, 8, a1 # .. e1 : | ||
191 | extql t2, a1, t3 # e0 : extract low bits for next time | ||
192 | addq a0, 8, a0 # .. e1 : | ||
193 | or t0, t1, t0 # e0 : current dst word now complete | ||
194 | EX( ldq_u t2, 0(a1) ) # .. e1 : load high word for next time | ||
195 | stq_u t0, -8(a0) # e0 : save the current word | ||
196 | mov t3, t1 # .. e1 : | ||
197 | subq a2, 1, a2 # e0 : | ||
198 | cmpbge zero, t2, t8 # .. e1 : test new word for eos | ||
199 | beq a2, $u_eoc # e1 : | ||
200 | beq t8, $u_loop # e1 : | ||
201 | |||
202 | /* We've found a zero somewhere in the source word we just read. | ||
203 | If it resides in the lower half, we have one (probably partial) | ||
204 | word to write out, and if it resides in the upper half, we | ||
205 | have one full and one partial word left to write out. | ||
206 | |||
207 | On entry to this basic block: | ||
208 | t1 == the shifted high-order bits from the previous source word | ||
209 | t2 == the unshifted current source word. */ | ||
210 | $u_eos: | ||
211 | extqh t2, a1, t0 # e0 : | ||
212 | or t0, t1, t0 # e1 : first (partial) source word complete | ||
213 | |||
214 | cmpbge zero, t0, t8 # e0 : is the null in this first bit? | ||
215 | bne t8, $u_final # .. e1 (zdb) | ||
216 | |||
217 | stq_u t0, 0(a0) # e0 : the null was in the high-order bits | ||
218 | addq a0, 8, a0 # .. e1 : | ||
219 | subq a2, 1, a2 # e1 : | ||
220 | |||
221 | $u_late_head_exit: | ||
222 | extql t2, a1, t0 # .. e0 : | ||
223 | cmpbge zero, t0, t8 # e0 : | ||
224 | or t8, t10, t6 # e1 : | ||
225 | cmoveq a2, t6, t8 # e0 : | ||
226 | nop # .. e1 : | ||
227 | |||
228 | /* Take care of a final (probably partial) result word. | ||
229 | On entry to this basic block: | ||
230 | t0 == assembled source word | ||
231 | t8 == cmpbge mask that found the null. */ | ||
232 | $u_final: | ||
233 | negq t8, t6 # e0 : isolate low bit set | ||
234 | and t6, t8, t12 # e1 : | ||
235 | |||
236 | and t12, 0x80, t6 # e0 : avoid dest word load if we can | ||
237 | bne t6, 1f # .. e1 (zdb) | ||
238 | |||
239 | ldq_u t1, 0(a0) # e0 : | ||
240 | subq t12, 1, t6 # .. e1 : | ||
241 | or t6, t12, t8 # e0 : | ||
242 | zapnot t0, t8, t0 # .. e1 : kill source bytes > null | ||
243 | zap t1, t8, t1 # e0 : kill dest bytes <= null | ||
244 | or t0, t1, t0 # e1 : | ||
245 | |||
246 | 1: stq_u t0, 0(a0) # e0 : | ||
247 | br $finish_up | ||
248 | |||
249 | $u_eoc: # end-of-count | ||
250 | extqh t2, a1, t0 | ||
251 | or t0, t1, t0 | ||
252 | cmpbge zero, t0, t8 | ||
253 | |||
254 | $u_eocfin: # end-of-count, final word | ||
255 | or t10, t8, t8 | ||
256 | br $u_final | ||
257 | |||
258 | /* Unaligned copy entry point. */ | ||
259 | .align 3 | ||
260 | $unaligned: | ||
261 | |||
262 | EX( ldq_u t1, 0(a1) ) # e0 : load first source word | ||
263 | |||
264 | and a0, 7, t4 # .. e1 : find dest misalignment | ||
265 | and a1, 7, t5 # e0 : find src misalignment | ||
266 | |||
267 | /* Conditionally load the first destination word and a bytemask | ||
268 | with 0xff indicating that the destination byte is sacrosanct. */ | ||
269 | |||
270 | mov zero, t0 # .. e1 : | ||
271 | mov zero, t6 # e0 : | ||
272 | beq t4, 1f # .. e1 : | ||
273 | ldq_u t0, 0(a0) # e0 : | ||
274 | lda t6, -1 # .. e1 : | ||
275 | mskql t6, a0, t6 # e0 : | ||
276 | 1: | ||
277 | subq a1, t4, a1 # .. e1 : sub dest misalignment from src addr | ||
278 | |||
279 | /* If source misalignment is larger than dest misalignment, we need | ||
280 | extra startup checks to avoid SEGV. */ | ||
281 | |||
282 | cmplt t4, t5, t12 # e1 : | ||
283 | extql t1, a1, t1 # .. e0 : shift src into place | ||
284 | lda t2, -1 # e0 : for creating masks later | ||
285 | beq t12, $u_head # e1 : | ||
286 | |||
287 | mskqh t2, t5, t2 # e0 : begin src byte validity mask | ||
288 | cmpbge zero, t1, t8 # .. e1 : is there a zero? | ||
289 | extql t2, a1, t2 # e0 : | ||
290 | or t8, t10, t5 # .. e1 : test for end-of-count too | ||
291 | cmpbge zero, t2, t3 # e0 : | ||
292 | cmoveq a2, t5, t8 # .. e1 : | ||
293 | andnot t8, t3, t8 # e0 : | ||
294 | beq t8, $u_head # .. e1 (zdb) | ||
295 | |||
296 | /* At this point we've found a zero in the first partial word of | ||
297 | the source. We need to isolate the valid source data and mask | ||
298 | it into the original destination data. (Incidentally, we know | ||
299 | that we'll need at least one byte of that original dest word.) */ | ||
300 | |||
301 | ldq_u t0, 0(a0) # e0 : | ||
302 | negq t8, t6 # .. e1 : build bitmask of bytes <= zero | ||
303 | mskqh t1, t4, t1 # e0 : | ||
304 | and t6, t8, t12 # .. e1 : | ||
305 | subq t12, 1, t6 # e0 : | ||
306 | or t6, t12, t8 # e1 : | ||
307 | |||
308 | zapnot t2, t8, t2 # e0 : prepare source word; mirror changes | ||
309 | zapnot t1, t8, t1 # .. e1 : to source validity mask | ||
310 | |||
311 | andnot t0, t2, t0 # e0 : zero place for source to reside | ||
312 | or t0, t1, t0 # e1 : and put it there | ||
313 | stq_u t0, 0(a0) # e0 : | ||
314 | |||
315 | $finish_up: | ||
316 | zapnot t0, t12, t4 # was last byte written null? | ||
317 | cmovne t4, 1, t4 | ||
318 | |||
319 | and t12, 0xf0, t3 # binary search for the address of the | ||
320 | and t12, 0xcc, t2 # last byte written | ||
321 | and t12, 0xaa, t1 | ||
322 | bic a0, 7, t0 | ||
323 | cmovne t3, 4, t3 | ||
324 | cmovne t2, 2, t2 | ||
325 | cmovne t1, 1, t1 | ||
326 | addq t0, t3, t0 | ||
327 | addq t1, t2, t1 | ||
328 | addq t0, t1, t0 | ||
329 | addq t0, t4, t0 # add one if we filled the buffer | ||
330 | |||
331 | subq t0, v0, v0 # find string length | ||
332 | ret | ||
333 | |||
334 | $zerolength: | ||
335 | clr v0 | ||
336 | $exception: | ||
337 | ret | ||
338 | |||
339 | .end __strncpy_from_user | ||
diff --git a/arch/alpha/mm/fault.c b/arch/alpha/mm/fault.c index 5eecab1a84ef..0c4132dd3507 100644 --- a/arch/alpha/mm/fault.c +++ b/arch/alpha/mm/fault.c | |||
@@ -89,6 +89,8 @@ do_page_fault(unsigned long address, unsigned long mmcsr, | |||
89 | const struct exception_table_entry *fixup; | 89 | const struct exception_table_entry *fixup; |
90 | int fault, si_code = SEGV_MAPERR; | 90 | int fault, si_code = SEGV_MAPERR; |
91 | siginfo_t info; | 91 | siginfo_t info; |
92 | unsigned int flags = (FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE | | ||
93 | (cause > 0 ? FAULT_FLAG_WRITE : 0)); | ||
92 | 94 | ||
93 | /* As of EV6, a load into $31/$f31 is a prefetch, and never faults | 95 | /* As of EV6, a load into $31/$f31 is a prefetch, and never faults |
94 | (or is suppressed by the PALcode). Support that for older CPUs | 96 | (or is suppressed by the PALcode). Support that for older CPUs |
@@ -114,6 +116,7 @@ do_page_fault(unsigned long address, unsigned long mmcsr, | |||
114 | goto vmalloc_fault; | 116 | goto vmalloc_fault; |
115 | #endif | 117 | #endif |
116 | 118 | ||
119 | retry: | ||
117 | down_read(&mm->mmap_sem); | 120 | down_read(&mm->mmap_sem); |
118 | vma = find_vma(mm, address); | 121 | vma = find_vma(mm, address); |
119 | if (!vma) | 122 | if (!vma) |
@@ -144,8 +147,11 @@ do_page_fault(unsigned long address, unsigned long mmcsr, | |||
144 | /* If for any reason at all we couldn't handle the fault, | 147 | /* If for any reason at all we couldn't handle the fault, |
145 | make sure we exit gracefully rather than endlessly redo | 148 | make sure we exit gracefully rather than endlessly redo |
146 | the fault. */ | 149 | the fault. */ |
147 | fault = handle_mm_fault(mm, vma, address, cause > 0 ? FAULT_FLAG_WRITE : 0); | 150 | fault = handle_mm_fault(mm, vma, address, flags); |
148 | up_read(&mm->mmap_sem); | 151 | |
152 | if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current)) | ||
153 | return; | ||
154 | |||
149 | if (unlikely(fault & VM_FAULT_ERROR)) { | 155 | if (unlikely(fault & VM_FAULT_ERROR)) { |
150 | if (fault & VM_FAULT_OOM) | 156 | if (fault & VM_FAULT_OOM) |
151 | goto out_of_memory; | 157 | goto out_of_memory; |
@@ -153,10 +159,26 @@ do_page_fault(unsigned long address, unsigned long mmcsr, | |||
153 | goto do_sigbus; | 159 | goto do_sigbus; |
154 | BUG(); | 160 | BUG(); |
155 | } | 161 | } |
156 | if (fault & VM_FAULT_MAJOR) | 162 | |
157 | current->maj_flt++; | 163 | if (flags & FAULT_FLAG_ALLOW_RETRY) { |
158 | else | 164 | if (fault & VM_FAULT_MAJOR) |
159 | current->min_flt++; | 165 | current->maj_flt++; |
166 | else | ||
167 | current->min_flt++; | ||
168 | if (fault & VM_FAULT_RETRY) { | ||
169 | flags &= ~FAULT_FLAG_ALLOW_RETRY; | ||
170 | |||
171 | /* No need to up_read(&mm->mmap_sem) as we would | ||
172 | * have already released it in __lock_page_or_retry | ||
173 | * in mm/filemap.c. | ||
174 | */ | ||
175 | |||
176 | goto retry; | ||
177 | } | ||
178 | } | ||
179 | |||
180 | up_read(&mm->mmap_sem); | ||
181 | |||
160 | return; | 182 | return; |
161 | 183 | ||
162 | /* Something tried to access memory that isn't in our memory map. | 184 | /* Something tried to access memory that isn't in our memory map. |
@@ -186,12 +208,14 @@ do_page_fault(unsigned long address, unsigned long mmcsr, | |||
186 | /* We ran out of memory, or some other thing happened to us that | 208 | /* We ran out of memory, or some other thing happened to us that |
187 | made us unable to handle the page fault gracefully. */ | 209 | made us unable to handle the page fault gracefully. */ |
188 | out_of_memory: | 210 | out_of_memory: |
211 | up_read(&mm->mmap_sem); | ||
189 | if (!user_mode(regs)) | 212 | if (!user_mode(regs)) |
190 | goto no_context; | 213 | goto no_context; |
191 | pagefault_out_of_memory(); | 214 | pagefault_out_of_memory(); |
192 | return; | 215 | return; |
193 | 216 | ||
194 | do_sigbus: | 217 | do_sigbus: |
218 | up_read(&mm->mmap_sem); | ||
195 | /* Send a sigbus, regardless of whether we were in kernel | 219 | /* Send a sigbus, regardless of whether we were in kernel |
196 | or user mode. */ | 220 | or user mode. */ |
197 | info.si_signo = SIGBUS; | 221 | info.si_signo = SIGBUS; |
diff --git a/arch/alpha/oprofile/common.c b/arch/alpha/oprofile/common.c index a0a5d27aa215..b8ce18f485d3 100644 --- a/arch/alpha/oprofile/common.c +++ b/arch/alpha/oprofile/common.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <linux/smp.h> | 12 | #include <linux/smp.h> |
13 | #include <linux/errno.h> | 13 | #include <linux/errno.h> |
14 | #include <asm/ptrace.h> | 14 | #include <asm/ptrace.h> |
15 | #include <asm/special_insns.h> | ||
15 | 16 | ||
16 | #include "op_impl.h" | 17 | #include "op_impl.h" |
17 | 18 | ||
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index ac353cf0180b..aad7400e0913 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
@@ -38,7 +38,6 @@ config ARM | |||
38 | select HARDIRQS_SW_RESEND | 38 | select HARDIRQS_SW_RESEND |
39 | select GENERIC_IRQ_PROBE | 39 | select GENERIC_IRQ_PROBE |
40 | select GENERIC_IRQ_SHOW | 40 | select GENERIC_IRQ_SHOW |
41 | select GENERIC_IRQ_PROBE | ||
42 | select ARCH_WANT_IPC_PARSE_VERSION | 41 | select ARCH_WANT_IPC_PARSE_VERSION |
43 | select HARDIRQS_SW_RESEND | 42 | select HARDIRQS_SW_RESEND |
44 | select CPU_PM if (SUSPEND || CPU_IDLE) | 43 | select CPU_PM if (SUSPEND || CPU_IDLE) |
@@ -126,11 +125,6 @@ config TRACE_IRQFLAGS_SUPPORT | |||
126 | bool | 125 | bool |
127 | default y | 126 | default y |
128 | 127 | ||
129 | config GENERIC_LOCKBREAK | ||
130 | bool | ||
131 | default y | ||
132 | depends on SMP && PREEMPT | ||
133 | |||
134 | config RWSEM_GENERIC_SPINLOCK | 128 | config RWSEM_GENERIC_SPINLOCK |
135 | bool | 129 | bool |
136 | default y | 130 | default y |
@@ -692,6 +686,7 @@ config ARCH_TEGRA | |||
692 | select NEED_MACH_IO_H if PCI | 686 | select NEED_MACH_IO_H if PCI |
693 | select ARCH_HAS_CPUFREQ | 687 | select ARCH_HAS_CPUFREQ |
694 | select USE_OF | 688 | select USE_OF |
689 | select COMMON_CLK | ||
695 | help | 690 | help |
696 | This enables support for NVIDIA Tegra based systems (Tegra APX, | 691 | This enables support for NVIDIA Tegra based systems (Tegra APX, |
697 | Tegra 6xx and Tegra 2 series). | 692 | Tegra 6xx and Tegra 2 series). |
@@ -2097,6 +2092,7 @@ source "drivers/cpufreq/Kconfig" | |||
2097 | config CPU_FREQ_IMX | 2092 | config CPU_FREQ_IMX |
2098 | tristate "CPUfreq driver for i.MX CPUs" | 2093 | tristate "CPUfreq driver for i.MX CPUs" |
2099 | depends on ARCH_MXC && CPU_FREQ | 2094 | depends on ARCH_MXC && CPU_FREQ |
2095 | select CPU_FREQ_TABLE | ||
2100 | help | 2096 | help |
2101 | This enables the CPUfreq driver for i.MX CPUs. | 2097 | This enables the CPUfreq driver for i.MX CPUs. |
2102 | 2098 | ||
diff --git a/arch/arm/boot/dts/am33xx.dtsi b/arch/arm/boot/dts/am33xx.dtsi index 59509c48d7e5..bd0cff3f808c 100644 --- a/arch/arm/boot/dts/am33xx.dtsi +++ b/arch/arm/boot/dts/am33xx.dtsi | |||
@@ -154,5 +154,10 @@ | |||
154 | #size-cells = <0>; | 154 | #size-cells = <0>; |
155 | ti,hwmods = "i2c3"; | 155 | ti,hwmods = "i2c3"; |
156 | }; | 156 | }; |
157 | |||
158 | wdt2: wdt@44e35000 { | ||
159 | compatible = "ti,omap3-wdt"; | ||
160 | ti,hwmods = "wd_timer2"; | ||
161 | }; | ||
157 | }; | 162 | }; |
158 | }; | 163 | }; |
diff --git a/arch/arm/boot/dts/imx23.dtsi b/arch/arm/boot/dts/imx23.dtsi index a874dbfb5ae6..e6138310e5ce 100644 --- a/arch/arm/boot/dts/imx23.dtsi +++ b/arch/arm/boot/dts/imx23.dtsi | |||
@@ -51,11 +51,11 @@ | |||
51 | 51 | ||
52 | dma-apbh@80004000 { | 52 | dma-apbh@80004000 { |
53 | compatible = "fsl,imx23-dma-apbh"; | 53 | compatible = "fsl,imx23-dma-apbh"; |
54 | reg = <0x80004000 2000>; | 54 | reg = <0x80004000 0x2000>; |
55 | }; | 55 | }; |
56 | 56 | ||
57 | ecc@80008000 { | 57 | ecc@80008000 { |
58 | reg = <0x80008000 2000>; | 58 | reg = <0x80008000 0x2000>; |
59 | status = "disabled"; | 59 | status = "disabled"; |
60 | }; | 60 | }; |
61 | 61 | ||
@@ -63,7 +63,7 @@ | |||
63 | compatible = "fsl,imx23-gpmi-nand"; | 63 | compatible = "fsl,imx23-gpmi-nand"; |
64 | #address-cells = <1>; | 64 | #address-cells = <1>; |
65 | #size-cells = <1>; | 65 | #size-cells = <1>; |
66 | reg = <0x8000c000 2000>, <0x8000a000 2000>; | 66 | reg = <0x8000c000 0x2000>, <0x8000a000 0x2000>; |
67 | reg-names = "gpmi-nand", "bch"; | 67 | reg-names = "gpmi-nand", "bch"; |
68 | interrupts = <13>, <56>; | 68 | interrupts = <13>, <56>; |
69 | interrupt-names = "gpmi-dma", "bch"; | 69 | interrupt-names = "gpmi-dma", "bch"; |
@@ -72,14 +72,14 @@ | |||
72 | }; | 72 | }; |
73 | 73 | ||
74 | ssp0: ssp@80010000 { | 74 | ssp0: ssp@80010000 { |
75 | reg = <0x80010000 2000>; | 75 | reg = <0x80010000 0x2000>; |
76 | interrupts = <15 14>; | 76 | interrupts = <15 14>; |
77 | fsl,ssp-dma-channel = <1>; | 77 | fsl,ssp-dma-channel = <1>; |
78 | status = "disabled"; | 78 | status = "disabled"; |
79 | }; | 79 | }; |
80 | 80 | ||
81 | etm@80014000 { | 81 | etm@80014000 { |
82 | reg = <0x80014000 2000>; | 82 | reg = <0x80014000 0x2000>; |
83 | status = "disabled"; | 83 | status = "disabled"; |
84 | }; | 84 | }; |
85 | 85 | ||
@@ -87,7 +87,7 @@ | |||
87 | #address-cells = <1>; | 87 | #address-cells = <1>; |
88 | #size-cells = <0>; | 88 | #size-cells = <0>; |
89 | compatible = "fsl,imx23-pinctrl", "simple-bus"; | 89 | compatible = "fsl,imx23-pinctrl", "simple-bus"; |
90 | reg = <0x80018000 2000>; | 90 | reg = <0x80018000 0x2000>; |
91 | 91 | ||
92 | gpio0: gpio@0 { | 92 | gpio0: gpio@0 { |
93 | compatible = "fsl,imx23-gpio", "fsl,mxs-gpio"; | 93 | compatible = "fsl,imx23-gpio", "fsl,mxs-gpio"; |
@@ -273,32 +273,32 @@ | |||
273 | }; | 273 | }; |
274 | 274 | ||
275 | emi@80020000 { | 275 | emi@80020000 { |
276 | reg = <0x80020000 2000>; | 276 | reg = <0x80020000 0x2000>; |
277 | status = "disabled"; | 277 | status = "disabled"; |
278 | }; | 278 | }; |
279 | 279 | ||
280 | dma-apbx@80024000 { | 280 | dma-apbx@80024000 { |
281 | compatible = "fsl,imx23-dma-apbx"; | 281 | compatible = "fsl,imx23-dma-apbx"; |
282 | reg = <0x80024000 2000>; | 282 | reg = <0x80024000 0x2000>; |
283 | }; | 283 | }; |
284 | 284 | ||
285 | dcp@80028000 { | 285 | dcp@80028000 { |
286 | reg = <0x80028000 2000>; | 286 | reg = <0x80028000 0x2000>; |
287 | status = "disabled"; | 287 | status = "disabled"; |
288 | }; | 288 | }; |
289 | 289 | ||
290 | pxp@8002a000 { | 290 | pxp@8002a000 { |
291 | reg = <0x8002a000 2000>; | 291 | reg = <0x8002a000 0x2000>; |
292 | status = "disabled"; | 292 | status = "disabled"; |
293 | }; | 293 | }; |
294 | 294 | ||
295 | ocotp@8002c000 { | 295 | ocotp@8002c000 { |
296 | reg = <0x8002c000 2000>; | 296 | reg = <0x8002c000 0x2000>; |
297 | status = "disabled"; | 297 | status = "disabled"; |
298 | }; | 298 | }; |
299 | 299 | ||
300 | axi-ahb@8002e000 { | 300 | axi-ahb@8002e000 { |
301 | reg = <0x8002e000 2000>; | 301 | reg = <0x8002e000 0x2000>; |
302 | status = "disabled"; | 302 | status = "disabled"; |
303 | }; | 303 | }; |
304 | 304 | ||
@@ -310,14 +310,14 @@ | |||
310 | }; | 310 | }; |
311 | 311 | ||
312 | ssp1: ssp@80034000 { | 312 | ssp1: ssp@80034000 { |
313 | reg = <0x80034000 2000>; | 313 | reg = <0x80034000 0x2000>; |
314 | interrupts = <2 20>; | 314 | interrupts = <2 20>; |
315 | fsl,ssp-dma-channel = <2>; | 315 | fsl,ssp-dma-channel = <2>; |
316 | status = "disabled"; | 316 | status = "disabled"; |
317 | }; | 317 | }; |
318 | 318 | ||
319 | tvenc@80038000 { | 319 | tvenc@80038000 { |
320 | reg = <0x80038000 2000>; | 320 | reg = <0x80038000 0x2000>; |
321 | status = "disabled"; | 321 | status = "disabled"; |
322 | }; | 322 | }; |
323 | }; | 323 | }; |
@@ -330,37 +330,37 @@ | |||
330 | ranges; | 330 | ranges; |
331 | 331 | ||
332 | clkctl@80040000 { | 332 | clkctl@80040000 { |
333 | reg = <0x80040000 2000>; | 333 | reg = <0x80040000 0x2000>; |
334 | status = "disabled"; | 334 | status = "disabled"; |
335 | }; | 335 | }; |
336 | 336 | ||
337 | saif0: saif@80042000 { | 337 | saif0: saif@80042000 { |
338 | reg = <0x80042000 2000>; | 338 | reg = <0x80042000 0x2000>; |
339 | status = "disabled"; | 339 | status = "disabled"; |
340 | }; | 340 | }; |
341 | 341 | ||
342 | power@80044000 { | 342 | power@80044000 { |
343 | reg = <0x80044000 2000>; | 343 | reg = <0x80044000 0x2000>; |
344 | status = "disabled"; | 344 | status = "disabled"; |
345 | }; | 345 | }; |
346 | 346 | ||
347 | saif1: saif@80046000 { | 347 | saif1: saif@80046000 { |
348 | reg = <0x80046000 2000>; | 348 | reg = <0x80046000 0x2000>; |
349 | status = "disabled"; | 349 | status = "disabled"; |
350 | }; | 350 | }; |
351 | 351 | ||
352 | audio-out@80048000 { | 352 | audio-out@80048000 { |
353 | reg = <0x80048000 2000>; | 353 | reg = <0x80048000 0x2000>; |
354 | status = "disabled"; | 354 | status = "disabled"; |
355 | }; | 355 | }; |
356 | 356 | ||
357 | audio-in@8004c000 { | 357 | audio-in@8004c000 { |
358 | reg = <0x8004c000 2000>; | 358 | reg = <0x8004c000 0x2000>; |
359 | status = "disabled"; | 359 | status = "disabled"; |
360 | }; | 360 | }; |
361 | 361 | ||
362 | lradc@80050000 { | 362 | lradc@80050000 { |
363 | reg = <0x80050000 2000>; | 363 | reg = <0x80050000 0x2000>; |
364 | status = "disabled"; | 364 | status = "disabled"; |
365 | }; | 365 | }; |
366 | 366 | ||
@@ -370,26 +370,26 @@ | |||
370 | }; | 370 | }; |
371 | 371 | ||
372 | i2c@80058000 { | 372 | i2c@80058000 { |
373 | reg = <0x80058000 2000>; | 373 | reg = <0x80058000 0x2000>; |
374 | status = "disabled"; | 374 | status = "disabled"; |
375 | }; | 375 | }; |
376 | 376 | ||
377 | rtc@8005c000 { | 377 | rtc@8005c000 { |
378 | compatible = "fsl,imx23-rtc", "fsl,stmp3xxx-rtc"; | 378 | compatible = "fsl,imx23-rtc", "fsl,stmp3xxx-rtc"; |
379 | reg = <0x8005c000 2000>; | 379 | reg = <0x8005c000 0x2000>; |
380 | interrupts = <22>; | 380 | interrupts = <22>; |
381 | }; | 381 | }; |
382 | 382 | ||
383 | pwm: pwm@80064000 { | 383 | pwm: pwm@80064000 { |
384 | compatible = "fsl,imx23-pwm"; | 384 | compatible = "fsl,imx23-pwm"; |
385 | reg = <0x80064000 2000>; | 385 | reg = <0x80064000 0x2000>; |
386 | #pwm-cells = <2>; | 386 | #pwm-cells = <2>; |
387 | fsl,pwm-number = <5>; | 387 | fsl,pwm-number = <5>; |
388 | status = "disabled"; | 388 | status = "disabled"; |
389 | }; | 389 | }; |
390 | 390 | ||
391 | timrot@80068000 { | 391 | timrot@80068000 { |
392 | reg = <0x80068000 2000>; | 392 | reg = <0x80068000 0x2000>; |
393 | status = "disabled"; | 393 | status = "disabled"; |
394 | }; | 394 | }; |
395 | 395 | ||
@@ -429,7 +429,7 @@ | |||
429 | ranges; | 429 | ranges; |
430 | 430 | ||
431 | usbctrl@80080000 { | 431 | usbctrl@80080000 { |
432 | reg = <0x80080000 0x10000>; | 432 | reg = <0x80080000 0x40000>; |
433 | status = "disabled"; | 433 | status = "disabled"; |
434 | }; | 434 | }; |
435 | }; | 435 | }; |
diff --git a/arch/arm/boot/dts/imx27-3ds.dts b/arch/arm/boot/dts/imx27-3ds.dts index d3f8296e19e0..0a8978a40ece 100644 --- a/arch/arm/boot/dts/imx27-3ds.dts +++ b/arch/arm/boot/dts/imx27-3ds.dts | |||
@@ -27,7 +27,7 @@ | |||
27 | status = "okay"; | 27 | status = "okay"; |
28 | }; | 28 | }; |
29 | 29 | ||
30 | uart@1000a000 { | 30 | uart1: serial@1000a000 { |
31 | fsl,uart-has-rtscts; | 31 | fsl,uart-has-rtscts; |
32 | status = "okay"; | 32 | status = "okay"; |
33 | }; | 33 | }; |
diff --git a/arch/arm/boot/dts/imx27.dtsi b/arch/arm/boot/dts/imx27.dtsi index 00bae3aad5ab..5303ab680a34 100644 --- a/arch/arm/boot/dts/imx27.dtsi +++ b/arch/arm/boot/dts/imx27.dtsi | |||
@@ -19,6 +19,12 @@ | |||
19 | serial3 = &uart4; | 19 | serial3 = &uart4; |
20 | serial4 = &uart5; | 20 | serial4 = &uart5; |
21 | serial5 = &uart6; | 21 | serial5 = &uart6; |
22 | gpio0 = &gpio1; | ||
23 | gpio1 = &gpio2; | ||
24 | gpio2 = &gpio3; | ||
25 | gpio3 = &gpio4; | ||
26 | gpio4 = &gpio5; | ||
27 | gpio5 = &gpio6; | ||
22 | }; | 28 | }; |
23 | 29 | ||
24 | avic: avic-interrupt-controller@e0000000 { | 30 | avic: avic-interrupt-controller@e0000000 { |
diff --git a/arch/arm/boot/dts/imx28.dtsi b/arch/arm/boot/dts/imx28.dtsi index 787efac68da8..3fa6d190fab4 100644 --- a/arch/arm/boot/dts/imx28.dtsi +++ b/arch/arm/boot/dts/imx28.dtsi | |||
@@ -57,18 +57,18 @@ | |||
57 | }; | 57 | }; |
58 | 58 | ||
59 | hsadc@80002000 { | 59 | hsadc@80002000 { |
60 | reg = <0x80002000 2000>; | 60 | reg = <0x80002000 0x2000>; |
61 | interrupts = <13 87>; | 61 | interrupts = <13 87>; |
62 | status = "disabled"; | 62 | status = "disabled"; |
63 | }; | 63 | }; |
64 | 64 | ||
65 | dma-apbh@80004000 { | 65 | dma-apbh@80004000 { |
66 | compatible = "fsl,imx28-dma-apbh"; | 66 | compatible = "fsl,imx28-dma-apbh"; |
67 | reg = <0x80004000 2000>; | 67 | reg = <0x80004000 0x2000>; |
68 | }; | 68 | }; |
69 | 69 | ||
70 | perfmon@80006000 { | 70 | perfmon@80006000 { |
71 | reg = <0x80006000 800>; | 71 | reg = <0x80006000 0x800>; |
72 | interrupts = <27>; | 72 | interrupts = <27>; |
73 | status = "disabled"; | 73 | status = "disabled"; |
74 | }; | 74 | }; |
@@ -77,7 +77,7 @@ | |||
77 | compatible = "fsl,imx28-gpmi-nand"; | 77 | compatible = "fsl,imx28-gpmi-nand"; |
78 | #address-cells = <1>; | 78 | #address-cells = <1>; |
79 | #size-cells = <1>; | 79 | #size-cells = <1>; |
80 | reg = <0x8000c000 2000>, <0x8000a000 2000>; | 80 | reg = <0x8000c000 0x2000>, <0x8000a000 0x2000>; |
81 | reg-names = "gpmi-nand", "bch"; | 81 | reg-names = "gpmi-nand", "bch"; |
82 | interrupts = <88>, <41>; | 82 | interrupts = <88>, <41>; |
83 | interrupt-names = "gpmi-dma", "bch"; | 83 | interrupt-names = "gpmi-dma", "bch"; |
@@ -86,28 +86,28 @@ | |||
86 | }; | 86 | }; |
87 | 87 | ||
88 | ssp0: ssp@80010000 { | 88 | ssp0: ssp@80010000 { |
89 | reg = <0x80010000 2000>; | 89 | reg = <0x80010000 0x2000>; |
90 | interrupts = <96 82>; | 90 | interrupts = <96 82>; |
91 | fsl,ssp-dma-channel = <0>; | 91 | fsl,ssp-dma-channel = <0>; |
92 | status = "disabled"; | 92 | status = "disabled"; |
93 | }; | 93 | }; |
94 | 94 | ||
95 | ssp1: ssp@80012000 { | 95 | ssp1: ssp@80012000 { |
96 | reg = <0x80012000 2000>; | 96 | reg = <0x80012000 0x2000>; |
97 | interrupts = <97 83>; | 97 | interrupts = <97 83>; |
98 | fsl,ssp-dma-channel = <1>; | 98 | fsl,ssp-dma-channel = <1>; |
99 | status = "disabled"; | 99 | status = "disabled"; |
100 | }; | 100 | }; |
101 | 101 | ||
102 | ssp2: ssp@80014000 { | 102 | ssp2: ssp@80014000 { |
103 | reg = <0x80014000 2000>; | 103 | reg = <0x80014000 0x2000>; |
104 | interrupts = <98 84>; | 104 | interrupts = <98 84>; |
105 | fsl,ssp-dma-channel = <2>; | 105 | fsl,ssp-dma-channel = <2>; |
106 | status = "disabled"; | 106 | status = "disabled"; |
107 | }; | 107 | }; |
108 | 108 | ||
109 | ssp3: ssp@80016000 { | 109 | ssp3: ssp@80016000 { |
110 | reg = <0x80016000 2000>; | 110 | reg = <0x80016000 0x2000>; |
111 | interrupts = <99 85>; | 111 | interrupts = <99 85>; |
112 | fsl,ssp-dma-channel = <3>; | 112 | fsl,ssp-dma-channel = <3>; |
113 | status = "disabled"; | 113 | status = "disabled"; |
@@ -117,7 +117,7 @@ | |||
117 | #address-cells = <1>; | 117 | #address-cells = <1>; |
118 | #size-cells = <0>; | 118 | #size-cells = <0>; |
119 | compatible = "fsl,imx28-pinctrl", "simple-bus"; | 119 | compatible = "fsl,imx28-pinctrl", "simple-bus"; |
120 | reg = <0x80018000 2000>; | 120 | reg = <0x80018000 0x2000>; |
121 | 121 | ||
122 | gpio0: gpio@0 { | 122 | gpio0: gpio@0 { |
123 | compatible = "fsl,imx28-gpio", "fsl,mxs-gpio"; | 123 | compatible = "fsl,imx28-gpio", "fsl,mxs-gpio"; |
@@ -510,96 +510,96 @@ | |||
510 | }; | 510 | }; |
511 | 511 | ||
512 | digctl@8001c000 { | 512 | digctl@8001c000 { |
513 | reg = <0x8001c000 2000>; | 513 | reg = <0x8001c000 0x2000>; |
514 | interrupts = <89>; | 514 | interrupts = <89>; |
515 | status = "disabled"; | 515 | status = "disabled"; |
516 | }; | 516 | }; |
517 | 517 | ||
518 | etm@80022000 { | 518 | etm@80022000 { |
519 | reg = <0x80022000 2000>; | 519 | reg = <0x80022000 0x2000>; |
520 | status = "disabled"; | 520 | status = "disabled"; |
521 | }; | 521 | }; |
522 | 522 | ||
523 | dma-apbx@80024000 { | 523 | dma-apbx@80024000 { |
524 | compatible = "fsl,imx28-dma-apbx"; | 524 | compatible = "fsl,imx28-dma-apbx"; |
525 | reg = <0x80024000 2000>; | 525 | reg = <0x80024000 0x2000>; |
526 | }; | 526 | }; |
527 | 527 | ||
528 | dcp@80028000 { | 528 | dcp@80028000 { |
529 | reg = <0x80028000 2000>; | 529 | reg = <0x80028000 0x2000>; |
530 | interrupts = <52 53 54>; | 530 | interrupts = <52 53 54>; |
531 | status = "disabled"; | 531 | status = "disabled"; |
532 | }; | 532 | }; |
533 | 533 | ||
534 | pxp@8002a000 { | 534 | pxp@8002a000 { |
535 | reg = <0x8002a000 2000>; | 535 | reg = <0x8002a000 0x2000>; |
536 | interrupts = <39>; | 536 | interrupts = <39>; |
537 | status = "disabled"; | 537 | status = "disabled"; |
538 | }; | 538 | }; |
539 | 539 | ||
540 | ocotp@8002c000 { | 540 | ocotp@8002c000 { |
541 | reg = <0x8002c000 2000>; | 541 | reg = <0x8002c000 0x2000>; |
542 | status = "disabled"; | 542 | status = "disabled"; |
543 | }; | 543 | }; |
544 | 544 | ||
545 | axi-ahb@8002e000 { | 545 | axi-ahb@8002e000 { |
546 | reg = <0x8002e000 2000>; | 546 | reg = <0x8002e000 0x2000>; |
547 | status = "disabled"; | 547 | status = "disabled"; |
548 | }; | 548 | }; |
549 | 549 | ||
550 | lcdif@80030000 { | 550 | lcdif@80030000 { |
551 | compatible = "fsl,imx28-lcdif"; | 551 | compatible = "fsl,imx28-lcdif"; |
552 | reg = <0x80030000 2000>; | 552 | reg = <0x80030000 0x2000>; |
553 | interrupts = <38 86>; | 553 | interrupts = <38 86>; |
554 | status = "disabled"; | 554 | status = "disabled"; |
555 | }; | 555 | }; |
556 | 556 | ||
557 | can0: can@80032000 { | 557 | can0: can@80032000 { |
558 | compatible = "fsl,imx28-flexcan", "fsl,p1010-flexcan"; | 558 | compatible = "fsl,imx28-flexcan", "fsl,p1010-flexcan"; |
559 | reg = <0x80032000 2000>; | 559 | reg = <0x80032000 0x2000>; |
560 | interrupts = <8>; | 560 | interrupts = <8>; |
561 | status = "disabled"; | 561 | status = "disabled"; |
562 | }; | 562 | }; |
563 | 563 | ||
564 | can1: can@80034000 { | 564 | can1: can@80034000 { |
565 | compatible = "fsl,imx28-flexcan", "fsl,p1010-flexcan"; | 565 | compatible = "fsl,imx28-flexcan", "fsl,p1010-flexcan"; |
566 | reg = <0x80034000 2000>; | 566 | reg = <0x80034000 0x2000>; |
567 | interrupts = <9>; | 567 | interrupts = <9>; |
568 | status = "disabled"; | 568 | status = "disabled"; |
569 | }; | 569 | }; |
570 | 570 | ||
571 | simdbg@8003c000 { | 571 | simdbg@8003c000 { |
572 | reg = <0x8003c000 200>; | 572 | reg = <0x8003c000 0x200>; |
573 | status = "disabled"; | 573 | status = "disabled"; |
574 | }; | 574 | }; |
575 | 575 | ||
576 | simgpmisel@8003c200 { | 576 | simgpmisel@8003c200 { |
577 | reg = <0x8003c200 100>; | 577 | reg = <0x8003c200 0x100>; |
578 | status = "disabled"; | 578 | status = "disabled"; |
579 | }; | 579 | }; |
580 | 580 | ||
581 | simsspsel@8003c300 { | 581 | simsspsel@8003c300 { |
582 | reg = <0x8003c300 100>; | 582 | reg = <0x8003c300 0x100>; |
583 | status = "disabled"; | 583 | status = "disabled"; |
584 | }; | 584 | }; |
585 | 585 | ||
586 | simmemsel@8003c400 { | 586 | simmemsel@8003c400 { |
587 | reg = <0x8003c400 100>; | 587 | reg = <0x8003c400 0x100>; |
588 | status = "disabled"; | 588 | status = "disabled"; |
589 | }; | 589 | }; |
590 | 590 | ||
591 | gpiomon@8003c500 { | 591 | gpiomon@8003c500 { |
592 | reg = <0x8003c500 100>; | 592 | reg = <0x8003c500 0x100>; |
593 | status = "disabled"; | 593 | status = "disabled"; |
594 | }; | 594 | }; |
595 | 595 | ||
596 | simenet@8003c700 { | 596 | simenet@8003c700 { |
597 | reg = <0x8003c700 100>; | 597 | reg = <0x8003c700 0x100>; |
598 | status = "disabled"; | 598 | status = "disabled"; |
599 | }; | 599 | }; |
600 | 600 | ||
601 | armjtag@8003c800 { | 601 | armjtag@8003c800 { |
602 | reg = <0x8003c800 100>; | 602 | reg = <0x8003c800 0x100>; |
603 | status = "disabled"; | 603 | status = "disabled"; |
604 | }; | 604 | }; |
605 | }; | 605 | }; |
@@ -612,45 +612,45 @@ | |||
612 | ranges; | 612 | ranges; |
613 | 613 | ||
614 | clkctl@80040000 { | 614 | clkctl@80040000 { |
615 | reg = <0x80040000 2000>; | 615 | reg = <0x80040000 0x2000>; |
616 | status = "disabled"; | 616 | status = "disabled"; |
617 | }; | 617 | }; |
618 | 618 | ||
619 | saif0: saif@80042000 { | 619 | saif0: saif@80042000 { |
620 | compatible = "fsl,imx28-saif"; | 620 | compatible = "fsl,imx28-saif"; |
621 | reg = <0x80042000 2000>; | 621 | reg = <0x80042000 0x2000>; |
622 | interrupts = <59 80>; | 622 | interrupts = <59 80>; |
623 | fsl,saif-dma-channel = <4>; | 623 | fsl,saif-dma-channel = <4>; |
624 | status = "disabled"; | 624 | status = "disabled"; |
625 | }; | 625 | }; |
626 | 626 | ||
627 | power@80044000 { | 627 | power@80044000 { |
628 | reg = <0x80044000 2000>; | 628 | reg = <0x80044000 0x2000>; |
629 | status = "disabled"; | 629 | status = "disabled"; |
630 | }; | 630 | }; |
631 | 631 | ||
632 | saif1: saif@80046000 { | 632 | saif1: saif@80046000 { |
633 | compatible = "fsl,imx28-saif"; | 633 | compatible = "fsl,imx28-saif"; |
634 | reg = <0x80046000 2000>; | 634 | reg = <0x80046000 0x2000>; |
635 | interrupts = <58 81>; | 635 | interrupts = <58 81>; |
636 | fsl,saif-dma-channel = <5>; | 636 | fsl,saif-dma-channel = <5>; |
637 | status = "disabled"; | 637 | status = "disabled"; |
638 | }; | 638 | }; |
639 | 639 | ||
640 | lradc@80050000 { | 640 | lradc@80050000 { |
641 | reg = <0x80050000 2000>; | 641 | reg = <0x80050000 0x2000>; |
642 | status = "disabled"; | 642 | status = "disabled"; |
643 | }; | 643 | }; |
644 | 644 | ||
645 | spdif@80054000 { | 645 | spdif@80054000 { |
646 | reg = <0x80054000 2000>; | 646 | reg = <0x80054000 0x2000>; |
647 | interrupts = <45 66>; | 647 | interrupts = <45 66>; |
648 | status = "disabled"; | 648 | status = "disabled"; |
649 | }; | 649 | }; |
650 | 650 | ||
651 | rtc@80056000 { | 651 | rtc@80056000 { |
652 | compatible = "fsl,imx28-rtc", "fsl,stmp3xxx-rtc"; | 652 | compatible = "fsl,imx28-rtc", "fsl,stmp3xxx-rtc"; |
653 | reg = <0x80056000 2000>; | 653 | reg = <0x80056000 0x2000>; |
654 | interrupts = <29>; | 654 | interrupts = <29>; |
655 | }; | 655 | }; |
656 | 656 | ||
@@ -658,7 +658,7 @@ | |||
658 | #address-cells = <1>; | 658 | #address-cells = <1>; |
659 | #size-cells = <0>; | 659 | #size-cells = <0>; |
660 | compatible = "fsl,imx28-i2c"; | 660 | compatible = "fsl,imx28-i2c"; |
661 | reg = <0x80058000 2000>; | 661 | reg = <0x80058000 0x2000>; |
662 | interrupts = <111 68>; | 662 | interrupts = <111 68>; |
663 | clock-frequency = <100000>; | 663 | clock-frequency = <100000>; |
664 | status = "disabled"; | 664 | status = "disabled"; |
@@ -668,7 +668,7 @@ | |||
668 | #address-cells = <1>; | 668 | #address-cells = <1>; |
669 | #size-cells = <0>; | 669 | #size-cells = <0>; |
670 | compatible = "fsl,imx28-i2c"; | 670 | compatible = "fsl,imx28-i2c"; |
671 | reg = <0x8005a000 2000>; | 671 | reg = <0x8005a000 0x2000>; |
672 | interrupts = <110 69>; | 672 | interrupts = <110 69>; |
673 | clock-frequency = <100000>; | 673 | clock-frequency = <100000>; |
674 | status = "disabled"; | 674 | status = "disabled"; |
@@ -676,14 +676,14 @@ | |||
676 | 676 | ||
677 | pwm: pwm@80064000 { | 677 | pwm: pwm@80064000 { |
678 | compatible = "fsl,imx28-pwm", "fsl,imx23-pwm"; | 678 | compatible = "fsl,imx28-pwm", "fsl,imx23-pwm"; |
679 | reg = <0x80064000 2000>; | 679 | reg = <0x80064000 0x2000>; |
680 | #pwm-cells = <2>; | 680 | #pwm-cells = <2>; |
681 | fsl,pwm-number = <8>; | 681 | fsl,pwm-number = <8>; |
682 | status = "disabled"; | 682 | status = "disabled"; |
683 | }; | 683 | }; |
684 | 684 | ||
685 | timrot@80068000 { | 685 | timrot@80068000 { |
686 | reg = <0x80068000 2000>; | 686 | reg = <0x80068000 0x2000>; |
687 | status = "disabled"; | 687 | status = "disabled"; |
688 | }; | 688 | }; |
689 | 689 | ||
diff --git a/arch/arm/boot/dts/imx51-babbage.dts b/arch/arm/boot/dts/imx51-babbage.dts index de065b5976e6..59d9789e5508 100644 --- a/arch/arm/boot/dts/imx51-babbage.dts +++ b/arch/arm/boot/dts/imx51-babbage.dts | |||
@@ -25,8 +25,8 @@ | |||
25 | aips@70000000 { /* aips-1 */ | 25 | aips@70000000 { /* aips-1 */ |
26 | spba@70000000 { | 26 | spba@70000000 { |
27 | esdhc@70004000 { /* ESDHC1 */ | 27 | esdhc@70004000 { /* ESDHC1 */ |
28 | fsl,cd-internal; | 28 | fsl,cd-controller; |
29 | fsl,wp-internal; | 29 | fsl,wp-controller; |
30 | status = "okay"; | 30 | status = "okay"; |
31 | }; | 31 | }; |
32 | 32 | ||
@@ -53,7 +53,7 @@ | |||
53 | spi-max-frequency = <6000000>; | 53 | spi-max-frequency = <6000000>; |
54 | reg = <0>; | 54 | reg = <0>; |
55 | interrupt-parent = <&gpio1>; | 55 | interrupt-parent = <&gpio1>; |
56 | interrupts = <8>; | 56 | interrupts = <8 0x4>; |
57 | 57 | ||
58 | regulators { | 58 | regulators { |
59 | sw1_reg: sw1 { | 59 | sw1_reg: sw1 { |
diff --git a/arch/arm/boot/dts/imx51.dtsi b/arch/arm/boot/dts/imx51.dtsi index 53cbaa3d4f90..aba28dc87fc8 100644 --- a/arch/arm/boot/dts/imx51.dtsi +++ b/arch/arm/boot/dts/imx51.dtsi | |||
@@ -17,6 +17,10 @@ | |||
17 | serial0 = &uart1; | 17 | serial0 = &uart1; |
18 | serial1 = &uart2; | 18 | serial1 = &uart2; |
19 | serial2 = &uart3; | 19 | serial2 = &uart3; |
20 | gpio0 = &gpio1; | ||
21 | gpio1 = &gpio2; | ||
22 | gpio2 = &gpio3; | ||
23 | gpio3 = &gpio4; | ||
20 | }; | 24 | }; |
21 | 25 | ||
22 | tzic: tz-interrupt-controller@e0000000 { | 26 | tzic: tz-interrupt-controller@e0000000 { |
diff --git a/arch/arm/boot/dts/imx53-ard.dts b/arch/arm/boot/dts/imx53-ard.dts index 5b8eafcdbeec..da895e93a999 100644 --- a/arch/arm/boot/dts/imx53-ard.dts +++ b/arch/arm/boot/dts/imx53-ard.dts | |||
@@ -64,12 +64,32 @@ | |||
64 | reg = <0xf4000000 0x2000000>; | 64 | reg = <0xf4000000 0x2000000>; |
65 | phy-mode = "mii"; | 65 | phy-mode = "mii"; |
66 | interrupt-parent = <&gpio2>; | 66 | interrupt-parent = <&gpio2>; |
67 | interrupts = <31>; | 67 | interrupts = <31 0x8>; |
68 | reg-io-width = <4>; | 68 | reg-io-width = <4>; |
69 | /* | ||
70 | * VDD33A and VDDVARIO of LAN9220 are supplied by | ||
71 | * SW4_3V3 of LTC3589. Before the regulator driver | ||
72 | * for this PMIC is available, we use a fixed dummy | ||
73 | * 3V3 regulator to get LAN9220 driver probing work. | ||
74 | */ | ||
75 | vdd33a-supply = <®_3p3v>; | ||
76 | vddvario-supply = <®_3p3v>; | ||
69 | smsc,irq-push-pull; | 77 | smsc,irq-push-pull; |
70 | }; | 78 | }; |
71 | }; | 79 | }; |
72 | 80 | ||
81 | regulators { | ||
82 | compatible = "simple-bus"; | ||
83 | |||
84 | reg_3p3v: 3p3v { | ||
85 | compatible = "regulator-fixed"; | ||
86 | regulator-name = "3P3V"; | ||
87 | regulator-min-microvolt = <3300000>; | ||
88 | regulator-max-microvolt = <3300000>; | ||
89 | regulator-always-on; | ||
90 | }; | ||
91 | }; | ||
92 | |||
73 | gpio-keys { | 93 | gpio-keys { |
74 | compatible = "gpio-keys"; | 94 | compatible = "gpio-keys"; |
75 | 95 | ||
diff --git a/arch/arm/boot/dts/imx53.dtsi b/arch/arm/boot/dts/imx53.dtsi index fc79cdc4b4e6..cd37165edce5 100644 --- a/arch/arm/boot/dts/imx53.dtsi +++ b/arch/arm/boot/dts/imx53.dtsi | |||
@@ -19,6 +19,13 @@ | |||
19 | serial2 = &uart3; | 19 | serial2 = &uart3; |
20 | serial3 = &uart4; | 20 | serial3 = &uart4; |
21 | serial4 = &uart5; | 21 | serial4 = &uart5; |
22 | gpio0 = &gpio1; | ||
23 | gpio1 = &gpio2; | ||
24 | gpio2 = &gpio3; | ||
25 | gpio3 = &gpio4; | ||
26 | gpio4 = &gpio5; | ||
27 | gpio5 = &gpio6; | ||
28 | gpio6 = &gpio7; | ||
22 | }; | 29 | }; |
23 | 30 | ||
24 | tzic: tz-interrupt-controller@0fffc000 { | 31 | tzic: tz-interrupt-controller@0fffc000 { |
diff --git a/arch/arm/boot/dts/imx6q-sabrelite.dts b/arch/arm/boot/dts/imx6q-sabrelite.dts index d42e851ceb97..72f30f3e6171 100644 --- a/arch/arm/boot/dts/imx6q-sabrelite.dts +++ b/arch/arm/boot/dts/imx6q-sabrelite.dts | |||
@@ -53,6 +53,7 @@ | |||
53 | fsl,pins = < | 53 | fsl,pins = < |
54 | 144 0x80000000 /* MX6Q_PAD_EIM_D22__GPIO_3_22 */ | 54 | 144 0x80000000 /* MX6Q_PAD_EIM_D22__GPIO_3_22 */ |
55 | 121 0x80000000 /* MX6Q_PAD_EIM_D19__GPIO_3_19 */ | 55 | 121 0x80000000 /* MX6Q_PAD_EIM_D19__GPIO_3_19 */ |
56 | 953 0x80000000 /* MX6Q_PAD_GPIO_0__CCM_CLKO */ | ||
56 | >; | 57 | >; |
57 | }; | 58 | }; |
58 | }; | 59 | }; |
diff --git a/arch/arm/boot/dts/imx6q.dtsi b/arch/arm/boot/dts/imx6q.dtsi index 3d3c64b014e6..fd57079f71a9 100644 --- a/arch/arm/boot/dts/imx6q.dtsi +++ b/arch/arm/boot/dts/imx6q.dtsi | |||
@@ -19,6 +19,13 @@ | |||
19 | serial2 = &uart3; | 19 | serial2 = &uart3; |
20 | serial3 = &uart4; | 20 | serial3 = &uart4; |
21 | serial4 = &uart5; | 21 | serial4 = &uart5; |
22 | gpio0 = &gpio1; | ||
23 | gpio1 = &gpio2; | ||
24 | gpio2 = &gpio3; | ||
25 | gpio3 = &gpio4; | ||
26 | gpio4 = &gpio5; | ||
27 | gpio5 = &gpio6; | ||
28 | gpio6 = &gpio7; | ||
22 | }; | 29 | }; |
23 | 30 | ||
24 | cpus { | 31 | cpus { |
diff --git a/arch/arm/boot/dts/kirkwood-iconnect.dts b/arch/arm/boot/dts/kirkwood-iconnect.dts index 52d947045106..f8ca6fa88192 100644 --- a/arch/arm/boot/dts/kirkwood-iconnect.dts +++ b/arch/arm/boot/dts/kirkwood-iconnect.dts | |||
@@ -41,9 +41,13 @@ | |||
41 | }; | 41 | }; |
42 | power-blue { | 42 | power-blue { |
43 | label = "power:blue"; | 43 | label = "power:blue"; |
44 | gpios = <&gpio1 11 0>; | 44 | gpios = <&gpio1 10 0>; |
45 | linux,default-trigger = "timer"; | 45 | linux,default-trigger = "timer"; |
46 | }; | 46 | }; |
47 | power-red { | ||
48 | label = "power:red"; | ||
49 | gpios = <&gpio1 11 0>; | ||
50 | }; | ||
47 | usb1 { | 51 | usb1 { |
48 | label = "usb1:blue"; | 52 | label = "usb1:blue"; |
49 | gpios = <&gpio1 12 0>; | 53 | gpios = <&gpio1 12 0>; |
diff --git a/arch/arm/boot/dts/twl6030.dtsi b/arch/arm/boot/dts/twl6030.dtsi index 3b2f3510d7eb..d351b27d7213 100644 --- a/arch/arm/boot/dts/twl6030.dtsi +++ b/arch/arm/boot/dts/twl6030.dtsi | |||
@@ -66,6 +66,7 @@ | |||
66 | 66 | ||
67 | vcxio: regulator@8 { | 67 | vcxio: regulator@8 { |
68 | compatible = "ti,twl6030-vcxio"; | 68 | compatible = "ti,twl6030-vcxio"; |
69 | regulator-always-on; | ||
69 | }; | 70 | }; |
70 | 71 | ||
71 | vusb: regulator@9 { | 72 | vusb: regulator@9 { |
@@ -74,10 +75,12 @@ | |||
74 | 75 | ||
75 | v1v8: regulator@10 { | 76 | v1v8: regulator@10 { |
76 | compatible = "ti,twl6030-v1v8"; | 77 | compatible = "ti,twl6030-v1v8"; |
78 | regulator-always-on; | ||
77 | }; | 79 | }; |
78 | 80 | ||
79 | v2v1: regulator@11 { | 81 | v2v1: regulator@11 { |
80 | compatible = "ti,twl6030-v2v1"; | 82 | compatible = "ti,twl6030-v2v1"; |
83 | regulator-always-on; | ||
81 | }; | 84 | }; |
82 | 85 | ||
83 | clk32kg: regulator@12 { | 86 | clk32kg: regulator@12 { |
diff --git a/arch/arm/configs/imx_v6_v7_defconfig b/arch/arm/configs/imx_v6_v7_defconfig index f725b9637b33..3c9f32f9b6b4 100644 --- a/arch/arm/configs/imx_v6_v7_defconfig +++ b/arch/arm/configs/imx_v6_v7_defconfig | |||
@@ -192,6 +192,7 @@ CONFIG_RTC_DRV_MC13XXX=y | |||
192 | CONFIG_RTC_DRV_MXC=y | 192 | CONFIG_RTC_DRV_MXC=y |
193 | CONFIG_DMADEVICES=y | 193 | CONFIG_DMADEVICES=y |
194 | CONFIG_IMX_SDMA=y | 194 | CONFIG_IMX_SDMA=y |
195 | CONFIG_MXS_DMA=y | ||
195 | CONFIG_COMMON_CLK_DEBUG=y | 196 | CONFIG_COMMON_CLK_DEBUG=y |
196 | # CONFIG_IOMMU_SUPPORT is not set | 197 | # CONFIG_IOMMU_SUPPORT is not set |
197 | CONFIG_EXT2_FS=y | 198 | CONFIG_EXT2_FS=y |
diff --git a/arch/arm/configs/mxs_defconfig b/arch/arm/configs/mxs_defconfig index ccdb6357fb74..4edcfb4e4dee 100644 --- a/arch/arm/configs/mxs_defconfig +++ b/arch/arm/configs/mxs_defconfig | |||
@@ -34,7 +34,6 @@ CONFIG_NO_HZ=y | |||
34 | CONFIG_HIGH_RES_TIMERS=y | 34 | CONFIG_HIGH_RES_TIMERS=y |
35 | CONFIG_PREEMPT_VOLUNTARY=y | 35 | CONFIG_PREEMPT_VOLUNTARY=y |
36 | CONFIG_AEABI=y | 36 | CONFIG_AEABI=y |
37 | CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 | ||
38 | CONFIG_AUTO_ZRELADDR=y | 37 | CONFIG_AUTO_ZRELADDR=y |
39 | CONFIG_FPE_NWFPE=y | 38 | CONFIG_FPE_NWFPE=y |
40 | CONFIG_NET=y | 39 | CONFIG_NET=y |
diff --git a/arch/arm/configs/tct_hammer_defconfig b/arch/arm/configs/tct_hammer_defconfig index 1d24f8458bef..71277a1591ba 100644 --- a/arch/arm/configs/tct_hammer_defconfig +++ b/arch/arm/configs/tct_hammer_defconfig | |||
@@ -7,7 +7,7 @@ CONFIG_SYSFS_DEPRECATED_V2=y | |||
7 | CONFIG_BLK_DEV_INITRD=y | 7 | CONFIG_BLK_DEV_INITRD=y |
8 | CONFIG_EXPERT=y | 8 | CONFIG_EXPERT=y |
9 | # CONFIG_KALLSYMS is not set | 9 | # CONFIG_KALLSYMS is not set |
10 | # CONFIG_BUG is not set | 10 | # CONFIG_BUGVERBOSE is not set |
11 | # CONFIG_ELF_CORE is not set | 11 | # CONFIG_ELF_CORE is not set |
12 | # CONFIG_SHMEM is not set | 12 | # CONFIG_SHMEM is not set |
13 | CONFIG_SLOB=y | 13 | CONFIG_SLOB=y |
diff --git a/arch/arm/configs/u8500_defconfig b/arch/arm/configs/u8500_defconfig index 2d4f661d1cf6..da6845493caa 100644 --- a/arch/arm/configs/u8500_defconfig +++ b/arch/arm/configs/u8500_defconfig | |||
@@ -86,6 +86,7 @@ CONFIG_NEW_LEDS=y | |||
86 | CONFIG_LEDS_CLASS=y | 86 | CONFIG_LEDS_CLASS=y |
87 | CONFIG_LEDS_LM3530=y | 87 | CONFIG_LEDS_LM3530=y |
88 | CONFIG_LEDS_LP5521=y | 88 | CONFIG_LEDS_LP5521=y |
89 | CONFIG_LEDS_GPIO=y | ||
89 | CONFIG_RTC_CLASS=y | 90 | CONFIG_RTC_CLASS=y |
90 | CONFIG_RTC_DRV_AB8500=y | 91 | CONFIG_RTC_DRV_AB8500=y |
91 | CONFIG_RTC_DRV_PL031=y | 92 | CONFIG_RTC_DRV_PL031=y |
diff --git a/arch/arm/include/asm/pgtable.h b/arch/arm/include/asm/pgtable.h index f66626d71e7d..41dc31f834c3 100644 --- a/arch/arm/include/asm/pgtable.h +++ b/arch/arm/include/asm/pgtable.h | |||
@@ -195,6 +195,18 @@ static inline pte_t *pmd_page_vaddr(pmd_t pmd) | |||
195 | 195 | ||
196 | #define pte_clear(mm,addr,ptep) set_pte_ext(ptep, __pte(0), 0) | 196 | #define pte_clear(mm,addr,ptep) set_pte_ext(ptep, __pte(0), 0) |
197 | 197 | ||
198 | #define pte_none(pte) (!pte_val(pte)) | ||
199 | #define pte_present(pte) (pte_val(pte) & L_PTE_PRESENT) | ||
200 | #define pte_write(pte) (!(pte_val(pte) & L_PTE_RDONLY)) | ||
201 | #define pte_dirty(pte) (pte_val(pte) & L_PTE_DIRTY) | ||
202 | #define pte_young(pte) (pte_val(pte) & L_PTE_YOUNG) | ||
203 | #define pte_exec(pte) (!(pte_val(pte) & L_PTE_XN)) | ||
204 | #define pte_special(pte) (0) | ||
205 | |||
206 | #define pte_present_user(pte) \ | ||
207 | ((pte_val(pte) & (L_PTE_PRESENT | L_PTE_USER)) == \ | ||
208 | (L_PTE_PRESENT | L_PTE_USER)) | ||
209 | |||
198 | #if __LINUX_ARM_ARCH__ < 6 | 210 | #if __LINUX_ARM_ARCH__ < 6 |
199 | static inline void __sync_icache_dcache(pte_t pteval) | 211 | static inline void __sync_icache_dcache(pte_t pteval) |
200 | { | 212 | { |
@@ -206,25 +218,15 @@ extern void __sync_icache_dcache(pte_t pteval); | |||
206 | static inline void set_pte_at(struct mm_struct *mm, unsigned long addr, | 218 | static inline void set_pte_at(struct mm_struct *mm, unsigned long addr, |
207 | pte_t *ptep, pte_t pteval) | 219 | pte_t *ptep, pte_t pteval) |
208 | { | 220 | { |
209 | if (addr >= TASK_SIZE) | 221 | unsigned long ext = 0; |
210 | set_pte_ext(ptep, pteval, 0); | 222 | |
211 | else { | 223 | if (addr < TASK_SIZE && pte_present_user(pteval)) { |
212 | __sync_icache_dcache(pteval); | 224 | __sync_icache_dcache(pteval); |
213 | set_pte_ext(ptep, pteval, PTE_EXT_NG); | 225 | ext |= PTE_EXT_NG; |
214 | } | 226 | } |
215 | } | ||
216 | 227 | ||
217 | #define pte_none(pte) (!pte_val(pte)) | 228 | set_pte_ext(ptep, pteval, ext); |
218 | #define pte_present(pte) (pte_val(pte) & L_PTE_PRESENT) | 229 | } |
219 | #define pte_write(pte) (!(pte_val(pte) & L_PTE_RDONLY)) | ||
220 | #define pte_dirty(pte) (pte_val(pte) & L_PTE_DIRTY) | ||
221 | #define pte_young(pte) (pte_val(pte) & L_PTE_YOUNG) | ||
222 | #define pte_exec(pte) (!(pte_val(pte) & L_PTE_XN)) | ||
223 | #define pte_special(pte) (0) | ||
224 | |||
225 | #define pte_present_user(pte) \ | ||
226 | ((pte_val(pte) & (L_PTE_PRESENT | L_PTE_USER)) == \ | ||
227 | (L_PTE_PRESENT | L_PTE_USER)) | ||
228 | 230 | ||
229 | #define PTE_BIT_FUNC(fn,op) \ | 231 | #define PTE_BIT_FUNC(fn,op) \ |
230 | static inline pte_t pte_##fn(pte_t pte) { pte_val(pte) op; return pte; } | 232 | static inline pte_t pte_##fn(pte_t pte) { pte_val(pte) op; return pte; } |
@@ -251,13 +253,13 @@ static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) | |||
251 | * | 253 | * |
252 | * 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 | 254 | * 3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1 |
253 | * 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 | 255 | * 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 |
254 | * <--------------- offset --------------------> <- type --> 0 0 0 | 256 | * <--------------- offset ----------------------> < type -> 0 0 0 |
255 | * | 257 | * |
256 | * This gives us up to 63 swap files and 32GB per swap file. Note that | 258 | * This gives us up to 31 swap files and 64GB per swap file. Note that |
257 | * the offset field is always non-zero. | 259 | * the offset field is always non-zero. |
258 | */ | 260 | */ |
259 | #define __SWP_TYPE_SHIFT 3 | 261 | #define __SWP_TYPE_SHIFT 3 |
260 | #define __SWP_TYPE_BITS 6 | 262 | #define __SWP_TYPE_BITS 5 |
261 | #define __SWP_TYPE_MASK ((1 << __SWP_TYPE_BITS) - 1) | 263 | #define __SWP_TYPE_MASK ((1 << __SWP_TYPE_BITS) - 1) |
262 | #define __SWP_OFFSET_SHIFT (__SWP_TYPE_BITS + __SWP_TYPE_SHIFT) | 264 | #define __SWP_OFFSET_SHIFT (__SWP_TYPE_BITS + __SWP_TYPE_SHIFT) |
263 | 265 | ||
diff --git a/arch/arm/include/asm/sched_clock.h b/arch/arm/include/asm/sched_clock.h index e3f757263438..05b8e82ec9f5 100644 --- a/arch/arm/include/asm/sched_clock.h +++ b/arch/arm/include/asm/sched_clock.h | |||
@@ -10,5 +10,7 @@ | |||
10 | 10 | ||
11 | extern void sched_clock_postinit(void); | 11 | extern void sched_clock_postinit(void); |
12 | extern void setup_sched_clock(u32 (*read)(void), int bits, unsigned long rate); | 12 | extern void setup_sched_clock(u32 (*read)(void), int bits, unsigned long rate); |
13 | extern void setup_sched_clock_needs_suspend(u32 (*read)(void), int bits, | ||
14 | unsigned long rate); | ||
13 | 15 | ||
14 | #endif | 16 | #endif |
diff --git a/arch/arm/kernel/sched_clock.c b/arch/arm/kernel/sched_clock.c index 27d186abbc06..f4515393248d 100644 --- a/arch/arm/kernel/sched_clock.c +++ b/arch/arm/kernel/sched_clock.c | |||
@@ -21,6 +21,8 @@ struct clock_data { | |||
21 | u32 epoch_cyc_copy; | 21 | u32 epoch_cyc_copy; |
22 | u32 mult; | 22 | u32 mult; |
23 | u32 shift; | 23 | u32 shift; |
24 | bool suspended; | ||
25 | bool needs_suspend; | ||
24 | }; | 26 | }; |
25 | 27 | ||
26 | static void sched_clock_poll(unsigned long wrap_ticks); | 28 | static void sched_clock_poll(unsigned long wrap_ticks); |
@@ -49,6 +51,9 @@ static unsigned long long cyc_to_sched_clock(u32 cyc, u32 mask) | |||
49 | u64 epoch_ns; | 51 | u64 epoch_ns; |
50 | u32 epoch_cyc; | 52 | u32 epoch_cyc; |
51 | 53 | ||
54 | if (cd.suspended) | ||
55 | return cd.epoch_ns; | ||
56 | |||
52 | /* | 57 | /* |
53 | * Load the epoch_cyc and epoch_ns atomically. We do this by | 58 | * Load the epoch_cyc and epoch_ns atomically. We do this by |
54 | * ensuring that we always write epoch_cyc, epoch_ns and | 59 | * ensuring that we always write epoch_cyc, epoch_ns and |
@@ -98,6 +103,13 @@ static void sched_clock_poll(unsigned long wrap_ticks) | |||
98 | update_sched_clock(); | 103 | update_sched_clock(); |
99 | } | 104 | } |
100 | 105 | ||
106 | void __init setup_sched_clock_needs_suspend(u32 (*read)(void), int bits, | ||
107 | unsigned long rate) | ||
108 | { | ||
109 | setup_sched_clock(read, bits, rate); | ||
110 | cd.needs_suspend = true; | ||
111 | } | ||
112 | |||
101 | void __init setup_sched_clock(u32 (*read)(void), int bits, unsigned long rate) | 113 | void __init setup_sched_clock(u32 (*read)(void), int bits, unsigned long rate) |
102 | { | 114 | { |
103 | unsigned long r, w; | 115 | unsigned long r, w; |
@@ -169,11 +181,23 @@ void __init sched_clock_postinit(void) | |||
169 | static int sched_clock_suspend(void) | 181 | static int sched_clock_suspend(void) |
170 | { | 182 | { |
171 | sched_clock_poll(sched_clock_timer.data); | 183 | sched_clock_poll(sched_clock_timer.data); |
184 | if (cd.needs_suspend) | ||
185 | cd.suspended = true; | ||
172 | return 0; | 186 | return 0; |
173 | } | 187 | } |
174 | 188 | ||
189 | static void sched_clock_resume(void) | ||
190 | { | ||
191 | if (cd.needs_suspend) { | ||
192 | cd.epoch_cyc = read_sched_clock(); | ||
193 | cd.epoch_cyc_copy = cd.epoch_cyc; | ||
194 | cd.suspended = false; | ||
195 | } | ||
196 | } | ||
197 | |||
175 | static struct syscore_ops sched_clock_ops = { | 198 | static struct syscore_ops sched_clock_ops = { |
176 | .suspend = sched_clock_suspend, | 199 | .suspend = sched_clock_suspend, |
200 | .resume = sched_clock_resume, | ||
177 | }; | 201 | }; |
178 | 202 | ||
179 | static int __init sched_clock_syscore_init(void) | 203 | static int __init sched_clock_syscore_init(void) |
diff --git a/arch/arm/kernel/topology.c b/arch/arm/kernel/topology.c index 198b08456e90..26c12c6440fc 100644 --- a/arch/arm/kernel/topology.c +++ b/arch/arm/kernel/topology.c | |||
@@ -321,7 +321,7 @@ void store_cpu_topology(unsigned int cpuid) | |||
321 | * init_cpu_topology is called at boot when only one cpu is running | 321 | * init_cpu_topology is called at boot when only one cpu is running |
322 | * which prevent simultaneous write access to cpu_topology array | 322 | * which prevent simultaneous write access to cpu_topology array |
323 | */ | 323 | */ |
324 | void init_cpu_topology(void) | 324 | void __init init_cpu_topology(void) |
325 | { | 325 | { |
326 | unsigned int cpu; | 326 | unsigned int cpu; |
327 | 327 | ||
diff --git a/arch/arm/lib/Makefile b/arch/arm/lib/Makefile index 2473fd1fd51c..af72969820b4 100644 --- a/arch/arm/lib/Makefile +++ b/arch/arm/lib/Makefile | |||
@@ -16,13 +16,30 @@ lib-y := backtrace.o changebit.o csumipv6.o csumpartial.o \ | |||
16 | call_with_stack.o | 16 | call_with_stack.o |
17 | 17 | ||
18 | mmu-y := clear_user.o copy_page.o getuser.o putuser.o | 18 | mmu-y := clear_user.o copy_page.o getuser.o putuser.o |
19 | mmu-y += copy_from_user.o copy_to_user.o | 19 | |
20 | # the code in uaccess.S is not preemption safe and | ||
21 | # probably faster on ARMv3 only | ||
22 | ifeq ($(CONFIG_PREEMPT),y) | ||
23 | mmu-y += copy_from_user.o copy_to_user.o | ||
24 | else | ||
25 | ifneq ($(CONFIG_CPU_32v3),y) | ||
26 | mmu-y += copy_from_user.o copy_to_user.o | ||
27 | else | ||
28 | mmu-y += uaccess.o | ||
29 | endif | ||
30 | endif | ||
20 | 31 | ||
21 | # using lib_ here won't override already available weak symbols | 32 | # using lib_ here won't override already available weak symbols |
22 | obj-$(CONFIG_UACCESS_WITH_MEMCPY) += uaccess_with_memcpy.o | 33 | obj-$(CONFIG_UACCESS_WITH_MEMCPY) += uaccess_with_memcpy.o |
23 | 34 | ||
24 | lib-$(CONFIG_MMU) += $(mmu-y) | 35 | lib-$(CONFIG_MMU) += $(mmu-y) |
25 | lib-y += io-readsw-armv4.o io-writesw-armv4.o | 36 | |
37 | ifeq ($(CONFIG_CPU_32v3),y) | ||
38 | lib-y += io-readsw-armv3.o io-writesw-armv3.o | ||
39 | else | ||
40 | lib-y += io-readsw-armv4.o io-writesw-armv4.o | ||
41 | endif | ||
42 | |||
26 | lib-$(CONFIG_ARCH_RPC) += ecard.o io-acorn.o floppydma.o | 43 | lib-$(CONFIG_ARCH_RPC) += ecard.o io-acorn.o floppydma.o |
27 | lib-$(CONFIG_ARCH_SHARK) += io-shark.o | 44 | lib-$(CONFIG_ARCH_SHARK) += io-shark.o |
28 | 45 | ||
diff --git a/arch/arm/lib/io-readsw-armv3.S b/arch/arm/lib/io-readsw-armv3.S new file mode 100644 index 000000000000..88487c8c4f23 --- /dev/null +++ b/arch/arm/lib/io-readsw-armv3.S | |||
@@ -0,0 +1,106 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/lib/io-readsw-armv3.S | ||
3 | * | ||
4 | * Copyright (C) 1995-2000 Russell King | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #include <linux/linkage.h> | ||
11 | #include <asm/assembler.h> | ||
12 | |||
13 | .Linsw_bad_alignment: | ||
14 | adr r0, .Linsw_bad_align_msg | ||
15 | mov r2, lr | ||
16 | b panic | ||
17 | .Linsw_bad_align_msg: | ||
18 | .asciz "insw: bad buffer alignment (0x%p, lr=0x%08lX)\n" | ||
19 | .align | ||
20 | |||
21 | .Linsw_align: tst r1, #1 | ||
22 | bne .Linsw_bad_alignment | ||
23 | |||
24 | ldr r3, [r0] | ||
25 | strb r3, [r1], #1 | ||
26 | mov r3, r3, lsr #8 | ||
27 | strb r3, [r1], #1 | ||
28 | |||
29 | subs r2, r2, #1 | ||
30 | moveq pc, lr | ||
31 | |||
32 | ENTRY(__raw_readsw) | ||
33 | teq r2, #0 @ do we have to check for the zero len? | ||
34 | moveq pc, lr | ||
35 | tst r1, #3 | ||
36 | bne .Linsw_align | ||
37 | |||
38 | .Linsw_aligned: mov ip, #0xff | ||
39 | orr ip, ip, ip, lsl #8 | ||
40 | stmfd sp!, {r4, r5, r6, lr} | ||
41 | |||
42 | subs r2, r2, #8 | ||
43 | bmi .Lno_insw_8 | ||
44 | |||
45 | .Linsw_8_lp: ldr r3, [r0] | ||
46 | and r3, r3, ip | ||
47 | ldr r4, [r0] | ||
48 | orr r3, r3, r4, lsl #16 | ||
49 | |||
50 | ldr r4, [r0] | ||
51 | and r4, r4, ip | ||
52 | ldr r5, [r0] | ||
53 | orr r4, r4, r5, lsl #16 | ||
54 | |||
55 | ldr r5, [r0] | ||
56 | and r5, r5, ip | ||
57 | ldr r6, [r0] | ||
58 | orr r5, r5, r6, lsl #16 | ||
59 | |||
60 | ldr r6, [r0] | ||
61 | and r6, r6, ip | ||
62 | ldr lr, [r0] | ||
63 | orr r6, r6, lr, lsl #16 | ||
64 | |||
65 | stmia r1!, {r3 - r6} | ||
66 | |||
67 | subs r2, r2, #8 | ||
68 | bpl .Linsw_8_lp | ||
69 | |||
70 | tst r2, #7 | ||
71 | ldmeqfd sp!, {r4, r5, r6, pc} | ||
72 | |||
73 | .Lno_insw_8: tst r2, #4 | ||
74 | beq .Lno_insw_4 | ||
75 | |||
76 | ldr r3, [r0] | ||
77 | and r3, r3, ip | ||
78 | ldr r4, [r0] | ||
79 | orr r3, r3, r4, lsl #16 | ||
80 | |||
81 | ldr r4, [r0] | ||
82 | and r4, r4, ip | ||
83 | ldr r5, [r0] | ||
84 | orr r4, r4, r5, lsl #16 | ||
85 | |||
86 | stmia r1!, {r3, r4} | ||
87 | |||
88 | .Lno_insw_4: tst r2, #2 | ||
89 | beq .Lno_insw_2 | ||
90 | |||
91 | ldr r3, [r0] | ||
92 | and r3, r3, ip | ||
93 | ldr r4, [r0] | ||
94 | orr r3, r3, r4, lsl #16 | ||
95 | |||
96 | str r3, [r1], #4 | ||
97 | |||
98 | .Lno_insw_2: tst r2, #1 | ||
99 | ldrne r3, [r0] | ||
100 | strneb r3, [r1], #1 | ||
101 | movne r3, r3, lsr #8 | ||
102 | strneb r3, [r1] | ||
103 | |||
104 | ldmfd sp!, {r4, r5, r6, pc} | ||
105 | |||
106 | |||
diff --git a/arch/arm/lib/io-writesw-armv3.S b/arch/arm/lib/io-writesw-armv3.S new file mode 100644 index 000000000000..49b800419e32 --- /dev/null +++ b/arch/arm/lib/io-writesw-armv3.S | |||
@@ -0,0 +1,126 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/lib/io-writesw-armv3.S | ||
3 | * | ||
4 | * Copyright (C) 1995-2000 Russell King | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | #include <linux/linkage.h> | ||
11 | #include <asm/assembler.h> | ||
12 | |||
13 | .Loutsw_bad_alignment: | ||
14 | adr r0, .Loutsw_bad_align_msg | ||
15 | mov r2, lr | ||
16 | b panic | ||
17 | .Loutsw_bad_align_msg: | ||
18 | .asciz "outsw: bad buffer alignment (0x%p, lr=0x%08lX)\n" | ||
19 | .align | ||
20 | |||
21 | .Loutsw_align: tst r1, #1 | ||
22 | bne .Loutsw_bad_alignment | ||
23 | |||
24 | add r1, r1, #2 | ||
25 | |||
26 | ldr r3, [r1, #-4] | ||
27 | mov r3, r3, lsr #16 | ||
28 | orr r3, r3, r3, lsl #16 | ||
29 | str r3, [r0] | ||
30 | subs r2, r2, #1 | ||
31 | moveq pc, lr | ||
32 | |||
33 | ENTRY(__raw_writesw) | ||
34 | teq r2, #0 @ do we have to check for the zero len? | ||
35 | moveq pc, lr | ||
36 | tst r1, #3 | ||
37 | bne .Loutsw_align | ||
38 | |||
39 | stmfd sp!, {r4, r5, r6, lr} | ||
40 | |||
41 | subs r2, r2, #8 | ||
42 | bmi .Lno_outsw_8 | ||
43 | |||
44 | .Loutsw_8_lp: ldmia r1!, {r3, r4, r5, r6} | ||
45 | |||
46 | mov ip, r3, lsl #16 | ||
47 | orr ip, ip, ip, lsr #16 | ||
48 | str ip, [r0] | ||
49 | |||
50 | mov ip, r3, lsr #16 | ||
51 | orr ip, ip, ip, lsl #16 | ||
52 | str ip, [r0] | ||
53 | |||
54 | mov ip, r4, lsl #16 | ||
55 | orr ip, ip, ip, lsr #16 | ||
56 | str ip, [r0] | ||
57 | |||
58 | mov ip, r4, lsr #16 | ||
59 | orr ip, ip, ip, lsl #16 | ||
60 | str ip, [r0] | ||
61 | |||
62 | mov ip, r5, lsl #16 | ||
63 | orr ip, ip, ip, lsr #16 | ||
64 | str ip, [r0] | ||
65 | |||
66 | mov ip, r5, lsr #16 | ||
67 | orr ip, ip, ip, lsl #16 | ||
68 | str ip, [r0] | ||
69 | |||
70 | mov ip, r6, lsl #16 | ||
71 | orr ip, ip, ip, lsr #16 | ||
72 | str ip, [r0] | ||
73 | |||
74 | mov ip, r6, lsr #16 | ||
75 | orr ip, ip, ip, lsl #16 | ||
76 | str ip, [r0] | ||
77 | |||
78 | subs r2, r2, #8 | ||
79 | bpl .Loutsw_8_lp | ||
80 | |||
81 | tst r2, #7 | ||
82 | ldmeqfd sp!, {r4, r5, r6, pc} | ||
83 | |||
84 | .Lno_outsw_8: tst r2, #4 | ||
85 | beq .Lno_outsw_4 | ||
86 | |||
87 | ldmia r1!, {r3, r4} | ||
88 | |||
89 | mov ip, r3, lsl #16 | ||
90 | orr ip, ip, ip, lsr #16 | ||
91 | str ip, [r0] | ||
92 | |||
93 | mov ip, r3, lsr #16 | ||
94 | orr ip, ip, ip, lsl #16 | ||
95 | str ip, [r0] | ||
96 | |||
97 | mov ip, r4, lsl #16 | ||
98 | orr ip, ip, ip, lsr #16 | ||
99 | str ip, [r0] | ||
100 | |||
101 | mov ip, r4, lsr #16 | ||
102 | orr ip, ip, ip, lsl #16 | ||
103 | str ip, [r0] | ||
104 | |||
105 | .Lno_outsw_4: tst r2, #2 | ||
106 | beq .Lno_outsw_2 | ||
107 | |||
108 | ldr r3, [r1], #4 | ||
109 | |||
110 | mov ip, r3, lsl #16 | ||
111 | orr ip, ip, ip, lsr #16 | ||
112 | str ip, [r0] | ||
113 | |||
114 | mov ip, r3, lsr #16 | ||
115 | orr ip, ip, ip, lsl #16 | ||
116 | str ip, [r0] | ||
117 | |||
118 | .Lno_outsw_2: tst r2, #1 | ||
119 | |||
120 | ldrne r3, [r1] | ||
121 | |||
122 | movne ip, r3, lsl #16 | ||
123 | orrne ip, ip, ip, lsr #16 | ||
124 | strne ip, [r0] | ||
125 | |||
126 | ldmfd sp!, {r4, r5, r6, pc} | ||
diff --git a/arch/arm/lib/uaccess.S b/arch/arm/lib/uaccess.S new file mode 100644 index 000000000000..5c908b1cb8ed --- /dev/null +++ b/arch/arm/lib/uaccess.S | |||
@@ -0,0 +1,564 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/lib/uaccess.S | ||
3 | * | ||
4 | * Copyright (C) 1995, 1996,1997,1998 Russell King | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | * | ||
10 | * Routines to block copy data to/from user memory | ||
11 | * These are highly optimised both for the 4k page size | ||
12 | * and for various alignments. | ||
13 | */ | ||
14 | #include <linux/linkage.h> | ||
15 | #include <asm/assembler.h> | ||
16 | #include <asm/errno.h> | ||
17 | #include <asm/domain.h> | ||
18 | |||
19 | .text | ||
20 | |||
21 | #define PAGE_SHIFT 12 | ||
22 | |||
23 | /* Prototype: int __copy_to_user(void *to, const char *from, size_t n) | ||
24 | * Purpose : copy a block to user memory from kernel memory | ||
25 | * Params : to - user memory | ||
26 | * : from - kernel memory | ||
27 | * : n - number of bytes to copy | ||
28 | * Returns : Number of bytes NOT copied. | ||
29 | */ | ||
30 | |||
31 | .Lc2u_dest_not_aligned: | ||
32 | rsb ip, ip, #4 | ||
33 | cmp ip, #2 | ||
34 | ldrb r3, [r1], #1 | ||
35 | USER( TUSER( strb) r3, [r0], #1) @ May fault | ||
36 | ldrgeb r3, [r1], #1 | ||
37 | USER( TUSER( strgeb) r3, [r0], #1) @ May fault | ||
38 | ldrgtb r3, [r1], #1 | ||
39 | USER( TUSER( strgtb) r3, [r0], #1) @ May fault | ||
40 | sub r2, r2, ip | ||
41 | b .Lc2u_dest_aligned | ||
42 | |||
43 | ENTRY(__copy_to_user) | ||
44 | stmfd sp!, {r2, r4 - r7, lr} | ||
45 | cmp r2, #4 | ||
46 | blt .Lc2u_not_enough | ||
47 | ands ip, r0, #3 | ||
48 | bne .Lc2u_dest_not_aligned | ||
49 | .Lc2u_dest_aligned: | ||
50 | |||
51 | ands ip, r1, #3 | ||
52 | bne .Lc2u_src_not_aligned | ||
53 | /* | ||
54 | * Seeing as there has to be at least 8 bytes to copy, we can | ||
55 | * copy one word, and force a user-mode page fault... | ||
56 | */ | ||
57 | |||
58 | .Lc2u_0fupi: subs r2, r2, #4 | ||
59 | addmi ip, r2, #4 | ||
60 | bmi .Lc2u_0nowords | ||
61 | ldr r3, [r1], #4 | ||
62 | USER( TUSER( str) r3, [r0], #4) @ May fault | ||
63 | mov ip, r0, lsl #32 - PAGE_SHIFT @ On each page, use a ld/st??t instruction | ||
64 | rsb ip, ip, #0 | ||
65 | movs ip, ip, lsr #32 - PAGE_SHIFT | ||
66 | beq .Lc2u_0fupi | ||
67 | /* | ||
68 | * ip = max no. of bytes to copy before needing another "strt" insn | ||
69 | */ | ||
70 | cmp r2, ip | ||
71 | movlt ip, r2 | ||
72 | sub r2, r2, ip | ||
73 | subs ip, ip, #32 | ||
74 | blt .Lc2u_0rem8lp | ||
75 | |||
76 | .Lc2u_0cpy8lp: ldmia r1!, {r3 - r6} | ||
77 | stmia r0!, {r3 - r6} @ Shouldnt fault | ||
78 | ldmia r1!, {r3 - r6} | ||
79 | subs ip, ip, #32 | ||
80 | stmia r0!, {r3 - r6} @ Shouldnt fault | ||
81 | bpl .Lc2u_0cpy8lp | ||
82 | |||
83 | .Lc2u_0rem8lp: cmn ip, #16 | ||
84 | ldmgeia r1!, {r3 - r6} | ||
85 | stmgeia r0!, {r3 - r6} @ Shouldnt fault | ||
86 | tst ip, #8 | ||
87 | ldmneia r1!, {r3 - r4} | ||
88 | stmneia r0!, {r3 - r4} @ Shouldnt fault | ||
89 | tst ip, #4 | ||
90 | ldrne r3, [r1], #4 | ||
91 | TUSER( strne) r3, [r0], #4 @ Shouldnt fault | ||
92 | ands ip, ip, #3 | ||
93 | beq .Lc2u_0fupi | ||
94 | .Lc2u_0nowords: teq ip, #0 | ||
95 | beq .Lc2u_finished | ||
96 | .Lc2u_nowords: cmp ip, #2 | ||
97 | ldrb r3, [r1], #1 | ||
98 | USER( TUSER( strb) r3, [r0], #1) @ May fault | ||
99 | ldrgeb r3, [r1], #1 | ||
100 | USER( TUSER( strgeb) r3, [r0], #1) @ May fault | ||
101 | ldrgtb r3, [r1], #1 | ||
102 | USER( TUSER( strgtb) r3, [r0], #1) @ May fault | ||
103 | b .Lc2u_finished | ||
104 | |||
105 | .Lc2u_not_enough: | ||
106 | movs ip, r2 | ||
107 | bne .Lc2u_nowords | ||
108 | .Lc2u_finished: mov r0, #0 | ||
109 | ldmfd sp!, {r2, r4 - r7, pc} | ||
110 | |||
111 | .Lc2u_src_not_aligned: | ||
112 | bic r1, r1, #3 | ||
113 | ldr r7, [r1], #4 | ||
114 | cmp ip, #2 | ||
115 | bgt .Lc2u_3fupi | ||
116 | beq .Lc2u_2fupi | ||
117 | .Lc2u_1fupi: subs r2, r2, #4 | ||
118 | addmi ip, r2, #4 | ||
119 | bmi .Lc2u_1nowords | ||
120 | mov r3, r7, pull #8 | ||
121 | ldr r7, [r1], #4 | ||
122 | orr r3, r3, r7, push #24 | ||
123 | USER( TUSER( str) r3, [r0], #4) @ May fault | ||
124 | mov ip, r0, lsl #32 - PAGE_SHIFT | ||
125 | rsb ip, ip, #0 | ||
126 | movs ip, ip, lsr #32 - PAGE_SHIFT | ||
127 | beq .Lc2u_1fupi | ||
128 | cmp r2, ip | ||
129 | movlt ip, r2 | ||
130 | sub r2, r2, ip | ||
131 | subs ip, ip, #16 | ||
132 | blt .Lc2u_1rem8lp | ||
133 | |||
134 | .Lc2u_1cpy8lp: mov r3, r7, pull #8 | ||
135 | ldmia r1!, {r4 - r7} | ||
136 | subs ip, ip, #16 | ||
137 | orr r3, r3, r4, push #24 | ||
138 | mov r4, r4, pull #8 | ||
139 | orr r4, r4, r5, push #24 | ||
140 | mov r5, r5, pull #8 | ||
141 | orr r5, r5, r6, push #24 | ||
142 | mov r6, r6, pull #8 | ||
143 | orr r6, r6, r7, push #24 | ||
144 | stmia r0!, {r3 - r6} @ Shouldnt fault | ||
145 | bpl .Lc2u_1cpy8lp | ||
146 | |||
147 | .Lc2u_1rem8lp: tst ip, #8 | ||
148 | movne r3, r7, pull #8 | ||
149 | ldmneia r1!, {r4, r7} | ||
150 | orrne r3, r3, r4, push #24 | ||
151 | movne r4, r4, pull #8 | ||
152 | orrne r4, r4, r7, push #24 | ||
153 | stmneia r0!, {r3 - r4} @ Shouldnt fault | ||
154 | tst ip, #4 | ||
155 | movne r3, r7, pull #8 | ||
156 | ldrne r7, [r1], #4 | ||
157 | orrne r3, r3, r7, push #24 | ||
158 | TUSER( strne) r3, [r0], #4 @ Shouldnt fault | ||
159 | ands ip, ip, #3 | ||
160 | beq .Lc2u_1fupi | ||
161 | .Lc2u_1nowords: mov r3, r7, get_byte_1 | ||
162 | teq ip, #0 | ||
163 | beq .Lc2u_finished | ||
164 | cmp ip, #2 | ||
165 | USER( TUSER( strb) r3, [r0], #1) @ May fault | ||
166 | movge r3, r7, get_byte_2 | ||
167 | USER( TUSER( strgeb) r3, [r0], #1) @ May fault | ||
168 | movgt r3, r7, get_byte_3 | ||
169 | USER( TUSER( strgtb) r3, [r0], #1) @ May fault | ||
170 | b .Lc2u_finished | ||
171 | |||
172 | .Lc2u_2fupi: subs r2, r2, #4 | ||
173 | addmi ip, r2, #4 | ||
174 | bmi .Lc2u_2nowords | ||
175 | mov r3, r7, pull #16 | ||
176 | ldr r7, [r1], #4 | ||
177 | orr r3, r3, r7, push #16 | ||
178 | USER( TUSER( str) r3, [r0], #4) @ May fault | ||
179 | mov ip, r0, lsl #32 - PAGE_SHIFT | ||
180 | rsb ip, ip, #0 | ||
181 | movs ip, ip, lsr #32 - PAGE_SHIFT | ||
182 | beq .Lc2u_2fupi | ||
183 | cmp r2, ip | ||
184 | movlt ip, r2 | ||
185 | sub r2, r2, ip | ||
186 | subs ip, ip, #16 | ||
187 | blt .Lc2u_2rem8lp | ||
188 | |||
189 | .Lc2u_2cpy8lp: mov r3, r7, pull #16 | ||
190 | ldmia r1!, {r4 - r7} | ||
191 | subs ip, ip, #16 | ||
192 | orr r3, r3, r4, push #16 | ||
193 | mov r4, r4, pull #16 | ||
194 | orr r4, r4, r5, push #16 | ||
195 | mov r5, r5, pull #16 | ||
196 | orr r5, r5, r6, push #16 | ||
197 | mov r6, r6, pull #16 | ||
198 | orr r6, r6, r7, push #16 | ||
199 | stmia r0!, {r3 - r6} @ Shouldnt fault | ||
200 | bpl .Lc2u_2cpy8lp | ||
201 | |||
202 | .Lc2u_2rem8lp: tst ip, #8 | ||
203 | movne r3, r7, pull #16 | ||
204 | ldmneia r1!, {r4, r7} | ||
205 | orrne r3, r3, r4, push #16 | ||
206 | movne r4, r4, pull #16 | ||
207 | orrne r4, r4, r7, push #16 | ||
208 | stmneia r0!, {r3 - r4} @ Shouldnt fault | ||
209 | tst ip, #4 | ||
210 | movne r3, r7, pull #16 | ||
211 | ldrne r7, [r1], #4 | ||
212 | orrne r3, r3, r7, push #16 | ||
213 | TUSER( strne) r3, [r0], #4 @ Shouldnt fault | ||
214 | ands ip, ip, #3 | ||
215 | beq .Lc2u_2fupi | ||
216 | .Lc2u_2nowords: mov r3, r7, get_byte_2 | ||
217 | teq ip, #0 | ||
218 | beq .Lc2u_finished | ||
219 | cmp ip, #2 | ||
220 | USER( TUSER( strb) r3, [r0], #1) @ May fault | ||
221 | movge r3, r7, get_byte_3 | ||
222 | USER( TUSER( strgeb) r3, [r0], #1) @ May fault | ||
223 | ldrgtb r3, [r1], #0 | ||
224 | USER( TUSER( strgtb) r3, [r0], #1) @ May fault | ||
225 | b .Lc2u_finished | ||
226 | |||
227 | .Lc2u_3fupi: subs r2, r2, #4 | ||
228 | addmi ip, r2, #4 | ||
229 | bmi .Lc2u_3nowords | ||
230 | mov r3, r7, pull #24 | ||
231 | ldr r7, [r1], #4 | ||
232 | orr r3, r3, r7, push #8 | ||
233 | USER( TUSER( str) r3, [r0], #4) @ May fault | ||
234 | mov ip, r0, lsl #32 - PAGE_SHIFT | ||
235 | rsb ip, ip, #0 | ||
236 | movs ip, ip, lsr #32 - PAGE_SHIFT | ||
237 | beq .Lc2u_3fupi | ||
238 | cmp r2, ip | ||
239 | movlt ip, r2 | ||
240 | sub r2, r2, ip | ||
241 | subs ip, ip, #16 | ||
242 | blt .Lc2u_3rem8lp | ||
243 | |||
244 | .Lc2u_3cpy8lp: mov r3, r7, pull #24 | ||
245 | ldmia r1!, {r4 - r7} | ||
246 | subs ip, ip, #16 | ||
247 | orr r3, r3, r4, push #8 | ||
248 | mov r4, r4, pull #24 | ||
249 | orr r4, r4, r5, push #8 | ||
250 | mov r5, r5, pull #24 | ||
251 | orr r5, r5, r6, push #8 | ||
252 | mov r6, r6, pull #24 | ||
253 | orr r6, r6, r7, push #8 | ||
254 | stmia r0!, {r3 - r6} @ Shouldnt fault | ||
255 | bpl .Lc2u_3cpy8lp | ||
256 | |||
257 | .Lc2u_3rem8lp: tst ip, #8 | ||
258 | movne r3, r7, pull #24 | ||
259 | ldmneia r1!, {r4, r7} | ||
260 | orrne r3, r3, r4, push #8 | ||
261 | movne r4, r4, pull #24 | ||
262 | orrne r4, r4, r7, push #8 | ||
263 | stmneia r0!, {r3 - r4} @ Shouldnt fault | ||
264 | tst ip, #4 | ||
265 | movne r3, r7, pull #24 | ||
266 | ldrne r7, [r1], #4 | ||
267 | orrne r3, r3, r7, push #8 | ||
268 | TUSER( strne) r3, [r0], #4 @ Shouldnt fault | ||
269 | ands ip, ip, #3 | ||
270 | beq .Lc2u_3fupi | ||
271 | .Lc2u_3nowords: mov r3, r7, get_byte_3 | ||
272 | teq ip, #0 | ||
273 | beq .Lc2u_finished | ||
274 | cmp ip, #2 | ||
275 | USER( TUSER( strb) r3, [r0], #1) @ May fault | ||
276 | ldrgeb r3, [r1], #1 | ||
277 | USER( TUSER( strgeb) r3, [r0], #1) @ May fault | ||
278 | ldrgtb r3, [r1], #0 | ||
279 | USER( TUSER( strgtb) r3, [r0], #1) @ May fault | ||
280 | b .Lc2u_finished | ||
281 | ENDPROC(__copy_to_user) | ||
282 | |||
283 | .pushsection .fixup,"ax" | ||
284 | .align 0 | ||
285 | 9001: ldmfd sp!, {r0, r4 - r7, pc} | ||
286 | .popsection | ||
287 | |||
288 | /* Prototype: unsigned long __copy_from_user(void *to,const void *from,unsigned long n); | ||
289 | * Purpose : copy a block from user memory to kernel memory | ||
290 | * Params : to - kernel memory | ||
291 | * : from - user memory | ||
292 | * : n - number of bytes to copy | ||
293 | * Returns : Number of bytes NOT copied. | ||
294 | */ | ||
295 | .Lcfu_dest_not_aligned: | ||
296 | rsb ip, ip, #4 | ||
297 | cmp ip, #2 | ||
298 | USER( TUSER( ldrb) r3, [r1], #1) @ May fault | ||
299 | strb r3, [r0], #1 | ||
300 | USER( TUSER( ldrgeb) r3, [r1], #1) @ May fault | ||
301 | strgeb r3, [r0], #1 | ||
302 | USER( TUSER( ldrgtb) r3, [r1], #1) @ May fault | ||
303 | strgtb r3, [r0], #1 | ||
304 | sub r2, r2, ip | ||
305 | b .Lcfu_dest_aligned | ||
306 | |||
307 | ENTRY(__copy_from_user) | ||
308 | stmfd sp!, {r0, r2, r4 - r7, lr} | ||
309 | cmp r2, #4 | ||
310 | blt .Lcfu_not_enough | ||
311 | ands ip, r0, #3 | ||
312 | bne .Lcfu_dest_not_aligned | ||
313 | .Lcfu_dest_aligned: | ||
314 | ands ip, r1, #3 | ||
315 | bne .Lcfu_src_not_aligned | ||
316 | |||
317 | /* | ||
318 | * Seeing as there has to be at least 8 bytes to copy, we can | ||
319 | * copy one word, and force a user-mode page fault... | ||
320 | */ | ||
321 | |||
322 | .Lcfu_0fupi: subs r2, r2, #4 | ||
323 | addmi ip, r2, #4 | ||
324 | bmi .Lcfu_0nowords | ||
325 | USER( TUSER( ldr) r3, [r1], #4) | ||
326 | str r3, [r0], #4 | ||
327 | mov ip, r1, lsl #32 - PAGE_SHIFT @ On each page, use a ld/st??t instruction | ||
328 | rsb ip, ip, #0 | ||
329 | movs ip, ip, lsr #32 - PAGE_SHIFT | ||
330 | beq .Lcfu_0fupi | ||
331 | /* | ||
332 | * ip = max no. of bytes to copy before needing another "strt" insn | ||
333 | */ | ||
334 | cmp r2, ip | ||
335 | movlt ip, r2 | ||
336 | sub r2, r2, ip | ||
337 | subs ip, ip, #32 | ||
338 | blt .Lcfu_0rem8lp | ||
339 | |||
340 | .Lcfu_0cpy8lp: ldmia r1!, {r3 - r6} @ Shouldnt fault | ||
341 | stmia r0!, {r3 - r6} | ||
342 | ldmia r1!, {r3 - r6} @ Shouldnt fault | ||
343 | subs ip, ip, #32 | ||
344 | stmia r0!, {r3 - r6} | ||
345 | bpl .Lcfu_0cpy8lp | ||
346 | |||
347 | .Lcfu_0rem8lp: cmn ip, #16 | ||
348 | ldmgeia r1!, {r3 - r6} @ Shouldnt fault | ||
349 | stmgeia r0!, {r3 - r6} | ||
350 | tst ip, #8 | ||
351 | ldmneia r1!, {r3 - r4} @ Shouldnt fault | ||
352 | stmneia r0!, {r3 - r4} | ||
353 | tst ip, #4 | ||
354 | TUSER( ldrne) r3, [r1], #4 @ Shouldnt fault | ||
355 | strne r3, [r0], #4 | ||
356 | ands ip, ip, #3 | ||
357 | beq .Lcfu_0fupi | ||
358 | .Lcfu_0nowords: teq ip, #0 | ||
359 | beq .Lcfu_finished | ||
360 | .Lcfu_nowords: cmp ip, #2 | ||
361 | USER( TUSER( ldrb) r3, [r1], #1) @ May fault | ||
362 | strb r3, [r0], #1 | ||
363 | USER( TUSER( ldrgeb) r3, [r1], #1) @ May fault | ||
364 | strgeb r3, [r0], #1 | ||
365 | USER( TUSER( ldrgtb) r3, [r1], #1) @ May fault | ||
366 | strgtb r3, [r0], #1 | ||
367 | b .Lcfu_finished | ||
368 | |||
369 | .Lcfu_not_enough: | ||
370 | movs ip, r2 | ||
371 | bne .Lcfu_nowords | ||
372 | .Lcfu_finished: mov r0, #0 | ||
373 | add sp, sp, #8 | ||
374 | ldmfd sp!, {r4 - r7, pc} | ||
375 | |||
376 | .Lcfu_src_not_aligned: | ||
377 | bic r1, r1, #3 | ||
378 | USER( TUSER( ldr) r7, [r1], #4) @ May fault | ||
379 | cmp ip, #2 | ||
380 | bgt .Lcfu_3fupi | ||
381 | beq .Lcfu_2fupi | ||
382 | .Lcfu_1fupi: subs r2, r2, #4 | ||
383 | addmi ip, r2, #4 | ||
384 | bmi .Lcfu_1nowords | ||
385 | mov r3, r7, pull #8 | ||
386 | USER( TUSER( ldr) r7, [r1], #4) @ May fault | ||
387 | orr r3, r3, r7, push #24 | ||
388 | str r3, [r0], #4 | ||
389 | mov ip, r1, lsl #32 - PAGE_SHIFT | ||
390 | rsb ip, ip, #0 | ||
391 | movs ip, ip, lsr #32 - PAGE_SHIFT | ||
392 | beq .Lcfu_1fupi | ||
393 | cmp r2, ip | ||
394 | movlt ip, r2 | ||
395 | sub r2, r2, ip | ||
396 | subs ip, ip, #16 | ||
397 | blt .Lcfu_1rem8lp | ||
398 | |||
399 | .Lcfu_1cpy8lp: mov r3, r7, pull #8 | ||
400 | ldmia r1!, {r4 - r7} @ Shouldnt fault | ||
401 | subs ip, ip, #16 | ||
402 | orr r3, r3, r4, push #24 | ||
403 | mov r4, r4, pull #8 | ||
404 | orr r4, r4, r5, push #24 | ||
405 | mov r5, r5, pull #8 | ||
406 | orr r5, r5, r6, push #24 | ||
407 | mov r6, r6, pull #8 | ||
408 | orr r6, r6, r7, push #24 | ||
409 | stmia r0!, {r3 - r6} | ||
410 | bpl .Lcfu_1cpy8lp | ||
411 | |||
412 | .Lcfu_1rem8lp: tst ip, #8 | ||
413 | movne r3, r7, pull #8 | ||
414 | ldmneia r1!, {r4, r7} @ Shouldnt fault | ||
415 | orrne r3, r3, r4, push #24 | ||
416 | movne r4, r4, pull #8 | ||
417 | orrne r4, r4, r7, push #24 | ||
418 | stmneia r0!, {r3 - r4} | ||
419 | tst ip, #4 | ||
420 | movne r3, r7, pull #8 | ||
421 | USER( TUSER( ldrne) r7, [r1], #4) @ May fault | ||
422 | orrne r3, r3, r7, push #24 | ||
423 | strne r3, [r0], #4 | ||
424 | ands ip, ip, #3 | ||
425 | beq .Lcfu_1fupi | ||
426 | .Lcfu_1nowords: mov r3, r7, get_byte_1 | ||
427 | teq ip, #0 | ||
428 | beq .Lcfu_finished | ||
429 | cmp ip, #2 | ||
430 | strb r3, [r0], #1 | ||
431 | movge r3, r7, get_byte_2 | ||
432 | strgeb r3, [r0], #1 | ||
433 | movgt r3, r7, get_byte_3 | ||
434 | strgtb r3, [r0], #1 | ||
435 | b .Lcfu_finished | ||
436 | |||
437 | .Lcfu_2fupi: subs r2, r2, #4 | ||
438 | addmi ip, r2, #4 | ||
439 | bmi .Lcfu_2nowords | ||
440 | mov r3, r7, pull #16 | ||
441 | USER( TUSER( ldr) r7, [r1], #4) @ May fault | ||
442 | orr r3, r3, r7, push #16 | ||
443 | str r3, [r0], #4 | ||
444 | mov ip, r1, lsl #32 - PAGE_SHIFT | ||
445 | rsb ip, ip, #0 | ||
446 | movs ip, ip, lsr #32 - PAGE_SHIFT | ||
447 | beq .Lcfu_2fupi | ||
448 | cmp r2, ip | ||
449 | movlt ip, r2 | ||
450 | sub r2, r2, ip | ||
451 | subs ip, ip, #16 | ||
452 | blt .Lcfu_2rem8lp | ||
453 | |||
454 | |||
455 | .Lcfu_2cpy8lp: mov r3, r7, pull #16 | ||
456 | ldmia r1!, {r4 - r7} @ Shouldnt fault | ||
457 | subs ip, ip, #16 | ||
458 | orr r3, r3, r4, push #16 | ||
459 | mov r4, r4, pull #16 | ||
460 | orr r4, r4, r5, push #16 | ||
461 | mov r5, r5, pull #16 | ||
462 | orr r5, r5, r6, push #16 | ||
463 | mov r6, r6, pull #16 | ||
464 | orr r6, r6, r7, push #16 | ||
465 | stmia r0!, {r3 - r6} | ||
466 | bpl .Lcfu_2cpy8lp | ||
467 | |||
468 | .Lcfu_2rem8lp: tst ip, #8 | ||
469 | movne r3, r7, pull #16 | ||
470 | ldmneia r1!, {r4, r7} @ Shouldnt fault | ||
471 | orrne r3, r3, r4, push #16 | ||
472 | movne r4, r4, pull #16 | ||
473 | orrne r4, r4, r7, push #16 | ||
474 | stmneia r0!, {r3 - r4} | ||
475 | tst ip, #4 | ||
476 | movne r3, r7, pull #16 | ||
477 | USER( TUSER( ldrne) r7, [r1], #4) @ May fault | ||
478 | orrne r3, r3, r7, push #16 | ||
479 | strne r3, [r0], #4 | ||
480 | ands ip, ip, #3 | ||
481 | beq .Lcfu_2fupi | ||
482 | .Lcfu_2nowords: mov r3, r7, get_byte_2 | ||
483 | teq ip, #0 | ||
484 | beq .Lcfu_finished | ||
485 | cmp ip, #2 | ||
486 | strb r3, [r0], #1 | ||
487 | movge r3, r7, get_byte_3 | ||
488 | strgeb r3, [r0], #1 | ||
489 | USER( TUSER( ldrgtb) r3, [r1], #0) @ May fault | ||
490 | strgtb r3, [r0], #1 | ||
491 | b .Lcfu_finished | ||
492 | |||
493 | .Lcfu_3fupi: subs r2, r2, #4 | ||
494 | addmi ip, r2, #4 | ||
495 | bmi .Lcfu_3nowords | ||
496 | mov r3, r7, pull #24 | ||
497 | USER( TUSER( ldr) r7, [r1], #4) @ May fault | ||
498 | orr r3, r3, r7, push #8 | ||
499 | str r3, [r0], #4 | ||
500 | mov ip, r1, lsl #32 - PAGE_SHIFT | ||
501 | rsb ip, ip, #0 | ||
502 | movs ip, ip, lsr #32 - PAGE_SHIFT | ||
503 | beq .Lcfu_3fupi | ||
504 | cmp r2, ip | ||
505 | movlt ip, r2 | ||
506 | sub r2, r2, ip | ||
507 | subs ip, ip, #16 | ||
508 | blt .Lcfu_3rem8lp | ||
509 | |||
510 | .Lcfu_3cpy8lp: mov r3, r7, pull #24 | ||
511 | ldmia r1!, {r4 - r7} @ Shouldnt fault | ||
512 | orr r3, r3, r4, push #8 | ||
513 | mov r4, r4, pull #24 | ||
514 | orr r4, r4, r5, push #8 | ||
515 | mov r5, r5, pull #24 | ||
516 | orr r5, r5, r6, push #8 | ||
517 | mov r6, r6, pull #24 | ||
518 | orr r6, r6, r7, push #8 | ||
519 | stmia r0!, {r3 - r6} | ||
520 | subs ip, ip, #16 | ||
521 | bpl .Lcfu_3cpy8lp | ||
522 | |||
523 | .Lcfu_3rem8lp: tst ip, #8 | ||
524 | movne r3, r7, pull #24 | ||
525 | ldmneia r1!, {r4, r7} @ Shouldnt fault | ||
526 | orrne r3, r3, r4, push #8 | ||
527 | movne r4, r4, pull #24 | ||
528 | orrne r4, r4, r7, push #8 | ||
529 | stmneia r0!, {r3 - r4} | ||
530 | tst ip, #4 | ||
531 | movne r3, r7, pull #24 | ||
532 | USER( TUSER( ldrne) r7, [r1], #4) @ May fault | ||
533 | orrne r3, r3, r7, push #8 | ||
534 | strne r3, [r0], #4 | ||
535 | ands ip, ip, #3 | ||
536 | beq .Lcfu_3fupi | ||
537 | .Lcfu_3nowords: mov r3, r7, get_byte_3 | ||
538 | teq ip, #0 | ||
539 | beq .Lcfu_finished | ||
540 | cmp ip, #2 | ||
541 | strb r3, [r0], #1 | ||
542 | USER( TUSER( ldrgeb) r3, [r1], #1) @ May fault | ||
543 | strgeb r3, [r0], #1 | ||
544 | USER( TUSER( ldrgtb) r3, [r1], #1) @ May fault | ||
545 | strgtb r3, [r0], #1 | ||
546 | b .Lcfu_finished | ||
547 | ENDPROC(__copy_from_user) | ||
548 | |||
549 | .pushsection .fixup,"ax" | ||
550 | .align 0 | ||
551 | /* | ||
552 | * We took an exception. r0 contains a pointer to | ||
553 | * the byte not copied. | ||
554 | */ | ||
555 | 9001: ldr r2, [sp], #4 @ void *to | ||
556 | sub r2, r0, r2 @ bytes copied | ||
557 | ldr r1, [sp], #4 @ unsigned long count | ||
558 | subs r4, r1, r2 @ bytes left to copy | ||
559 | movne r1, r4 | ||
560 | blne __memzero | ||
561 | mov r0, r4 | ||
562 | ldmfd sp!, {r4 - r7, pc} | ||
563 | .popsection | ||
564 | |||
diff --git a/arch/arm/mach-davinci/board-neuros-osd2.c b/arch/arm/mach-davinci/board-neuros-osd2.c index 5de69f2fcca9..f6b9fc70161b 100644 --- a/arch/arm/mach-davinci/board-neuros-osd2.c +++ b/arch/arm/mach-davinci/board-neuros-osd2.c | |||
@@ -162,38 +162,6 @@ static void __init davinci_ntosd2_map_io(void) | |||
162 | dm644x_init(); | 162 | dm644x_init(); |
163 | } | 163 | } |
164 | 164 | ||
165 | /* | ||
166 | I2C initialization | ||
167 | */ | ||
168 | static struct davinci_i2c_platform_data ntosd2_i2c_pdata = { | ||
169 | .bus_freq = 20 /* kHz */, | ||
170 | .bus_delay = 100 /* usec */, | ||
171 | }; | ||
172 | |||
173 | static struct i2c_board_info __initdata ntosd2_i2c_info[] = { | ||
174 | }; | ||
175 | |||
176 | static int ntosd2_init_i2c(void) | ||
177 | { | ||
178 | int status; | ||
179 | |||
180 | davinci_init_i2c(&ntosd2_i2c_pdata); | ||
181 | status = gpio_request(NTOSD2_MSP430_IRQ, ntosd2_i2c_info[0].type); | ||
182 | if (status == 0) { | ||
183 | status = gpio_direction_input(NTOSD2_MSP430_IRQ); | ||
184 | if (status == 0) { | ||
185 | status = gpio_to_irq(NTOSD2_MSP430_IRQ); | ||
186 | if (status > 0) { | ||
187 | ntosd2_i2c_info[0].irq = status; | ||
188 | i2c_register_board_info(1, | ||
189 | ntosd2_i2c_info, | ||
190 | ARRAY_SIZE(ntosd2_i2c_info)); | ||
191 | } | ||
192 | } | ||
193 | } | ||
194 | return status; | ||
195 | } | ||
196 | |||
197 | static struct davinci_mmc_config davinci_ntosd2_mmc_config = { | 165 | static struct davinci_mmc_config davinci_ntosd2_mmc_config = { |
198 | .wires = 4, | 166 | .wires = 4, |
199 | .version = MMC_CTLR_VERSION_1 | 167 | .version = MMC_CTLR_VERSION_1 |
@@ -218,7 +186,6 @@ static __init void davinci_ntosd2_init(void) | |||
218 | { | 186 | { |
219 | struct clk *aemif_clk; | 187 | struct clk *aemif_clk; |
220 | struct davinci_soc_info *soc_info = &davinci_soc_info; | 188 | struct davinci_soc_info *soc_info = &davinci_soc_info; |
221 | int status; | ||
222 | 189 | ||
223 | aemif_clk = clk_get(NULL, "aemif"); | 190 | aemif_clk = clk_get(NULL, "aemif"); |
224 | clk_enable(aemif_clk); | 191 | clk_enable(aemif_clk); |
@@ -242,12 +209,6 @@ static __init void davinci_ntosd2_init(void) | |||
242 | platform_add_devices(davinci_ntosd2_devices, | 209 | platform_add_devices(davinci_ntosd2_devices, |
243 | ARRAY_SIZE(davinci_ntosd2_devices)); | 210 | ARRAY_SIZE(davinci_ntosd2_devices)); |
244 | 211 | ||
245 | /* Initialize I2C interface specific for this board */ | ||
246 | status = ntosd2_init_i2c(); | ||
247 | if (status < 0) | ||
248 | pr_warning("davinci_ntosd2_init: msp430 irq setup failed:" | ||
249 | " %d\n", status); | ||
250 | |||
251 | davinci_serial_init(&uart_config); | 212 | davinci_serial_init(&uart_config); |
252 | dm644x_init_asp(&dm644x_ntosd2_snd_data); | 213 | dm644x_init_asp(&dm644x_ntosd2_snd_data); |
253 | 214 | ||
diff --git a/arch/arm/mach-dove/common.c b/arch/arm/mach-dove/common.c index 4db5de54b6a7..6321567d8eaa 100644 --- a/arch/arm/mach-dove/common.c +++ b/arch/arm/mach-dove/common.c | |||
@@ -102,7 +102,8 @@ void __init dove_ehci1_init(void) | |||
102 | void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data) | 102 | void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data) |
103 | { | 103 | { |
104 | orion_ge00_init(eth_data, DOVE_GE00_PHYS_BASE, | 104 | orion_ge00_init(eth_data, DOVE_GE00_PHYS_BASE, |
105 | IRQ_DOVE_GE00_SUM, IRQ_DOVE_GE00_ERR); | 105 | IRQ_DOVE_GE00_SUM, IRQ_DOVE_GE00_ERR, |
106 | 1600); | ||
106 | } | 107 | } |
107 | 108 | ||
108 | /***************************************************************************** | 109 | /***************************************************************************** |
diff --git a/arch/arm/mach-exynos/mach-origen.c b/arch/arm/mach-exynos/mach-origen.c index 5ca80307d6d7..4e574c24581c 100644 --- a/arch/arm/mach-exynos/mach-origen.c +++ b/arch/arm/mach-exynos/mach-origen.c | |||
@@ -42,6 +42,7 @@ | |||
42 | #include <plat/backlight.h> | 42 | #include <plat/backlight.h> |
43 | #include <plat/fb.h> | 43 | #include <plat/fb.h> |
44 | #include <plat/mfc.h> | 44 | #include <plat/mfc.h> |
45 | #include <plat/hdmi.h> | ||
45 | 46 | ||
46 | #include <mach/ohci.h> | 47 | #include <mach/ohci.h> |
47 | #include <mach/map.h> | 48 | #include <mach/map.h> |
@@ -734,6 +735,11 @@ static void __init origen_bt_setup(void) | |||
734 | s3c_gpio_setpull(EXYNOS4_GPX2(2), S3C_GPIO_PULL_NONE); | 735 | s3c_gpio_setpull(EXYNOS4_GPX2(2), S3C_GPIO_PULL_NONE); |
735 | } | 736 | } |
736 | 737 | ||
738 | /* I2C module and id for HDMIPHY */ | ||
739 | static struct i2c_board_info hdmiphy_info = { | ||
740 | I2C_BOARD_INFO("hdmiphy-exynos4210", 0x38), | ||
741 | }; | ||
742 | |||
737 | static void s5p_tv_setup(void) | 743 | static void s5p_tv_setup(void) |
738 | { | 744 | { |
739 | /* Direct HPD to HDMI chip */ | 745 | /* Direct HPD to HDMI chip */ |
@@ -781,6 +787,7 @@ static void __init origen_machine_init(void) | |||
781 | 787 | ||
782 | s5p_tv_setup(); | 788 | s5p_tv_setup(); |
783 | s5p_i2c_hdmiphy_set_platdata(NULL); | 789 | s5p_i2c_hdmiphy_set_platdata(NULL); |
790 | s5p_hdmi_set_platdata(&hdmiphy_info, NULL, 0); | ||
784 | 791 | ||
785 | #ifdef CONFIG_DRM_EXYNOS | 792 | #ifdef CONFIG_DRM_EXYNOS |
786 | s5p_device_fimd0.dev.platform_data = &drm_fimd_pdata; | 793 | s5p_device_fimd0.dev.platform_data = &drm_fimd_pdata; |
diff --git a/arch/arm/mach-exynos/mach-smdkv310.c b/arch/arm/mach-exynos/mach-smdkv310.c index 3cfa688d274a..73f2bce097e1 100644 --- a/arch/arm/mach-exynos/mach-smdkv310.c +++ b/arch/arm/mach-exynos/mach-smdkv310.c | |||
@@ -40,6 +40,7 @@ | |||
40 | #include <plat/mfc.h> | 40 | #include <plat/mfc.h> |
41 | #include <plat/ehci.h> | 41 | #include <plat/ehci.h> |
42 | #include <plat/clock.h> | 42 | #include <plat/clock.h> |
43 | #include <plat/hdmi.h> | ||
43 | 44 | ||
44 | #include <mach/map.h> | 45 | #include <mach/map.h> |
45 | #include <mach/ohci.h> | 46 | #include <mach/ohci.h> |
@@ -354,6 +355,11 @@ static struct platform_pwm_backlight_data smdkv310_bl_data = { | |||
354 | .pwm_period_ns = 1000, | 355 | .pwm_period_ns = 1000, |
355 | }; | 356 | }; |
356 | 357 | ||
358 | /* I2C module and id for HDMIPHY */ | ||
359 | static struct i2c_board_info hdmiphy_info = { | ||
360 | I2C_BOARD_INFO("hdmiphy-exynos4210", 0x38), | ||
361 | }; | ||
362 | |||
357 | static void s5p_tv_setup(void) | 363 | static void s5p_tv_setup(void) |
358 | { | 364 | { |
359 | /* direct HPD to HDMI chip */ | 365 | /* direct HPD to HDMI chip */ |
@@ -388,6 +394,7 @@ static void __init smdkv310_machine_init(void) | |||
388 | 394 | ||
389 | s5p_tv_setup(); | 395 | s5p_tv_setup(); |
390 | s5p_i2c_hdmiphy_set_platdata(NULL); | 396 | s5p_i2c_hdmiphy_set_platdata(NULL); |
397 | s5p_hdmi_set_platdata(&hdmiphy_info, NULL, 0); | ||
391 | 398 | ||
392 | samsung_keypad_set_platdata(&smdkv310_keypad_data); | 399 | samsung_keypad_set_platdata(&smdkv310_keypad_data); |
393 | 400 | ||
diff --git a/arch/arm/mach-exynos/pm_domains.c b/arch/arm/mach-exynos/pm_domains.c index 373c3c00d24c..c0bc83a7663e 100644 --- a/arch/arm/mach-exynos/pm_domains.c +++ b/arch/arm/mach-exynos/pm_domains.c | |||
@@ -115,7 +115,7 @@ static __init int exynos_pm_dt_parse_domains(void) | |||
115 | } | 115 | } |
116 | #endif /* CONFIG_OF */ | 116 | #endif /* CONFIG_OF */ |
117 | 117 | ||
118 | static __init void exynos_pm_add_dev_to_genpd(struct platform_device *pdev, | 118 | static __init __maybe_unused void exynos_pm_add_dev_to_genpd(struct platform_device *pdev, |
119 | struct exynos_pm_domain *pd) | 119 | struct exynos_pm_domain *pd) |
120 | { | 120 | { |
121 | if (pdev->dev.bus) { | 121 | if (pdev->dev.bus) { |
diff --git a/arch/arm/mach-imx/Makefile b/arch/arm/mach-imx/Makefile index 07f7c226e4cf..d004d37ad9d8 100644 --- a/arch/arm/mach-imx/Makefile +++ b/arch/arm/mach-imx/Makefile | |||
@@ -9,7 +9,8 @@ obj-$(CONFIG_SOC_IMX27) += clk-imx27.o mm-imx27.o ehci-imx27.o | |||
9 | obj-$(CONFIG_SOC_IMX31) += mm-imx3.o cpu-imx31.o clk-imx31.o iomux-imx31.o ehci-imx31.o pm-imx3.o | 9 | obj-$(CONFIG_SOC_IMX31) += mm-imx3.o cpu-imx31.o clk-imx31.o iomux-imx31.o ehci-imx31.o pm-imx3.o |
10 | obj-$(CONFIG_SOC_IMX35) += mm-imx3.o cpu-imx35.o clk-imx35.o ehci-imx35.o pm-imx3.o | 10 | obj-$(CONFIG_SOC_IMX35) += mm-imx3.o cpu-imx35.o clk-imx35.o ehci-imx35.o pm-imx3.o |
11 | 11 | ||
12 | obj-$(CONFIG_SOC_IMX5) += cpu-imx5.o mm-imx5.o clk-imx51-imx53.o ehci-imx5.o pm-imx5.o cpu_op-mx51.o | 12 | imx5-pm-$(CONFIG_PM) += pm-imx5.o |
13 | obj-$(CONFIG_SOC_IMX5) += cpu-imx5.o mm-imx5.o clk-imx51-imx53.o ehci-imx5.o $(imx5-pm-y) cpu_op-mx51.o | ||
13 | 14 | ||
14 | obj-$(CONFIG_COMMON_CLK) += clk-pllv1.o clk-pllv2.o clk-pllv3.o clk-gate2.o \ | 15 | obj-$(CONFIG_COMMON_CLK) += clk-pllv1.o clk-pllv2.o clk-pllv3.o clk-gate2.o \ |
15 | clk-pfd.o clk-busy.o | 16 | clk-pfd.o clk-busy.o |
@@ -70,14 +71,13 @@ obj-$(CONFIG_DEBUG_LL) += lluart.o | |||
70 | obj-$(CONFIG_HAVE_IMX_GPC) += gpc.o | 71 | obj-$(CONFIG_HAVE_IMX_GPC) += gpc.o |
71 | obj-$(CONFIG_HAVE_IMX_MMDC) += mmdc.o | 72 | obj-$(CONFIG_HAVE_IMX_MMDC) += mmdc.o |
72 | obj-$(CONFIG_HAVE_IMX_SRC) += src.o | 73 | obj-$(CONFIG_HAVE_IMX_SRC) += src.o |
73 | obj-$(CONFIG_CPU_V7) += head-v7.o | 74 | AFLAGS_headsmp.o :=-Wa,-march=armv7-a |
74 | AFLAGS_head-v7.o :=-Wa,-march=armv7-a | 75 | obj-$(CONFIG_SMP) += headsmp.o platsmp.o |
75 | obj-$(CONFIG_SMP) += platsmp.o | ||
76 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o | 76 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o |
77 | obj-$(CONFIG_SOC_IMX6Q) += clk-imx6q.o mach-imx6q.o | 77 | obj-$(CONFIG_SOC_IMX6Q) += clk-imx6q.o mach-imx6q.o |
78 | 78 | ||
79 | ifeq ($(CONFIG_PM),y) | 79 | ifeq ($(CONFIG_PM),y) |
80 | obj-$(CONFIG_SOC_IMX6Q) += pm-imx6q.o | 80 | obj-$(CONFIG_SOC_IMX6Q) += pm-imx6q.o headsmp.o |
81 | endif | 81 | endif |
82 | 82 | ||
83 | # i.MX5 based machines | 83 | # i.MX5 based machines |
diff --git a/arch/arm/mach-imx/clk-imx27.c b/arch/arm/mach-imx/clk-imx27.c index 7aa6313fb167..f69ca4680049 100644 --- a/arch/arm/mach-imx/clk-imx27.c +++ b/arch/arm/mach-imx/clk-imx27.c | |||
@@ -223,7 +223,7 @@ int __init mx27_clocks_init(unsigned long fref) | |||
223 | clk_register_clkdev(clk[per3_gate], "per", "imx-fb.0"); | 223 | clk_register_clkdev(clk[per3_gate], "per", "imx-fb.0"); |
224 | clk_register_clkdev(clk[lcdc_ipg_gate], "ipg", "imx-fb.0"); | 224 | clk_register_clkdev(clk[lcdc_ipg_gate], "ipg", "imx-fb.0"); |
225 | clk_register_clkdev(clk[lcdc_ahb_gate], "ahb", "imx-fb.0"); | 225 | clk_register_clkdev(clk[lcdc_ahb_gate], "ahb", "imx-fb.0"); |
226 | clk_register_clkdev(clk[csi_ahb_gate], NULL, "mx2-camera.0"); | 226 | clk_register_clkdev(clk[csi_ahb_gate], "ahb", "mx2-camera.0"); |
227 | clk_register_clkdev(clk[usb_div], "per", "fsl-usb2-udc"); | 227 | clk_register_clkdev(clk[usb_div], "per", "fsl-usb2-udc"); |
228 | clk_register_clkdev(clk[usb_ipg_gate], "ipg", "fsl-usb2-udc"); | 228 | clk_register_clkdev(clk[usb_ipg_gate], "ipg", "fsl-usb2-udc"); |
229 | clk_register_clkdev(clk[usb_ahb_gate], "ahb", "fsl-usb2-udc"); | 229 | clk_register_clkdev(clk[usb_ahb_gate], "ahb", "fsl-usb2-udc"); |
@@ -250,8 +250,10 @@ int __init mx27_clocks_init(unsigned long fref) | |||
250 | clk_register_clkdev(clk[i2c2_ipg_gate], NULL, "imx-i2c.1"); | 250 | clk_register_clkdev(clk[i2c2_ipg_gate], NULL, "imx-i2c.1"); |
251 | clk_register_clkdev(clk[owire_ipg_gate], NULL, "mxc_w1.0"); | 251 | clk_register_clkdev(clk[owire_ipg_gate], NULL, "mxc_w1.0"); |
252 | clk_register_clkdev(clk[kpp_ipg_gate], NULL, "imx-keypad"); | 252 | clk_register_clkdev(clk[kpp_ipg_gate], NULL, "imx-keypad"); |
253 | clk_register_clkdev(clk[emma_ahb_gate], "ahb", "imx-emma"); | 253 | clk_register_clkdev(clk[emma_ahb_gate], "emma-ahb", "mx2-camera.0"); |
254 | clk_register_clkdev(clk[emma_ipg_gate], "ipg", "imx-emma"); | 254 | clk_register_clkdev(clk[emma_ipg_gate], "emma-ipg", "mx2-camera.0"); |
255 | clk_register_clkdev(clk[emma_ahb_gate], "ahb", "m2m-emmaprp.0"); | ||
256 | clk_register_clkdev(clk[emma_ipg_gate], "ipg", "m2m-emmaprp.0"); | ||
255 | clk_register_clkdev(clk[iim_ipg_gate], "iim", NULL); | 257 | clk_register_clkdev(clk[iim_ipg_gate], "iim", NULL); |
256 | clk_register_clkdev(clk[gpio_ipg_gate], "gpio", NULL); | 258 | clk_register_clkdev(clk[gpio_ipg_gate], "gpio", NULL); |
257 | clk_register_clkdev(clk[brom_ahb_gate], "brom", NULL); | 259 | clk_register_clkdev(clk[brom_ahb_gate], "brom", NULL); |
diff --git a/arch/arm/mach-imx/clk-imx31.c b/arch/arm/mach-imx/clk-imx31.c index 8e19e70f90f9..1253af2d9971 100644 --- a/arch/arm/mach-imx/clk-imx31.c +++ b/arch/arm/mach-imx/clk-imx31.c | |||
@@ -130,7 +130,7 @@ int __init mx31_clocks_init(unsigned long fref) | |||
130 | clk_register_clkdev(clk[nfc], NULL, "mxc_nand.0"); | 130 | clk_register_clkdev(clk[nfc], NULL, "mxc_nand.0"); |
131 | clk_register_clkdev(clk[ipu_gate], NULL, "ipu-core"); | 131 | clk_register_clkdev(clk[ipu_gate], NULL, "ipu-core"); |
132 | clk_register_clkdev(clk[ipu_gate], NULL, "mx3_sdc_fb"); | 132 | clk_register_clkdev(clk[ipu_gate], NULL, "mx3_sdc_fb"); |
133 | clk_register_clkdev(clk[kpp_gate], "kpp", NULL); | 133 | clk_register_clkdev(clk[kpp_gate], NULL, "imx-keypad"); |
134 | clk_register_clkdev(clk[usb_div_post], "per", "mxc-ehci.0"); | 134 | clk_register_clkdev(clk[usb_div_post], "per", "mxc-ehci.0"); |
135 | clk_register_clkdev(clk[usb_gate], "ahb", "mxc-ehci.0"); | 135 | clk_register_clkdev(clk[usb_gate], "ahb", "mxc-ehci.0"); |
136 | clk_register_clkdev(clk[ipg], "ipg", "mxc-ehci.0"); | 136 | clk_register_clkdev(clk[ipg], "ipg", "mxc-ehci.0"); |
diff --git a/arch/arm/mach-imx/clk-imx51-imx53.c b/arch/arm/mach-imx/clk-imx51-imx53.c index f6086693ebd2..4bdcaa97bd98 100644 --- a/arch/arm/mach-imx/clk-imx51-imx53.c +++ b/arch/arm/mach-imx/clk-imx51-imx53.c | |||
@@ -303,6 +303,7 @@ static void __init mx5_clocks_common_init(unsigned long rate_ckil, | |||
303 | clk_prepare_enable(clk[aips_tz2]); /* fec */ | 303 | clk_prepare_enable(clk[aips_tz2]); /* fec */ |
304 | clk_prepare_enable(clk[spba]); | 304 | clk_prepare_enable(clk[spba]); |
305 | clk_prepare_enable(clk[emi_fast_gate]); /* fec */ | 305 | clk_prepare_enable(clk[emi_fast_gate]); /* fec */ |
306 | clk_prepare_enable(clk[emi_slow_gate]); /* eim */ | ||
306 | clk_prepare_enable(clk[tmax1]); | 307 | clk_prepare_enable(clk[tmax1]); |
307 | clk_prepare_enable(clk[tmax2]); /* esdhc2, fec */ | 308 | clk_prepare_enable(clk[tmax2]); /* esdhc2, fec */ |
308 | clk_prepare_enable(clk[tmax3]); /* esdhc1, esdhc4 */ | 309 | clk_prepare_enable(clk[tmax3]); /* esdhc1, esdhc4 */ |
diff --git a/arch/arm/mach-imx/clk-imx6q.c b/arch/arm/mach-imx/clk-imx6q.c index ea89520b6e22..4233d9e3531d 100644 --- a/arch/arm/mach-imx/clk-imx6q.c +++ b/arch/arm/mach-imx/clk-imx6q.c | |||
@@ -152,7 +152,7 @@ enum mx6q_clks { | |||
152 | ssi2, ssi3, uart_ipg, uart_serial, usboh3, usdhc1, usdhc2, usdhc3, | 152 | ssi2, ssi3, uart_ipg, uart_serial, usboh3, usdhc1, usdhc2, usdhc3, |
153 | usdhc4, vdo_axi, vpu_axi, cko1, pll1_sys, pll2_bus, pll3_usb_otg, | 153 | usdhc4, vdo_axi, vpu_axi, cko1, pll1_sys, pll2_bus, pll3_usb_otg, |
154 | pll4_audio, pll5_video, pll6_mlb, pll7_usb_host, pll8_enet, ssi1_ipg, | 154 | pll4_audio, pll5_video, pll6_mlb, pll7_usb_host, pll8_enet, ssi1_ipg, |
155 | ssi2_ipg, ssi3_ipg, rom, usbphy1, usbphy2, | 155 | ssi2_ipg, ssi3_ipg, rom, usbphy1, usbphy2, ldb_di0_div_3_5, ldb_di1_div_3_5, |
156 | clk_max | 156 | clk_max |
157 | }; | 157 | }; |
158 | 158 | ||
@@ -288,8 +288,10 @@ int __init mx6q_clocks_init(void) | |||
288 | clk[gpu3d_shader] = imx_clk_divider("gpu3d_shader", "gpu3d_shader_sel", base + 0x18, 29, 3); | 288 | clk[gpu3d_shader] = imx_clk_divider("gpu3d_shader", "gpu3d_shader_sel", base + 0x18, 29, 3); |
289 | clk[ipu1_podf] = imx_clk_divider("ipu1_podf", "ipu1_sel", base + 0x3c, 11, 3); | 289 | clk[ipu1_podf] = imx_clk_divider("ipu1_podf", "ipu1_sel", base + 0x3c, 11, 3); |
290 | clk[ipu2_podf] = imx_clk_divider("ipu2_podf", "ipu2_sel", base + 0x3c, 16, 3); | 290 | clk[ipu2_podf] = imx_clk_divider("ipu2_podf", "ipu2_sel", base + 0x3c, 16, 3); |
291 | clk[ldb_di0_podf] = imx_clk_divider("ldb_di0_podf", "ldb_di0_sel", base + 0x20, 10, 1); | 291 | clk[ldb_di0_div_3_5] = imx_clk_fixed_factor("ldb_di0_div_3_5", "ldb_di0_sel", 2, 7); |
292 | clk[ldb_di1_podf] = imx_clk_divider("ldb_di1_podf", "ldb_di1_sel", base + 0x20, 11, 1); | 292 | clk[ldb_di0_podf] = imx_clk_divider("ldb_di0_podf", "ldb_di0_div_3_5", base + 0x20, 10, 1); |
293 | clk[ldb_di1_div_3_5] = imx_clk_fixed_factor("ldb_di1_div_3_5", "ldb_di1_sel", 2, 7); | ||
294 | clk[ldb_di1_podf] = imx_clk_divider("ldb_di1_podf", "ldb_di1_div_3_5", base + 0x20, 11, 1); | ||
293 | clk[ipu1_di0_pre] = imx_clk_divider("ipu1_di0_pre", "ipu1_di0_pre_sel", base + 0x34, 3, 3); | 295 | clk[ipu1_di0_pre] = imx_clk_divider("ipu1_di0_pre", "ipu1_di0_pre_sel", base + 0x34, 3, 3); |
294 | clk[ipu1_di1_pre] = imx_clk_divider("ipu1_di1_pre", "ipu1_di1_pre_sel", base + 0x34, 12, 3); | 296 | clk[ipu1_di1_pre] = imx_clk_divider("ipu1_di1_pre", "ipu1_di1_pre_sel", base + 0x34, 12, 3); |
295 | clk[ipu2_di0_pre] = imx_clk_divider("ipu2_di0_pre", "ipu2_di0_pre_sel", base + 0x38, 3, 3); | 297 | clk[ipu2_di0_pre] = imx_clk_divider("ipu2_di0_pre", "ipu2_di0_pre_sel", base + 0x38, 3, 3); |
diff --git a/arch/arm/mach-imx/head-v7.S b/arch/arm/mach-imx/headsmp.S index 7e49deb128a4..7e49deb128a4 100644 --- a/arch/arm/mach-imx/head-v7.S +++ b/arch/arm/mach-imx/headsmp.S | |||
diff --git a/arch/arm/mach-imx/hotplug.c b/arch/arm/mach-imx/hotplug.c index 20ed2d56c1af..f8f7437c83b8 100644 --- a/arch/arm/mach-imx/hotplug.c +++ b/arch/arm/mach-imx/hotplug.c | |||
@@ -42,22 +42,6 @@ static inline void cpu_enter_lowpower(void) | |||
42 | : "cc"); | 42 | : "cc"); |
43 | } | 43 | } |
44 | 44 | ||
45 | static inline void cpu_leave_lowpower(void) | ||
46 | { | ||
47 | unsigned int v; | ||
48 | |||
49 | asm volatile( | ||
50 | "mrc p15, 0, %0, c1, c0, 0\n" | ||
51 | " orr %0, %0, %1\n" | ||
52 | " mcr p15, 0, %0, c1, c0, 0\n" | ||
53 | " mrc p15, 0, %0, c1, c0, 1\n" | ||
54 | " orr %0, %0, %2\n" | ||
55 | " mcr p15, 0, %0, c1, c0, 1\n" | ||
56 | : "=&r" (v) | ||
57 | : "Ir" (CR_C), "Ir" (0x40) | ||
58 | : "cc"); | ||
59 | } | ||
60 | |||
61 | /* | 45 | /* |
62 | * platform-specific code to shutdown a CPU | 46 | * platform-specific code to shutdown a CPU |
63 | * | 47 | * |
@@ -67,11 +51,10 @@ void platform_cpu_die(unsigned int cpu) | |||
67 | { | 51 | { |
68 | cpu_enter_lowpower(); | 52 | cpu_enter_lowpower(); |
69 | imx_enable_cpu(cpu, false); | 53 | imx_enable_cpu(cpu, false); |
70 | cpu_do_idle(); | ||
71 | cpu_leave_lowpower(); | ||
72 | 54 | ||
73 | /* We should never return from idle */ | 55 | /* spin here until hardware takes it down */ |
74 | panic("cpu %d unexpectedly exit from shutdown\n", cpu); | 56 | while (1) |
57 | ; | ||
75 | } | 58 | } |
76 | 59 | ||
77 | int platform_cpu_disable(unsigned int cpu) | 60 | int platform_cpu_disable(unsigned int cpu) |
diff --git a/arch/arm/mach-imx/mach-imx6q.c b/arch/arm/mach-imx/mach-imx6q.c index 5ec0608f2a76..045b3f6a387d 100644 --- a/arch/arm/mach-imx/mach-imx6q.c +++ b/arch/arm/mach-imx/mach-imx6q.c | |||
@@ -71,7 +71,7 @@ soft: | |||
71 | /* For imx6q sabrelite board: set KSZ9021RN RGMII pad skew */ | 71 | /* For imx6q sabrelite board: set KSZ9021RN RGMII pad skew */ |
72 | static int ksz9021rn_phy_fixup(struct phy_device *phydev) | 72 | static int ksz9021rn_phy_fixup(struct phy_device *phydev) |
73 | { | 73 | { |
74 | if (IS_ENABLED(CONFIG_PHYLIB)) { | 74 | if (IS_BUILTIN(CONFIG_PHYLIB)) { |
75 | /* min rx data delay */ | 75 | /* min rx data delay */ |
76 | phy_write(phydev, 0x0b, 0x8105); | 76 | phy_write(phydev, 0x0b, 0x8105); |
77 | phy_write(phydev, 0x0c, 0x0000); | 77 | phy_write(phydev, 0x0c, 0x0000); |
@@ -112,7 +112,7 @@ put_clk: | |||
112 | 112 | ||
113 | static void __init imx6q_sabrelite_init(void) | 113 | static void __init imx6q_sabrelite_init(void) |
114 | { | 114 | { |
115 | if (IS_ENABLED(CONFIG_PHYLIB)) | 115 | if (IS_BUILTIN(CONFIG_PHYLIB)) |
116 | phy_register_fixup_for_uid(PHY_ID_KSZ9021, MICREL_PHY_ID_MASK, | 116 | phy_register_fixup_for_uid(PHY_ID_KSZ9021, MICREL_PHY_ID_MASK, |
117 | ksz9021rn_phy_fixup); | 117 | ksz9021rn_phy_fixup); |
118 | imx6q_sabrelite_cko1_setup(); | 118 | imx6q_sabrelite_cko1_setup(); |
diff --git a/arch/arm/mach-integrator/core.c b/arch/arm/mach-integrator/core.c index 208c05d9e685..2af5034ea29e 100644 --- a/arch/arm/mach-integrator/core.c +++ b/arch/arm/mach-integrator/core.c | |||
@@ -11,6 +11,7 @@ | |||
11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | #include <linux/device.h> | 13 | #include <linux/device.h> |
14 | #include <linux/export.h> | ||
14 | #include <linux/spinlock.h> | 15 | #include <linux/spinlock.h> |
15 | #include <linux/interrupt.h> | 16 | #include <linux/interrupt.h> |
16 | #include <linux/irq.h> | 17 | #include <linux/irq.h> |
diff --git a/arch/arm/mach-integrator/integrator_ap.c b/arch/arm/mach-integrator/integrator_ap.c index 7b1055c8e0b9..3b2267529f5e 100644 --- a/arch/arm/mach-integrator/integrator_ap.c +++ b/arch/arm/mach-integrator/integrator_ap.c | |||
@@ -456,7 +456,7 @@ static void __init ap_init_timer(void) | |||
456 | 456 | ||
457 | clk = clk_get_sys("ap_timer", NULL); | 457 | clk = clk_get_sys("ap_timer", NULL); |
458 | BUG_ON(IS_ERR(clk)); | 458 | BUG_ON(IS_ERR(clk)); |
459 | clk_enable(clk); | 459 | clk_prepare_enable(clk); |
460 | rate = clk_get_rate(clk); | 460 | rate = clk_get_rate(clk); |
461 | 461 | ||
462 | writel(0, TIMER0_VA_BASE + TIMER_CTRL); | 462 | writel(0, TIMER0_VA_BASE + TIMER_CTRL); |
diff --git a/arch/arm/mach-kirkwood/Makefile.boot b/arch/arm/mach-kirkwood/Makefile.boot index 2a576abf409b..a13299d758e1 100644 --- a/arch/arm/mach-kirkwood/Makefile.boot +++ b/arch/arm/mach-kirkwood/Makefile.boot | |||
@@ -7,7 +7,8 @@ dtb-$(CONFIG_MACH_DLINK_KIRKWOOD_DT) += kirkwood-dns320.dtb | |||
7 | dtb-$(CONFIG_MACH_DLINK_KIRKWOOD_DT) += kirkwood-dns325.dtb | 7 | dtb-$(CONFIG_MACH_DLINK_KIRKWOOD_DT) += kirkwood-dns325.dtb |
8 | dtb-$(CONFIG_MACH_ICONNECT_DT) += kirkwood-iconnect.dtb | 8 | dtb-$(CONFIG_MACH_ICONNECT_DT) += kirkwood-iconnect.dtb |
9 | dtb-$(CONFIG_MACH_IB62X0_DT) += kirkwood-ib62x0.dtb | 9 | dtb-$(CONFIG_MACH_IB62X0_DT) += kirkwood-ib62x0.dtb |
10 | dtb-$(CONFIG_MACH_TS219_DT) += kirkwood-qnap-ts219.dtb | 10 | dtb-$(CONFIG_MACH_TS219_DT) += kirkwood-ts219-6281.dtb |
11 | dtb-$(CONFIG_MACH_TS219_DT) += kirkwood-ts219-6282.dtb | ||
11 | dtb-$(CONFIG_MACH_GOFLEXNET_DT) += kirkwood-goflexnet.dtb | 12 | dtb-$(CONFIG_MACH_GOFLEXNET_DT) += kirkwood-goflexnet.dtb |
12 | dbt-$(CONFIG_MACH_LSXL_DT) += kirkwood-lschlv2.dtb | 13 | dtb-$(CONFIG_MACH_LSXL_DT) += kirkwood-lschlv2.dtb |
13 | dbt-$(CONFIG_MACH_LSXL_DT) += kirkwood-lsxhl.dtb | 14 | dtb-$(CONFIG_MACH_LSXL_DT) += kirkwood-lsxhl.dtb |
diff --git a/arch/arm/mach-kirkwood/common.c b/arch/arm/mach-kirkwood/common.c index c4b64adcbfce..3226077735b1 100644 --- a/arch/arm/mach-kirkwood/common.c +++ b/arch/arm/mach-kirkwood/common.c | |||
@@ -301,7 +301,7 @@ void __init kirkwood_ge00_init(struct mv643xx_eth_platform_data *eth_data) | |||
301 | { | 301 | { |
302 | orion_ge00_init(eth_data, | 302 | orion_ge00_init(eth_data, |
303 | GE00_PHYS_BASE, IRQ_KIRKWOOD_GE00_SUM, | 303 | GE00_PHYS_BASE, IRQ_KIRKWOOD_GE00_SUM, |
304 | IRQ_KIRKWOOD_GE00_ERR); | 304 | IRQ_KIRKWOOD_GE00_ERR, 1600); |
305 | /* The interface forgets the MAC address assigned by u-boot if | 305 | /* The interface forgets the MAC address assigned by u-boot if |
306 | the clock is turned off, so claim the clk now. */ | 306 | the clock is turned off, so claim the clk now. */ |
307 | clk_prepare_enable(ge0); | 307 | clk_prepare_enable(ge0); |
@@ -315,7 +315,7 @@ void __init kirkwood_ge01_init(struct mv643xx_eth_platform_data *eth_data) | |||
315 | { | 315 | { |
316 | orion_ge01_init(eth_data, | 316 | orion_ge01_init(eth_data, |
317 | GE01_PHYS_BASE, IRQ_KIRKWOOD_GE01_SUM, | 317 | GE01_PHYS_BASE, IRQ_KIRKWOOD_GE01_SUM, |
318 | IRQ_KIRKWOOD_GE01_ERR); | 318 | IRQ_KIRKWOOD_GE01_ERR, 1600); |
319 | clk_prepare_enable(ge1); | 319 | clk_prepare_enable(ge1); |
320 | } | 320 | } |
321 | 321 | ||
diff --git a/arch/arm/mach-mmp/sram.c b/arch/arm/mach-mmp/sram.c index 4304f9519372..7e8a5a2e1ec7 100644 --- a/arch/arm/mach-mmp/sram.c +++ b/arch/arm/mach-mmp/sram.c | |||
@@ -68,7 +68,7 @@ static int __devinit sram_probe(struct platform_device *pdev) | |||
68 | struct resource *res; | 68 | struct resource *res; |
69 | int ret = 0; | 69 | int ret = 0; |
70 | 70 | ||
71 | if (!pdata && !pdata->pool_name) | 71 | if (!pdata || !pdata->pool_name) |
72 | return -ENODEV; | 72 | return -ENODEV; |
73 | 73 | ||
74 | info = kzalloc(sizeof(*info), GFP_KERNEL); | 74 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
diff --git a/arch/arm/mach-mv78xx0/addr-map.c b/arch/arm/mach-mv78xx0/addr-map.c index 62b53d710efd..a9bc84180d21 100644 --- a/arch/arm/mach-mv78xx0/addr-map.c +++ b/arch/arm/mach-mv78xx0/addr-map.c | |||
@@ -37,7 +37,7 @@ | |||
37 | #define WIN0_OFF(n) (BRIDGE_VIRT_BASE + 0x0000 + ((n) << 4)) | 37 | #define WIN0_OFF(n) (BRIDGE_VIRT_BASE + 0x0000 + ((n) << 4)) |
38 | #define WIN8_OFF(n) (BRIDGE_VIRT_BASE + 0x0900 + (((n) - 8) << 4)) | 38 | #define WIN8_OFF(n) (BRIDGE_VIRT_BASE + 0x0900 + (((n) - 8) << 4)) |
39 | 39 | ||
40 | static void __init __iomem *win_cfg_base(int win) | 40 | static void __init __iomem *win_cfg_base(const struct orion_addr_map_cfg *cfg, int win) |
41 | { | 41 | { |
42 | /* | 42 | /* |
43 | * Find the control register base address for this window. | 43 | * Find the control register base address for this window. |
diff --git a/arch/arm/mach-mv78xx0/common.c b/arch/arm/mach-mv78xx0/common.c index b4c53b846c9c..3057f7d4329a 100644 --- a/arch/arm/mach-mv78xx0/common.c +++ b/arch/arm/mach-mv78xx0/common.c | |||
@@ -213,7 +213,8 @@ void __init mv78xx0_ge00_init(struct mv643xx_eth_platform_data *eth_data) | |||
213 | { | 213 | { |
214 | orion_ge00_init(eth_data, | 214 | orion_ge00_init(eth_data, |
215 | GE00_PHYS_BASE, IRQ_MV78XX0_GE00_SUM, | 215 | GE00_PHYS_BASE, IRQ_MV78XX0_GE00_SUM, |
216 | IRQ_MV78XX0_GE_ERR); | 216 | IRQ_MV78XX0_GE_ERR, |
217 | MV643XX_TX_CSUM_DEFAULT_LIMIT); | ||
217 | } | 218 | } |
218 | 219 | ||
219 | 220 | ||
@@ -224,7 +225,8 @@ void __init mv78xx0_ge01_init(struct mv643xx_eth_platform_data *eth_data) | |||
224 | { | 225 | { |
225 | orion_ge01_init(eth_data, | 226 | orion_ge01_init(eth_data, |
226 | GE01_PHYS_BASE, IRQ_MV78XX0_GE01_SUM, | 227 | GE01_PHYS_BASE, IRQ_MV78XX0_GE01_SUM, |
227 | NO_IRQ); | 228 | NO_IRQ, |
229 | MV643XX_TX_CSUM_DEFAULT_LIMIT); | ||
228 | } | 230 | } |
229 | 231 | ||
230 | 232 | ||
diff --git a/arch/arm/mach-mxs/Kconfig b/arch/arm/mach-mxs/Kconfig index ccdf83b17cf1..9a8bbda195b2 100644 --- a/arch/arm/mach-mxs/Kconfig +++ b/arch/arm/mach-mxs/Kconfig | |||
@@ -2,9 +2,6 @@ if ARCH_MXS | |||
2 | 2 | ||
3 | source "arch/arm/mach-mxs/devices/Kconfig" | 3 | source "arch/arm/mach-mxs/devices/Kconfig" |
4 | 4 | ||
5 | config MXS_OCOTP | ||
6 | bool | ||
7 | |||
8 | config SOC_IMX23 | 5 | config SOC_IMX23 |
9 | bool | 6 | bool |
10 | select ARM_AMBA | 7 | select ARM_AMBA |
@@ -66,7 +63,6 @@ config MACH_MX28EVK | |||
66 | select MXS_HAVE_PLATFORM_MXS_SAIF | 63 | select MXS_HAVE_PLATFORM_MXS_SAIF |
67 | select MXS_HAVE_PLATFORM_MXS_I2C | 64 | select MXS_HAVE_PLATFORM_MXS_I2C |
68 | select MXS_HAVE_PLATFORM_RTC_STMP3XXX | 65 | select MXS_HAVE_PLATFORM_RTC_STMP3XXX |
69 | select MXS_OCOTP | ||
70 | help | 66 | help |
71 | Include support for MX28EVK platform. This includes specific | 67 | Include support for MX28EVK platform. This includes specific |
72 | configurations for the board and its peripherals. | 68 | configurations for the board and its peripherals. |
@@ -94,7 +90,6 @@ config MODULE_M28 | |||
94 | select MXS_HAVE_PLATFORM_MXS_I2C | 90 | select MXS_HAVE_PLATFORM_MXS_I2C |
95 | select MXS_HAVE_PLATFORM_MXS_MMC | 91 | select MXS_HAVE_PLATFORM_MXS_MMC |
96 | select MXS_HAVE_PLATFORM_MXSFB | 92 | select MXS_HAVE_PLATFORM_MXSFB |
97 | select MXS_OCOTP | ||
98 | 93 | ||
99 | config MODULE_APX4 | 94 | config MODULE_APX4 |
100 | bool | 95 | bool |
@@ -106,7 +101,6 @@ config MODULE_APX4 | |||
106 | select MXS_HAVE_PLATFORM_MXS_I2C | 101 | select MXS_HAVE_PLATFORM_MXS_I2C |
107 | select MXS_HAVE_PLATFORM_MXS_MMC | 102 | select MXS_HAVE_PLATFORM_MXS_MMC |
108 | select MXS_HAVE_PLATFORM_MXS_SAIF | 103 | select MXS_HAVE_PLATFORM_MXS_SAIF |
109 | select MXS_OCOTP | ||
110 | 104 | ||
111 | config MACH_TX28 | 105 | config MACH_TX28 |
112 | bool "Ka-Ro TX28 module" | 106 | bool "Ka-Ro TX28 module" |
diff --git a/arch/arm/mach-mxs/Makefile b/arch/arm/mach-mxs/Makefile index e41590ccb437..fed3695a1339 100644 --- a/arch/arm/mach-mxs/Makefile +++ b/arch/arm/mach-mxs/Makefile | |||
@@ -1,7 +1,6 @@ | |||
1 | # Common support | 1 | # Common support |
2 | obj-y := devices.o icoll.o iomux.o system.o timer.o mm.o | 2 | obj-y := devices.o icoll.o iomux.o ocotp.o system.o timer.o mm.o |
3 | 3 | ||
4 | obj-$(CONFIG_MXS_OCOTP) += ocotp.o | ||
5 | obj-$(CONFIG_PM) += pm.o | 4 | obj-$(CONFIG_PM) += pm.o |
6 | 5 | ||
7 | obj-$(CONFIG_MACH_MXS_DT) += mach-mxs.o | 6 | obj-$(CONFIG_MACH_MXS_DT) += mach-mxs.o |
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig index dd2db025f778..fcd4e85c4ddc 100644 --- a/arch/arm/mach-omap2/Kconfig +++ b/arch/arm/mach-omap2/Kconfig | |||
@@ -62,13 +62,14 @@ config ARCH_OMAP4 | |||
62 | select PM_OPP if PM | 62 | select PM_OPP if PM |
63 | select USB_ARCH_HAS_EHCI if USB_SUPPORT | 63 | select USB_ARCH_HAS_EHCI if USB_SUPPORT |
64 | select ARM_CPU_SUSPEND if PM | 64 | select ARM_CPU_SUSPEND if PM |
65 | select ARCH_NEEDS_CPU_IDLE_COUPLED | 65 | select ARCH_NEEDS_CPU_IDLE_COUPLED if SMP |
66 | 66 | ||
67 | config SOC_OMAP5 | 67 | config SOC_OMAP5 |
68 | bool "TI OMAP5" | 68 | bool "TI OMAP5" |
69 | select CPU_V7 | 69 | select CPU_V7 |
70 | select ARM_GIC | 70 | select ARM_GIC |
71 | select HAVE_SMP | 71 | select HAVE_SMP |
72 | select ARM_CPU_SUSPEND if PM | ||
72 | 73 | ||
73 | comment "OMAP Core Type" | 74 | comment "OMAP Core Type" |
74 | depends on ARCH_OMAP2 | 75 | depends on ARCH_OMAP2 |
diff --git a/arch/arm/mach-omap2/board-igep0020.c b/arch/arm/mach-omap2/board-igep0020.c index 74915295482e..28214483aaba 100644 --- a/arch/arm/mach-omap2/board-igep0020.c +++ b/arch/arm/mach-omap2/board-igep0020.c | |||
@@ -554,6 +554,8 @@ static const struct usbhs_omap_board_data igep3_usbhs_bdata __initconst = { | |||
554 | 554 | ||
555 | #ifdef CONFIG_OMAP_MUX | 555 | #ifdef CONFIG_OMAP_MUX |
556 | static struct omap_board_mux board_mux[] __initdata = { | 556 | static struct omap_board_mux board_mux[] __initdata = { |
557 | /* SMSC9221 LAN Controller ETH IRQ (GPIO_176) */ | ||
558 | OMAP3_MUX(MCSPI1_CS2, OMAP_MUX_MODE4 | OMAP_PIN_INPUT), | ||
557 | { .reg_offset = OMAP_MUX_TERMINATOR }, | 559 | { .reg_offset = OMAP_MUX_TERMINATOR }, |
558 | }; | 560 | }; |
559 | #endif | 561 | #endif |
diff --git a/arch/arm/mach-omap2/board-omap3evm.c b/arch/arm/mach-omap2/board-omap3evm.c index ef230a0eb5eb..0d362e9f9cb9 100644 --- a/arch/arm/mach-omap2/board-omap3evm.c +++ b/arch/arm/mach-omap2/board-omap3evm.c | |||
@@ -58,6 +58,7 @@ | |||
58 | #include "hsmmc.h" | 58 | #include "hsmmc.h" |
59 | #include "common-board-devices.h" | 59 | #include "common-board-devices.h" |
60 | 60 | ||
61 | #define OMAP3_EVM_TS_GPIO 175 | ||
61 | #define OMAP3_EVM_EHCI_VBUS 22 | 62 | #define OMAP3_EVM_EHCI_VBUS 22 |
62 | #define OMAP3_EVM_EHCI_SELECT 61 | 63 | #define OMAP3_EVM_EHCI_SELECT 61 |
63 | 64 | ||
diff --git a/arch/arm/mach-omap2/common-board-devices.c b/arch/arm/mach-omap2/common-board-devices.c index 14734746457c..c1875862679f 100644 --- a/arch/arm/mach-omap2/common-board-devices.c +++ b/arch/arm/mach-omap2/common-board-devices.c | |||
@@ -35,16 +35,6 @@ static struct omap2_mcspi_device_config ads7846_mcspi_config = { | |||
35 | .turbo_mode = 0, | 35 | .turbo_mode = 0, |
36 | }; | 36 | }; |
37 | 37 | ||
38 | /* | ||
39 | * ADS7846 driver maybe request a gpio according to the value | ||
40 | * of pdata->get_pendown_state, but we have done this. So set | ||
41 | * get_pendown_state to avoid twice gpio requesting. | ||
42 | */ | ||
43 | static int omap3_get_pendown_state(void) | ||
44 | { | ||
45 | return !gpio_get_value(OMAP3_EVM_TS_GPIO); | ||
46 | } | ||
47 | |||
48 | static struct ads7846_platform_data ads7846_config = { | 38 | static struct ads7846_platform_data ads7846_config = { |
49 | .x_max = 0x0fff, | 39 | .x_max = 0x0fff, |
50 | .y_max = 0x0fff, | 40 | .y_max = 0x0fff, |
@@ -55,7 +45,6 @@ static struct ads7846_platform_data ads7846_config = { | |||
55 | .debounce_rep = 1, | 45 | .debounce_rep = 1, |
56 | .gpio_pendown = -EINVAL, | 46 | .gpio_pendown = -EINVAL, |
57 | .keep_vref_on = 1, | 47 | .keep_vref_on = 1, |
58 | .get_pendown_state = &omap3_get_pendown_state, | ||
59 | }; | 48 | }; |
60 | 49 | ||
61 | static struct spi_board_info ads7846_spi_board_info __initdata = { | 50 | static struct spi_board_info ads7846_spi_board_info __initdata = { |
diff --git a/arch/arm/mach-omap2/common-board-devices.h b/arch/arm/mach-omap2/common-board-devices.h index 4c4ef6a6166b..a0b4a42836ab 100644 --- a/arch/arm/mach-omap2/common-board-devices.h +++ b/arch/arm/mach-omap2/common-board-devices.h | |||
@@ -4,7 +4,6 @@ | |||
4 | #include "twl-common.h" | 4 | #include "twl-common.h" |
5 | 5 | ||
6 | #define NAND_BLOCK_SIZE SZ_128K | 6 | #define NAND_BLOCK_SIZE SZ_128K |
7 | #define OMAP3_EVM_TS_GPIO 175 | ||
8 | 7 | ||
9 | struct mtd_partition; | 8 | struct mtd_partition; |
10 | struct ads7846_platform_data; | 9 | struct ads7846_platform_data; |
diff --git a/arch/arm/mach-omap2/cpuidle44xx.c b/arch/arm/mach-omap2/cpuidle44xx.c index ee05e193fc61..288bee6cbb76 100644 --- a/arch/arm/mach-omap2/cpuidle44xx.c +++ b/arch/arm/mach-omap2/cpuidle44xx.c | |||
@@ -238,8 +238,9 @@ int __init omap4_idle_init(void) | |||
238 | for_each_cpu(cpu_id, cpu_online_mask) { | 238 | for_each_cpu(cpu_id, cpu_online_mask) { |
239 | dev = &per_cpu(omap4_idle_dev, cpu_id); | 239 | dev = &per_cpu(omap4_idle_dev, cpu_id); |
240 | dev->cpu = cpu_id; | 240 | dev->cpu = cpu_id; |
241 | #ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED | ||
241 | dev->coupled_cpus = *cpu_online_mask; | 242 | dev->coupled_cpus = *cpu_online_mask; |
242 | 243 | #endif | |
243 | cpuidle_register_driver(&omap4_idle_driver); | 244 | cpuidle_register_driver(&omap4_idle_driver); |
244 | 245 | ||
245 | if (cpuidle_register_device(dev)) { | 246 | if (cpuidle_register_device(dev)) { |
diff --git a/arch/arm/mach-omap2/mux.h b/arch/arm/mach-omap2/mux.h index 471e62a74a16..76f9b3c2f586 100644 --- a/arch/arm/mach-omap2/mux.h +++ b/arch/arm/mach-omap2/mux.h | |||
@@ -127,7 +127,6 @@ struct omap_mux_partition { | |||
127 | * @gpio: GPIO number | 127 | * @gpio: GPIO number |
128 | * @muxnames: available signal modes for a ball | 128 | * @muxnames: available signal modes for a ball |
129 | * @balls: available balls on the package | 129 | * @balls: available balls on the package |
130 | * @partition: mux partition | ||
131 | */ | 130 | */ |
132 | struct omap_mux { | 131 | struct omap_mux { |
133 | u16 reg_offset; | 132 | u16 reg_offset; |
diff --git a/arch/arm/mach-omap2/opp4xxx_data.c b/arch/arm/mach-omap2/opp4xxx_data.c index 2293ba27101b..c95415da23c2 100644 --- a/arch/arm/mach-omap2/opp4xxx_data.c +++ b/arch/arm/mach-omap2/opp4xxx_data.c | |||
@@ -94,7 +94,7 @@ int __init omap4_opp_init(void) | |||
94 | { | 94 | { |
95 | int r = -ENODEV; | 95 | int r = -ENODEV; |
96 | 96 | ||
97 | if (!cpu_is_omap44xx()) | 97 | if (!cpu_is_omap443x()) |
98 | return r; | 98 | return r; |
99 | 99 | ||
100 | r = omap_init_opp_table(omap44xx_opp_def_list, | 100 | r = omap_init_opp_table(omap44xx_opp_def_list, |
diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c index e4fc88c65dbd..05bd8f02723f 100644 --- a/arch/arm/mach-omap2/pm34xx.c +++ b/arch/arm/mach-omap2/pm34xx.c | |||
@@ -272,21 +272,16 @@ void omap_sram_idle(void) | |||
272 | per_next_state = pwrdm_read_next_pwrst(per_pwrdm); | 272 | per_next_state = pwrdm_read_next_pwrst(per_pwrdm); |
273 | core_next_state = pwrdm_read_next_pwrst(core_pwrdm); | 273 | core_next_state = pwrdm_read_next_pwrst(core_pwrdm); |
274 | 274 | ||
275 | if (mpu_next_state < PWRDM_POWER_ON) { | 275 | pwrdm_pre_transition(NULL); |
276 | pwrdm_pre_transition(mpu_pwrdm); | ||
277 | pwrdm_pre_transition(neon_pwrdm); | ||
278 | } | ||
279 | 276 | ||
280 | /* PER */ | 277 | /* PER */ |
281 | if (per_next_state < PWRDM_POWER_ON) { | 278 | if (per_next_state < PWRDM_POWER_ON) { |
282 | pwrdm_pre_transition(per_pwrdm); | ||
283 | per_going_off = (per_next_state == PWRDM_POWER_OFF) ? 1 : 0; | 279 | per_going_off = (per_next_state == PWRDM_POWER_OFF) ? 1 : 0; |
284 | omap2_gpio_prepare_for_idle(per_going_off); | 280 | omap2_gpio_prepare_for_idle(per_going_off); |
285 | } | 281 | } |
286 | 282 | ||
287 | /* CORE */ | 283 | /* CORE */ |
288 | if (core_next_state < PWRDM_POWER_ON) { | 284 | if (core_next_state < PWRDM_POWER_ON) { |
289 | pwrdm_pre_transition(core_pwrdm); | ||
290 | if (core_next_state == PWRDM_POWER_OFF) { | 285 | if (core_next_state == PWRDM_POWER_OFF) { |
291 | omap3_core_save_context(); | 286 | omap3_core_save_context(); |
292 | omap3_cm_save_context(); | 287 | omap3_cm_save_context(); |
@@ -339,20 +334,14 @@ void omap_sram_idle(void) | |||
339 | omap2_prm_clear_mod_reg_bits(OMAP3430_AUTO_OFF_MASK, | 334 | omap2_prm_clear_mod_reg_bits(OMAP3430_AUTO_OFF_MASK, |
340 | OMAP3430_GR_MOD, | 335 | OMAP3430_GR_MOD, |
341 | OMAP3_PRM_VOLTCTRL_OFFSET); | 336 | OMAP3_PRM_VOLTCTRL_OFFSET); |
342 | pwrdm_post_transition(core_pwrdm); | ||
343 | } | 337 | } |
344 | omap3_intc_resume_idle(); | 338 | omap3_intc_resume_idle(); |
345 | 339 | ||
340 | pwrdm_post_transition(NULL); | ||
341 | |||
346 | /* PER */ | 342 | /* PER */ |
347 | if (per_next_state < PWRDM_POWER_ON) { | 343 | if (per_next_state < PWRDM_POWER_ON) |
348 | omap2_gpio_resume_after_idle(); | 344 | omap2_gpio_resume_after_idle(); |
349 | pwrdm_post_transition(per_pwrdm); | ||
350 | } | ||
351 | |||
352 | if (mpu_next_state < PWRDM_POWER_ON) { | ||
353 | pwrdm_post_transition(mpu_pwrdm); | ||
354 | pwrdm_post_transition(neon_pwrdm); | ||
355 | } | ||
356 | } | 345 | } |
357 | 346 | ||
358 | static void omap3_pm_idle(void) | 347 | static void omap3_pm_idle(void) |
diff --git a/arch/arm/mach-omap2/sleep44xx.S b/arch/arm/mach-omap2/sleep44xx.S index 9f6b83d1b193..91e71d8f46f0 100644 --- a/arch/arm/mach-omap2/sleep44xx.S +++ b/arch/arm/mach-omap2/sleep44xx.S | |||
@@ -56,9 +56,13 @@ ppa_por_params: | |||
56 | * The restore function pointer is stored at CPUx_WAKEUP_NS_PA_ADDR_OFFSET. | 56 | * The restore function pointer is stored at CPUx_WAKEUP_NS_PA_ADDR_OFFSET. |
57 | * It returns to the caller for CPU INACTIVE and ON power states or in case | 57 | * It returns to the caller for CPU INACTIVE and ON power states or in case |
58 | * CPU failed to transition to targeted OFF/DORMANT state. | 58 | * CPU failed to transition to targeted OFF/DORMANT state. |
59 | * | ||
60 | * omap4_finish_suspend() calls v7_flush_dcache_all() which doesn't save | ||
61 | * stack frame and it expects the caller to take care of it. Hence the entire | ||
62 | * stack frame is saved to avoid possible stack corruption. | ||
59 | */ | 63 | */ |
60 | ENTRY(omap4_finish_suspend) | 64 | ENTRY(omap4_finish_suspend) |
61 | stmfd sp!, {lr} | 65 | stmfd sp!, {r4-r12, lr} |
62 | cmp r0, #0x0 | 66 | cmp r0, #0x0 |
63 | beq do_WFI @ No lowpower state, jump to WFI | 67 | beq do_WFI @ No lowpower state, jump to WFI |
64 | 68 | ||
@@ -226,7 +230,7 @@ scu_gp_clear: | |||
226 | skip_scu_gp_clear: | 230 | skip_scu_gp_clear: |
227 | isb | 231 | isb |
228 | dsb | 232 | dsb |
229 | ldmfd sp!, {pc} | 233 | ldmfd sp!, {r4-r12, pc} |
230 | ENDPROC(omap4_finish_suspend) | 234 | ENDPROC(omap4_finish_suspend) |
231 | 235 | ||
232 | /* | 236 | /* |
diff --git a/arch/arm/mach-omap2/twl-common.c b/arch/arm/mach-omap2/twl-common.c index de47f170ba50..db5ff6642375 100644 --- a/arch/arm/mach-omap2/twl-common.c +++ b/arch/arm/mach-omap2/twl-common.c | |||
@@ -67,6 +67,7 @@ void __init omap_pmic_init(int bus, u32 clkrate, | |||
67 | const char *pmic_type, int pmic_irq, | 67 | const char *pmic_type, int pmic_irq, |
68 | struct twl4030_platform_data *pmic_data) | 68 | struct twl4030_platform_data *pmic_data) |
69 | { | 69 | { |
70 | omap_mux_init_signal("sys_nirq", OMAP_PIN_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE); | ||
70 | strncpy(pmic_i2c_board_info.type, pmic_type, | 71 | strncpy(pmic_i2c_board_info.type, pmic_type, |
71 | sizeof(pmic_i2c_board_info.type)); | 72 | sizeof(pmic_i2c_board_info.type)); |
72 | pmic_i2c_board_info.irq = pmic_irq; | 73 | pmic_i2c_board_info.irq = pmic_irq; |
diff --git a/arch/arm/mach-orion5x/common.c b/arch/arm/mach-orion5x/common.c index 9148b229d0de..410291c67666 100644 --- a/arch/arm/mach-orion5x/common.c +++ b/arch/arm/mach-orion5x/common.c | |||
@@ -109,7 +109,8 @@ void __init orion5x_eth_init(struct mv643xx_eth_platform_data *eth_data) | |||
109 | { | 109 | { |
110 | orion_ge00_init(eth_data, | 110 | orion_ge00_init(eth_data, |
111 | ORION5X_ETH_PHYS_BASE, IRQ_ORION5X_ETH_SUM, | 111 | ORION5X_ETH_PHYS_BASE, IRQ_ORION5X_ETH_SUM, |
112 | IRQ_ORION5X_ETH_ERR); | 112 | IRQ_ORION5X_ETH_ERR, |
113 | MV643XX_TX_CSUM_DEFAULT_LIMIT); | ||
113 | } | 114 | } |
114 | 115 | ||
115 | 116 | ||
diff --git a/arch/arm/mach-pxa/raumfeld.c b/arch/arm/mach-pxa/raumfeld.c index 5905ed130e94..d89d87ae144c 100644 --- a/arch/arm/mach-pxa/raumfeld.c +++ b/arch/arm/mach-pxa/raumfeld.c | |||
@@ -953,12 +953,12 @@ static struct i2c_board_info raumfeld_connector_i2c_board_info __initdata = { | |||
953 | 953 | ||
954 | static struct eeti_ts_platform_data eeti_ts_pdata = { | 954 | static struct eeti_ts_platform_data eeti_ts_pdata = { |
955 | .irq_active_high = 1, | 955 | .irq_active_high = 1, |
956 | .irq_gpio = GPIO_TOUCH_IRQ, | ||
956 | }; | 957 | }; |
957 | 958 | ||
958 | static struct i2c_board_info raumfeld_controller_i2c_board_info __initdata = { | 959 | static struct i2c_board_info raumfeld_controller_i2c_board_info __initdata = { |
959 | .type = "eeti_ts", | 960 | .type = "eeti_ts", |
960 | .addr = 0x0a, | 961 | .addr = 0x0a, |
961 | .irq = PXA_GPIO_TO_IRQ(GPIO_TOUCH_IRQ), | ||
962 | .platform_data = &eeti_ts_pdata, | 962 | .platform_data = &eeti_ts_pdata, |
963 | }; | 963 | }; |
964 | 964 | ||
diff --git a/arch/arm/mach-s3c24xx/Kconfig b/arch/arm/mach-s3c24xx/Kconfig index e24961109b70..d56b0f7f2b20 100644 --- a/arch/arm/mach-s3c24xx/Kconfig +++ b/arch/arm/mach-s3c24xx/Kconfig | |||
@@ -483,7 +483,7 @@ config MACH_NEO1973_GTA02 | |||
483 | select I2C | 483 | select I2C |
484 | select POWER_SUPPLY | 484 | select POWER_SUPPLY |
485 | select MACH_NEO1973 | 485 | select MACH_NEO1973 |
486 | select S3C2410_PWM | 486 | select S3C24XX_PWM |
487 | select S3C_DEV_USB_HOST | 487 | select S3C_DEV_USB_HOST |
488 | help | 488 | help |
489 | Say Y here if you are using the Openmoko GTA02 / Freerunner GSM Phone | 489 | Say Y here if you are using the Openmoko GTA02 / Freerunner GSM Phone |
@@ -493,7 +493,7 @@ config MACH_RX1950 | |||
493 | select S3C24XX_DCLK | 493 | select S3C24XX_DCLK |
494 | select PM_H1940 if PM | 494 | select PM_H1940 if PM |
495 | select I2C | 495 | select I2C |
496 | select S3C2410_PWM | 496 | select S3C24XX_PWM |
497 | select S3C_DEV_NAND | 497 | select S3C_DEV_NAND |
498 | select S3C2410_IOTIMING if S3C2440_CPUFREQ | 498 | select S3C2410_IOTIMING if S3C2440_CPUFREQ |
499 | select S3C2440_XTAL_16934400 | 499 | select S3C2440_XTAL_16934400 |
diff --git a/arch/arm/mach-s3c24xx/include/mach/dma.h b/arch/arm/mach-s3c24xx/include/mach/dma.h index 454831b66037..ee99fd56c043 100644 --- a/arch/arm/mach-s3c24xx/include/mach/dma.h +++ b/arch/arm/mach-s3c24xx/include/mach/dma.h | |||
@@ -24,7 +24,8 @@ | |||
24 | */ | 24 | */ |
25 | 25 | ||
26 | enum dma_ch { | 26 | enum dma_ch { |
27 | DMACH_XD0, | 27 | DMACH_DT_PROP = -1, /* not yet supported, do not use */ |
28 | DMACH_XD0 = 0, | ||
28 | DMACH_XD1, | 29 | DMACH_XD1, |
29 | DMACH_SDI, | 30 | DMACH_SDI, |
30 | DMACH_SPI0, | 31 | DMACH_SPI0, |
diff --git a/arch/arm/mach-tegra/Makefile b/arch/arm/mach-tegra/Makefile index c3d7303b9ac8..f07f99452a98 100644 --- a/arch/arm/mach-tegra/Makefile +++ b/arch/arm/mach-tegra/Makefile | |||
@@ -12,9 +12,11 @@ obj-y += powergate.o | |||
12 | obj-y += apbio.o | 12 | obj-y += apbio.o |
13 | obj-$(CONFIG_CPU_IDLE) += cpuidle.o | 13 | obj-$(CONFIG_CPU_IDLE) += cpuidle.o |
14 | obj-$(CONFIG_CPU_IDLE) += sleep.o | 14 | obj-$(CONFIG_CPU_IDLE) += sleep.o |
15 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_clocks.o | 15 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra20_clocks.o |
16 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra20_clocks_data.o | ||
16 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_emc.o | 17 | obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += tegra2_emc.o |
17 | obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra30_clocks.o | 18 | obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra30_clocks.o |
19 | obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra30_clocks_data.o | ||
18 | obj-$(CONFIG_SMP) += platsmp.o headsmp.o | 20 | obj-$(CONFIG_SMP) += platsmp.o headsmp.o |
19 | obj-$(CONFIG_SMP) += reset.o | 21 | obj-$(CONFIG_SMP) += reset.o |
20 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o | 22 | obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o |
diff --git a/arch/arm/mach-tegra/board-dt-tegra20.c b/arch/arm/mach-tegra/board-dt-tegra20.c index c0999633a9ab..b4e7cc14713c 100644 --- a/arch/arm/mach-tegra/board-dt-tegra20.c +++ b/arch/arm/mach-tegra/board-dt-tegra20.c | |||
@@ -71,6 +71,7 @@ struct of_dev_auxdata tegra20_auxdata_lookup[] __initdata = { | |||
71 | 71 | ||
72 | static __initdata struct tegra_clk_init_table tegra_dt_clk_init_table[] = { | 72 | static __initdata struct tegra_clk_init_table tegra_dt_clk_init_table[] = { |
73 | /* name parent rate enabled */ | 73 | /* name parent rate enabled */ |
74 | { "uarta", "pll_p", 216000000, true }, | ||
74 | { "uartd", "pll_p", 216000000, true }, | 75 | { "uartd", "pll_p", 216000000, true }, |
75 | { "usbd", "clk_m", 12000000, false }, | 76 | { "usbd", "clk_m", 12000000, false }, |
76 | { "usb2", "clk_m", 12000000, false }, | 77 | { "usb2", "clk_m", 12000000, false }, |
diff --git a/arch/arm/mach-tegra/board-harmony-power.c b/arch/arm/mach-tegra/board-harmony-power.c index 8fd387bf31f0..b7344beec102 100644 --- a/arch/arm/mach-tegra/board-harmony-power.c +++ b/arch/arm/mach-tegra/board-harmony-power.c | |||
@@ -51,7 +51,7 @@ static struct regulator_init_data ldo0_data = { | |||
51 | .consumer_supplies = tps658621_ldo0_supply, | 51 | .consumer_supplies = tps658621_ldo0_supply, |
52 | }; | 52 | }; |
53 | 53 | ||
54 | #define HARMONY_REGULATOR_INIT(_id, _name, _supply, _minmv, _maxmv) \ | 54 | #define HARMONY_REGULATOR_INIT(_id, _name, _supply, _minmv, _maxmv, _on)\ |
55 | static struct regulator_init_data _id##_data = { \ | 55 | static struct regulator_init_data _id##_data = { \ |
56 | .supply_regulator = _supply, \ | 56 | .supply_regulator = _supply, \ |
57 | .constraints = { \ | 57 | .constraints = { \ |
@@ -63,21 +63,22 @@ static struct regulator_init_data ldo0_data = { | |||
63 | .valid_ops_mask = (REGULATOR_CHANGE_MODE | \ | 63 | .valid_ops_mask = (REGULATOR_CHANGE_MODE | \ |
64 | REGULATOR_CHANGE_STATUS | \ | 64 | REGULATOR_CHANGE_STATUS | \ |
65 | REGULATOR_CHANGE_VOLTAGE), \ | 65 | REGULATOR_CHANGE_VOLTAGE), \ |
66 | .always_on = _on, \ | ||
66 | }, \ | 67 | }, \ |
67 | } | 68 | } |
68 | 69 | ||
69 | HARMONY_REGULATOR_INIT(sm0, "vdd_sm0", "vdd_sys", 725, 1500); | 70 | HARMONY_REGULATOR_INIT(sm0, "vdd_sm0", "vdd_sys", 725, 1500, 1); |
70 | HARMONY_REGULATOR_INIT(sm1, "vdd_sm1", "vdd_sys", 725, 1500); | 71 | HARMONY_REGULATOR_INIT(sm1, "vdd_sm1", "vdd_sys", 725, 1500, 1); |
71 | HARMONY_REGULATOR_INIT(sm2, "vdd_sm2", "vdd_sys", 3000, 4550); | 72 | HARMONY_REGULATOR_INIT(sm2, "vdd_sm2", "vdd_sys", 3000, 4550, 1); |
72 | HARMONY_REGULATOR_INIT(ldo1, "vdd_ldo1", "vdd_sm2", 725, 1500); | 73 | HARMONY_REGULATOR_INIT(ldo1, "vdd_ldo1", "vdd_sm2", 725, 1500, 1); |
73 | HARMONY_REGULATOR_INIT(ldo2, "vdd_ldo2", "vdd_sm2", 725, 1500); | 74 | HARMONY_REGULATOR_INIT(ldo2, "vdd_ldo2", "vdd_sm2", 725, 1500, 0); |
74 | HARMONY_REGULATOR_INIT(ldo3, "vdd_ldo3", "vdd_sm2", 1250, 3300); | 75 | HARMONY_REGULATOR_INIT(ldo3, "vdd_ldo3", "vdd_sm2", 1250, 3300, 1); |
75 | HARMONY_REGULATOR_INIT(ldo4, "vdd_ldo4", "vdd_sm2", 1700, 2475); | 76 | HARMONY_REGULATOR_INIT(ldo4, "vdd_ldo4", "vdd_sm2", 1700, 2475, 1); |
76 | HARMONY_REGULATOR_INIT(ldo5, "vdd_ldo5", NULL, 1250, 3300); | 77 | HARMONY_REGULATOR_INIT(ldo5, "vdd_ldo5", NULL, 1250, 3300, 1); |
77 | HARMONY_REGULATOR_INIT(ldo6, "vdd_ldo6", "vdd_sm2", 1250, 3300); | 78 | HARMONY_REGULATOR_INIT(ldo6, "vdd_ldo6", "vdd_sm2", 1250, 3300, 0); |
78 | HARMONY_REGULATOR_INIT(ldo7, "vdd_ldo7", "vdd_sm2", 1250, 3300); | 79 | HARMONY_REGULATOR_INIT(ldo7, "vdd_ldo7", "vdd_sm2", 1250, 3300, 0); |
79 | HARMONY_REGULATOR_INIT(ldo8, "vdd_ldo8", "vdd_sm2", 1250, 3300); | 80 | HARMONY_REGULATOR_INIT(ldo8, "vdd_ldo8", "vdd_sm2", 1250, 3300, 0); |
80 | HARMONY_REGULATOR_INIT(ldo9, "vdd_ldo9", "vdd_sm2", 1250, 3300); | 81 | HARMONY_REGULATOR_INIT(ldo9, "vdd_ldo9", "vdd_sm2", 1250, 3300, 1); |
81 | 82 | ||
82 | #define TPS_REG(_id, _data) \ | 83 | #define TPS_REG(_id, _data) \ |
83 | { \ | 84 | { \ |
@@ -119,9 +120,10 @@ static struct i2c_board_info __initdata harmony_regulators[] = { | |||
119 | 120 | ||
120 | int __init harmony_regulator_init(void) | 121 | int __init harmony_regulator_init(void) |
121 | { | 122 | { |
123 | regulator_register_always_on(0, "vdd_sys", | ||
124 | NULL, 0, 5000000); | ||
125 | |||
122 | if (machine_is_harmony()) { | 126 | if (machine_is_harmony()) { |
123 | regulator_register_always_on(0, "vdd_sys", | ||
124 | NULL, 0, 5000000); | ||
125 | i2c_register_board_info(3, harmony_regulators, 1); | 127 | i2c_register_board_info(3, harmony_regulators, 1); |
126 | } else { /* Harmony, booted using device tree */ | 128 | } else { /* Harmony, booted using device tree */ |
127 | struct device_node *np; | 129 | struct device_node *np; |
diff --git a/arch/arm/mach-tegra/clock.c b/arch/arm/mach-tegra/clock.c index 58f981c0819c..632133fc985b 100644 --- a/arch/arm/mach-tegra/clock.c +++ b/arch/arm/mach-tegra/clock.c | |||
@@ -1,6 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * | 2 | * |
3 | * Copyright (C) 2010 Google, Inc. | 3 | * Copyright (C) 2010 Google, Inc. |
4 | * Copyright (c) 2012 NVIDIA CORPORATION. All rights reserved. | ||
4 | * | 5 | * |
5 | * Author: | 6 | * Author: |
6 | * Colin Cross <ccross@google.com> | 7 | * Colin Cross <ccross@google.com> |
@@ -19,8 +20,6 @@ | |||
19 | #include <linux/kernel.h> | 20 | #include <linux/kernel.h> |
20 | #include <linux/clk.h> | 21 | #include <linux/clk.h> |
21 | #include <linux/clkdev.h> | 22 | #include <linux/clkdev.h> |
22 | #include <linux/debugfs.h> | ||
23 | #include <linux/delay.h> | ||
24 | #include <linux/init.h> | 23 | #include <linux/init.h> |
25 | #include <linux/list.h> | 24 | #include <linux/list.h> |
26 | #include <linux/module.h> | 25 | #include <linux/module.h> |
@@ -36,321 +35,67 @@ | |||
36 | /* | 35 | /* |
37 | * Locking: | 36 | * Locking: |
38 | * | 37 | * |
39 | * Each struct clk has a spinlock. | ||
40 | * | ||
41 | * To avoid AB-BA locking problems, locks must always be traversed from child | ||
42 | * clock to parent clock. For example, when enabling a clock, the clock's lock | ||
43 | * is taken, and then clk_enable is called on the parent, which take's the | ||
44 | * parent clock's lock. There is one exceptions to this ordering: When dumping | ||
45 | * the clock tree through debugfs. In this case, clk_lock_all is called, | ||
46 | * which attemps to iterate through the entire list of clocks and take every | ||
47 | * clock lock. If any call to spin_trylock fails, all locked clocks are | ||
48 | * unlocked, and the process is retried. When all the locks are held, | ||
49 | * the only clock operation that can be called is clk_get_rate_all_locked. | ||
50 | * | ||
51 | * Within a single clock, no clock operation can call another clock operation | ||
52 | * on itself, except for clk_get_rate_locked and clk_set_rate_locked. Any | ||
53 | * clock operation can call any other clock operation on any of it's possible | ||
54 | * parents. | ||
55 | * | ||
56 | * An additional mutex, clock_list_lock, is used to protect the list of all | 38 | * An additional mutex, clock_list_lock, is used to protect the list of all |
57 | * clocks. | 39 | * clocks. |
58 | * | 40 | * |
59 | * The clock operations must lock internally to protect against | ||
60 | * read-modify-write on registers that are shared by multiple clocks | ||
61 | */ | 41 | */ |
62 | static DEFINE_MUTEX(clock_list_lock); | 42 | static DEFINE_MUTEX(clock_list_lock); |
63 | static LIST_HEAD(clocks); | 43 | static LIST_HEAD(clocks); |
64 | 44 | ||
65 | struct clk *tegra_get_clock_by_name(const char *name) | 45 | void tegra_clk_add(struct clk *clk) |
66 | { | 46 | { |
67 | struct clk *c; | 47 | struct clk_tegra *c = to_clk_tegra(__clk_get_hw(clk)); |
68 | struct clk *ret = NULL; | ||
69 | mutex_lock(&clock_list_lock); | ||
70 | list_for_each_entry(c, &clocks, node) { | ||
71 | if (strcmp(c->name, name) == 0) { | ||
72 | ret = c; | ||
73 | break; | ||
74 | } | ||
75 | } | ||
76 | mutex_unlock(&clock_list_lock); | ||
77 | return ret; | ||
78 | } | ||
79 | |||
80 | /* Must be called with c->spinlock held */ | ||
81 | static unsigned long clk_predict_rate_from_parent(struct clk *c, struct clk *p) | ||
82 | { | ||
83 | u64 rate; | ||
84 | |||
85 | rate = clk_get_rate(p); | ||
86 | |||
87 | if (c->mul != 0 && c->div != 0) { | ||
88 | rate *= c->mul; | ||
89 | rate += c->div - 1; /* round up */ | ||
90 | do_div(rate, c->div); | ||
91 | } | ||
92 | |||
93 | return rate; | ||
94 | } | ||
95 | |||
96 | /* Must be called with c->spinlock held */ | ||
97 | unsigned long clk_get_rate_locked(struct clk *c) | ||
98 | { | ||
99 | unsigned long rate; | ||
100 | |||
101 | if (c->parent) | ||
102 | rate = clk_predict_rate_from_parent(c, c->parent); | ||
103 | else | ||
104 | rate = c->rate; | ||
105 | |||
106 | return rate; | ||
107 | } | ||
108 | |||
109 | unsigned long clk_get_rate(struct clk *c) | ||
110 | { | ||
111 | unsigned long flags; | ||
112 | unsigned long rate; | ||
113 | |||
114 | spin_lock_irqsave(&c->spinlock, flags); | ||
115 | |||
116 | rate = clk_get_rate_locked(c); | ||
117 | |||
118 | spin_unlock_irqrestore(&c->spinlock, flags); | ||
119 | |||
120 | return rate; | ||
121 | } | ||
122 | EXPORT_SYMBOL(clk_get_rate); | ||
123 | |||
124 | int clk_reparent(struct clk *c, struct clk *parent) | ||
125 | { | ||
126 | c->parent = parent; | ||
127 | return 0; | ||
128 | } | ||
129 | |||
130 | void clk_init(struct clk *c) | ||
131 | { | ||
132 | spin_lock_init(&c->spinlock); | ||
133 | |||
134 | if (c->ops && c->ops->init) | ||
135 | c->ops->init(c); | ||
136 | |||
137 | if (!c->ops || !c->ops->enable) { | ||
138 | c->refcnt++; | ||
139 | c->set = true; | ||
140 | if (c->parent) | ||
141 | c->state = c->parent->state; | ||
142 | else | ||
143 | c->state = ON; | ||
144 | } | ||
145 | 48 | ||
146 | mutex_lock(&clock_list_lock); | 49 | mutex_lock(&clock_list_lock); |
147 | list_add(&c->node, &clocks); | 50 | list_add(&c->node, &clocks); |
148 | mutex_unlock(&clock_list_lock); | 51 | mutex_unlock(&clock_list_lock); |
149 | } | 52 | } |
150 | 53 | ||
151 | int clk_enable(struct clk *c) | 54 | struct clk *tegra_get_clock_by_name(const char *name) |
152 | { | ||
153 | int ret = 0; | ||
154 | unsigned long flags; | ||
155 | |||
156 | spin_lock_irqsave(&c->spinlock, flags); | ||
157 | |||
158 | if (c->refcnt == 0) { | ||
159 | if (c->parent) { | ||
160 | ret = clk_enable(c->parent); | ||
161 | if (ret) | ||
162 | goto out; | ||
163 | } | ||
164 | |||
165 | if (c->ops && c->ops->enable) { | ||
166 | ret = c->ops->enable(c); | ||
167 | if (ret) { | ||
168 | if (c->parent) | ||
169 | clk_disable(c->parent); | ||
170 | goto out; | ||
171 | } | ||
172 | c->state = ON; | ||
173 | c->set = true; | ||
174 | } | ||
175 | } | ||
176 | c->refcnt++; | ||
177 | out: | ||
178 | spin_unlock_irqrestore(&c->spinlock, flags); | ||
179 | return ret; | ||
180 | } | ||
181 | EXPORT_SYMBOL(clk_enable); | ||
182 | |||
183 | void clk_disable(struct clk *c) | ||
184 | { | ||
185 | unsigned long flags; | ||
186 | |||
187 | spin_lock_irqsave(&c->spinlock, flags); | ||
188 | |||
189 | if (c->refcnt == 0) { | ||
190 | WARN(1, "Attempting to disable clock %s with refcnt 0", c->name); | ||
191 | spin_unlock_irqrestore(&c->spinlock, flags); | ||
192 | return; | ||
193 | } | ||
194 | if (c->refcnt == 1) { | ||
195 | if (c->ops && c->ops->disable) | ||
196 | c->ops->disable(c); | ||
197 | |||
198 | if (c->parent) | ||
199 | clk_disable(c->parent); | ||
200 | |||
201 | c->state = OFF; | ||
202 | } | ||
203 | c->refcnt--; | ||
204 | |||
205 | spin_unlock_irqrestore(&c->spinlock, flags); | ||
206 | } | ||
207 | EXPORT_SYMBOL(clk_disable); | ||
208 | |||
209 | int clk_set_parent(struct clk *c, struct clk *parent) | ||
210 | { | ||
211 | int ret; | ||
212 | unsigned long flags; | ||
213 | unsigned long new_rate; | ||
214 | unsigned long old_rate; | ||
215 | |||
216 | spin_lock_irqsave(&c->spinlock, flags); | ||
217 | |||
218 | if (!c->ops || !c->ops->set_parent) { | ||
219 | ret = -ENOSYS; | ||
220 | goto out; | ||
221 | } | ||
222 | |||
223 | new_rate = clk_predict_rate_from_parent(c, parent); | ||
224 | old_rate = clk_get_rate_locked(c); | ||
225 | |||
226 | ret = c->ops->set_parent(c, parent); | ||
227 | if (ret) | ||
228 | goto out; | ||
229 | |||
230 | out: | ||
231 | spin_unlock_irqrestore(&c->spinlock, flags); | ||
232 | return ret; | ||
233 | } | ||
234 | EXPORT_SYMBOL(clk_set_parent); | ||
235 | |||
236 | struct clk *clk_get_parent(struct clk *c) | ||
237 | { | ||
238 | return c->parent; | ||
239 | } | ||
240 | EXPORT_SYMBOL(clk_get_parent); | ||
241 | |||
242 | int clk_set_rate_locked(struct clk *c, unsigned long rate) | ||
243 | { | ||
244 | long new_rate; | ||
245 | |||
246 | if (!c->ops || !c->ops->set_rate) | ||
247 | return -ENOSYS; | ||
248 | |||
249 | if (rate > c->max_rate) | ||
250 | rate = c->max_rate; | ||
251 | |||
252 | if (c->ops && c->ops->round_rate) { | ||
253 | new_rate = c->ops->round_rate(c, rate); | ||
254 | |||
255 | if (new_rate < 0) | ||
256 | return new_rate; | ||
257 | |||
258 | rate = new_rate; | ||
259 | } | ||
260 | |||
261 | return c->ops->set_rate(c, rate); | ||
262 | } | ||
263 | |||
264 | int clk_set_rate(struct clk *c, unsigned long rate) | ||
265 | { | ||
266 | int ret; | ||
267 | unsigned long flags; | ||
268 | |||
269 | spin_lock_irqsave(&c->spinlock, flags); | ||
270 | |||
271 | ret = clk_set_rate_locked(c, rate); | ||
272 | |||
273 | spin_unlock_irqrestore(&c->spinlock, flags); | ||
274 | |||
275 | return ret; | ||
276 | } | ||
277 | EXPORT_SYMBOL(clk_set_rate); | ||
278 | |||
279 | |||
280 | /* Must be called with clocks lock and all indvidual clock locks held */ | ||
281 | unsigned long clk_get_rate_all_locked(struct clk *c) | ||
282 | { | 55 | { |
283 | u64 rate; | 56 | struct clk_tegra *c; |
284 | int mul = 1; | 57 | struct clk *ret = NULL; |
285 | int div = 1; | 58 | mutex_lock(&clock_list_lock); |
286 | struct clk *p = c; | 59 | list_for_each_entry(c, &clocks, node) { |
287 | 60 | if (strcmp(__clk_get_name(c->hw.clk), name) == 0) { | |
288 | while (p) { | 61 | ret = c->hw.clk; |
289 | c = p; | 62 | break; |
290 | if (c->mul != 0 && c->div != 0) { | ||
291 | mul *= c->mul; | ||
292 | div *= c->div; | ||
293 | } | 63 | } |
294 | p = c->parent; | ||
295 | } | 64 | } |
296 | 65 | mutex_unlock(&clock_list_lock); | |
297 | rate = c->rate; | ||
298 | rate *= mul; | ||
299 | do_div(rate, div); | ||
300 | |||
301 | return rate; | ||
302 | } | ||
303 | |||
304 | long clk_round_rate(struct clk *c, unsigned long rate) | ||
305 | { | ||
306 | unsigned long flags; | ||
307 | long ret; | ||
308 | |||
309 | spin_lock_irqsave(&c->spinlock, flags); | ||
310 | |||
311 | if (!c->ops || !c->ops->round_rate) { | ||
312 | ret = -ENOSYS; | ||
313 | goto out; | ||
314 | } | ||
315 | |||
316 | if (rate > c->max_rate) | ||
317 | rate = c->max_rate; | ||
318 | |||
319 | ret = c->ops->round_rate(c, rate); | ||
320 | |||
321 | out: | ||
322 | spin_unlock_irqrestore(&c->spinlock, flags); | ||
323 | return ret; | 66 | return ret; |
324 | } | 67 | } |
325 | EXPORT_SYMBOL(clk_round_rate); | ||
326 | 68 | ||
327 | static int tegra_clk_init_one_from_table(struct tegra_clk_init_table *table) | 69 | static int tegra_clk_init_one_from_table(struct tegra_clk_init_table *table) |
328 | { | 70 | { |
329 | struct clk *c; | 71 | struct clk *c; |
330 | struct clk *p; | 72 | struct clk *p; |
73 | struct clk *parent; | ||
331 | 74 | ||
332 | int ret = 0; | 75 | int ret = 0; |
333 | 76 | ||
334 | c = tegra_get_clock_by_name(table->name); | 77 | c = tegra_get_clock_by_name(table->name); |
335 | 78 | ||
336 | if (!c) { | 79 | if (!c) { |
337 | pr_warning("Unable to initialize clock %s\n", | 80 | pr_warn("Unable to initialize clock %s\n", |
338 | table->name); | 81 | table->name); |
339 | return -ENODEV; | 82 | return -ENODEV; |
340 | } | 83 | } |
341 | 84 | ||
85 | parent = clk_get_parent(c); | ||
86 | |||
342 | if (table->parent) { | 87 | if (table->parent) { |
343 | p = tegra_get_clock_by_name(table->parent); | 88 | p = tegra_get_clock_by_name(table->parent); |
344 | if (!p) { | 89 | if (!p) { |
345 | pr_warning("Unable to find parent %s of clock %s\n", | 90 | pr_warn("Unable to find parent %s of clock %s\n", |
346 | table->parent, table->name); | 91 | table->parent, table->name); |
347 | return -ENODEV; | 92 | return -ENODEV; |
348 | } | 93 | } |
349 | 94 | ||
350 | if (c->parent != p) { | 95 | if (parent != p) { |
351 | ret = clk_set_parent(c, p); | 96 | ret = clk_set_parent(c, p); |
352 | if (ret) { | 97 | if (ret) { |
353 | pr_warning("Unable to set parent %s of clock %s: %d\n", | 98 | pr_warn("Unable to set parent %s of clock %s: %d\n", |
354 | table->parent, table->name, ret); | 99 | table->parent, table->name, ret); |
355 | return -EINVAL; | 100 | return -EINVAL; |
356 | } | 101 | } |
@@ -360,16 +105,16 @@ static int tegra_clk_init_one_from_table(struct tegra_clk_init_table *table) | |||
360 | if (table->rate && table->rate != clk_get_rate(c)) { | 105 | if (table->rate && table->rate != clk_get_rate(c)) { |
361 | ret = clk_set_rate(c, table->rate); | 106 | ret = clk_set_rate(c, table->rate); |
362 | if (ret) { | 107 | if (ret) { |
363 | pr_warning("Unable to set clock %s to rate %lu: %d\n", | 108 | pr_warn("Unable to set clock %s to rate %lu: %d\n", |
364 | table->name, table->rate, ret); | 109 | table->name, table->rate, ret); |
365 | return -EINVAL; | 110 | return -EINVAL; |
366 | } | 111 | } |
367 | } | 112 | } |
368 | 113 | ||
369 | if (table->enabled) { | 114 | if (table->enabled) { |
370 | ret = clk_enable(c); | 115 | ret = clk_prepare_enable(c); |
371 | if (ret) { | 116 | if (ret) { |
372 | pr_warning("Unable to enable clock %s: %d\n", | 117 | pr_warn("Unable to enable clock %s: %d\n", |
373 | table->name, ret); | 118 | table->name, ret); |
374 | return -EINVAL; | 119 | return -EINVAL; |
375 | } | 120 | } |
@@ -383,19 +128,20 @@ void tegra_clk_init_from_table(struct tegra_clk_init_table *table) | |||
383 | for (; table->name; table++) | 128 | for (; table->name; table++) |
384 | tegra_clk_init_one_from_table(table); | 129 | tegra_clk_init_one_from_table(table); |
385 | } | 130 | } |
386 | EXPORT_SYMBOL(tegra_clk_init_from_table); | ||
387 | 131 | ||
388 | void tegra_periph_reset_deassert(struct clk *c) | 132 | void tegra_periph_reset_deassert(struct clk *c) |
389 | { | 133 | { |
390 | BUG_ON(!c->ops->reset); | 134 | struct clk_tegra *clk = to_clk_tegra(__clk_get_hw(c)); |
391 | c->ops->reset(c, false); | 135 | BUG_ON(!clk->reset); |
136 | clk->reset(__clk_get_hw(c), false); | ||
392 | } | 137 | } |
393 | EXPORT_SYMBOL(tegra_periph_reset_deassert); | 138 | EXPORT_SYMBOL(tegra_periph_reset_deassert); |
394 | 139 | ||
395 | void tegra_periph_reset_assert(struct clk *c) | 140 | void tegra_periph_reset_assert(struct clk *c) |
396 | { | 141 | { |
397 | BUG_ON(!c->ops->reset); | 142 | struct clk_tegra *clk = to_clk_tegra(__clk_get_hw(c)); |
398 | c->ops->reset(c, true); | 143 | BUG_ON(!clk->reset); |
144 | clk->reset(__clk_get_hw(c), true); | ||
399 | } | 145 | } |
400 | EXPORT_SYMBOL(tegra_periph_reset_assert); | 146 | EXPORT_SYMBOL(tegra_periph_reset_assert); |
401 | 147 | ||
@@ -405,268 +151,14 @@ EXPORT_SYMBOL(tegra_periph_reset_assert); | |||
405 | int tegra_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting) | 151 | int tegra_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting) |
406 | { | 152 | { |
407 | int ret = 0; | 153 | int ret = 0; |
408 | unsigned long flags; | 154 | struct clk_tegra *clk = to_clk_tegra(__clk_get_hw(c)); |
409 | 155 | ||
410 | spin_lock_irqsave(&c->spinlock, flags); | 156 | if (!clk->clk_cfg_ex) { |
411 | |||
412 | if (!c->ops || !c->ops->clk_cfg_ex) { | ||
413 | ret = -ENOSYS; | 157 | ret = -ENOSYS; |
414 | goto out; | 158 | goto out; |
415 | } | 159 | } |
416 | ret = c->ops->clk_cfg_ex(c, p, setting); | 160 | ret = clk->clk_cfg_ex(__clk_get_hw(c), p, setting); |
417 | 161 | ||
418 | out: | 162 | out: |
419 | spin_unlock_irqrestore(&c->spinlock, flags); | ||
420 | |||
421 | return ret; | 163 | return ret; |
422 | } | 164 | } |
423 | |||
424 | #ifdef CONFIG_DEBUG_FS | ||
425 | |||
426 | static int __clk_lock_all_spinlocks(void) | ||
427 | { | ||
428 | struct clk *c; | ||
429 | |||
430 | list_for_each_entry(c, &clocks, node) | ||
431 | if (!spin_trylock(&c->spinlock)) | ||
432 | goto unlock_spinlocks; | ||
433 | |||
434 | return 0; | ||
435 | |||
436 | unlock_spinlocks: | ||
437 | list_for_each_entry_continue_reverse(c, &clocks, node) | ||
438 | spin_unlock(&c->spinlock); | ||
439 | |||
440 | return -EAGAIN; | ||
441 | } | ||
442 | |||
443 | static void __clk_unlock_all_spinlocks(void) | ||
444 | { | ||
445 | struct clk *c; | ||
446 | |||
447 | list_for_each_entry_reverse(c, &clocks, node) | ||
448 | spin_unlock(&c->spinlock); | ||
449 | } | ||
450 | |||
451 | /* | ||
452 | * This function retries until it can take all locks, and may take | ||
453 | * an arbitrarily long time to complete. | ||
454 | * Must be called with irqs enabled, returns with irqs disabled | ||
455 | * Must be called with clock_list_lock held | ||
456 | */ | ||
457 | static void clk_lock_all(void) | ||
458 | { | ||
459 | int ret; | ||
460 | retry: | ||
461 | local_irq_disable(); | ||
462 | |||
463 | ret = __clk_lock_all_spinlocks(); | ||
464 | if (ret) | ||
465 | goto failed_spinlocks; | ||
466 | |||
467 | /* All locks taken successfully, return */ | ||
468 | return; | ||
469 | |||
470 | failed_spinlocks: | ||
471 | local_irq_enable(); | ||
472 | yield(); | ||
473 | goto retry; | ||
474 | } | ||
475 | |||
476 | /* | ||
477 | * Unlocks all clocks after a clk_lock_all | ||
478 | * Must be called with irqs disabled, returns with irqs enabled | ||
479 | * Must be called with clock_list_lock held | ||
480 | */ | ||
481 | static void clk_unlock_all(void) | ||
482 | { | ||
483 | __clk_unlock_all_spinlocks(); | ||
484 | |||
485 | local_irq_enable(); | ||
486 | } | ||
487 | |||
488 | static struct dentry *clk_debugfs_root; | ||
489 | |||
490 | |||
491 | static void clock_tree_show_one(struct seq_file *s, struct clk *c, int level) | ||
492 | { | ||
493 | struct clk *child; | ||
494 | const char *state = "uninit"; | ||
495 | char div[8] = {0}; | ||
496 | |||
497 | if (c->state == ON) | ||
498 | state = "on"; | ||
499 | else if (c->state == OFF) | ||
500 | state = "off"; | ||
501 | |||
502 | if (c->mul != 0 && c->div != 0) { | ||
503 | if (c->mul > c->div) { | ||
504 | int mul = c->mul / c->div; | ||
505 | int mul2 = (c->mul * 10 / c->div) % 10; | ||
506 | int mul3 = (c->mul * 10) % c->div; | ||
507 | if (mul2 == 0 && mul3 == 0) | ||
508 | snprintf(div, sizeof(div), "x%d", mul); | ||
509 | else if (mul3 == 0) | ||
510 | snprintf(div, sizeof(div), "x%d.%d", mul, mul2); | ||
511 | else | ||
512 | snprintf(div, sizeof(div), "x%d.%d..", mul, mul2); | ||
513 | } else { | ||
514 | snprintf(div, sizeof(div), "%d%s", c->div / c->mul, | ||
515 | (c->div % c->mul) ? ".5" : ""); | ||
516 | } | ||
517 | } | ||
518 | |||
519 | seq_printf(s, "%*s%c%c%-*s %-6s %-3d %-8s %-10lu\n", | ||
520 | level * 3 + 1, "", | ||
521 | c->rate > c->max_rate ? '!' : ' ', | ||
522 | !c->set ? '*' : ' ', | ||
523 | 30 - level * 3, c->name, | ||
524 | state, c->refcnt, div, clk_get_rate_all_locked(c)); | ||
525 | |||
526 | list_for_each_entry(child, &clocks, node) { | ||
527 | if (child->parent != c) | ||
528 | continue; | ||
529 | |||
530 | clock_tree_show_one(s, child, level + 1); | ||
531 | } | ||
532 | } | ||
533 | |||
534 | static int clock_tree_show(struct seq_file *s, void *data) | ||
535 | { | ||
536 | struct clk *c; | ||
537 | seq_printf(s, " clock state ref div rate\n"); | ||
538 | seq_printf(s, "--------------------------------------------------------------\n"); | ||
539 | |||
540 | mutex_lock(&clock_list_lock); | ||
541 | |||
542 | clk_lock_all(); | ||
543 | |||
544 | list_for_each_entry(c, &clocks, node) | ||
545 | if (c->parent == NULL) | ||
546 | clock_tree_show_one(s, c, 0); | ||
547 | |||
548 | clk_unlock_all(); | ||
549 | |||
550 | mutex_unlock(&clock_list_lock); | ||
551 | return 0; | ||
552 | } | ||
553 | |||
554 | static int clock_tree_open(struct inode *inode, struct file *file) | ||
555 | { | ||
556 | return single_open(file, clock_tree_show, inode->i_private); | ||
557 | } | ||
558 | |||
559 | static const struct file_operations clock_tree_fops = { | ||
560 | .open = clock_tree_open, | ||
561 | .read = seq_read, | ||
562 | .llseek = seq_lseek, | ||
563 | .release = single_release, | ||
564 | }; | ||
565 | |||
566 | static int possible_parents_show(struct seq_file *s, void *data) | ||
567 | { | ||
568 | struct clk *c = s->private; | ||
569 | int i; | ||
570 | |||
571 | for (i = 0; c->inputs[i].input; i++) { | ||
572 | char *first = (i == 0) ? "" : " "; | ||
573 | seq_printf(s, "%s%s", first, c->inputs[i].input->name); | ||
574 | } | ||
575 | seq_printf(s, "\n"); | ||
576 | return 0; | ||
577 | } | ||
578 | |||
579 | static int possible_parents_open(struct inode *inode, struct file *file) | ||
580 | { | ||
581 | return single_open(file, possible_parents_show, inode->i_private); | ||
582 | } | ||
583 | |||
584 | static const struct file_operations possible_parents_fops = { | ||
585 | .open = possible_parents_open, | ||
586 | .read = seq_read, | ||
587 | .llseek = seq_lseek, | ||
588 | .release = single_release, | ||
589 | }; | ||
590 | |||
591 | static int clk_debugfs_register_one(struct clk *c) | ||
592 | { | ||
593 | struct dentry *d; | ||
594 | |||
595 | d = debugfs_create_dir(c->name, clk_debugfs_root); | ||
596 | if (!d) | ||
597 | return -ENOMEM; | ||
598 | c->dent = d; | ||
599 | |||
600 | d = debugfs_create_u8("refcnt", S_IRUGO, c->dent, (u8 *)&c->refcnt); | ||
601 | if (!d) | ||
602 | goto err_out; | ||
603 | |||
604 | d = debugfs_create_u32("rate", S_IRUGO, c->dent, (u32 *)&c->rate); | ||
605 | if (!d) | ||
606 | goto err_out; | ||
607 | |||
608 | d = debugfs_create_x32("flags", S_IRUGO, c->dent, (u32 *)&c->flags); | ||
609 | if (!d) | ||
610 | goto err_out; | ||
611 | |||
612 | if (c->inputs) { | ||
613 | d = debugfs_create_file("possible_parents", S_IRUGO, c->dent, | ||
614 | c, &possible_parents_fops); | ||
615 | if (!d) | ||
616 | goto err_out; | ||
617 | } | ||
618 | |||
619 | return 0; | ||
620 | |||
621 | err_out: | ||
622 | debugfs_remove_recursive(c->dent); | ||
623 | return -ENOMEM; | ||
624 | } | ||
625 | |||
626 | static int clk_debugfs_register(struct clk *c) | ||
627 | { | ||
628 | int err; | ||
629 | struct clk *pa = c->parent; | ||
630 | |||
631 | if (pa && !pa->dent) { | ||
632 | err = clk_debugfs_register(pa); | ||
633 | if (err) | ||
634 | return err; | ||
635 | } | ||
636 | |||
637 | if (!c->dent) { | ||
638 | err = clk_debugfs_register_one(c); | ||
639 | if (err) | ||
640 | return err; | ||
641 | } | ||
642 | return 0; | ||
643 | } | ||
644 | |||
645 | int __init tegra_clk_debugfs_init(void) | ||
646 | { | ||
647 | struct clk *c; | ||
648 | struct dentry *d; | ||
649 | int err = -ENOMEM; | ||
650 | |||
651 | d = debugfs_create_dir("clock", NULL); | ||
652 | if (!d) | ||
653 | return -ENOMEM; | ||
654 | clk_debugfs_root = d; | ||
655 | |||
656 | d = debugfs_create_file("clock_tree", S_IRUGO, clk_debugfs_root, NULL, | ||
657 | &clock_tree_fops); | ||
658 | if (!d) | ||
659 | goto err_out; | ||
660 | |||
661 | list_for_each_entry(c, &clocks, node) { | ||
662 | err = clk_debugfs_register(c); | ||
663 | if (err) | ||
664 | goto err_out; | ||
665 | } | ||
666 | return 0; | ||
667 | err_out: | ||
668 | debugfs_remove_recursive(clk_debugfs_root); | ||
669 | return err; | ||
670 | } | ||
671 | |||
672 | #endif | ||
diff --git a/arch/arm/mach-tegra/clock.h b/arch/arm/mach-tegra/clock.h index bc300657deba..2aa37f5c44c0 100644 --- a/arch/arm/mach-tegra/clock.h +++ b/arch/arm/mach-tegra/clock.h | |||
@@ -2,6 +2,7 @@ | |||
2 | * arch/arm/mach-tegra/include/mach/clock.h | 2 | * arch/arm/mach-tegra/include/mach/clock.h |
3 | * | 3 | * |
4 | * Copyright (C) 2010 Google, Inc. | 4 | * Copyright (C) 2010 Google, Inc. |
5 | * Copyright (c) 2012 NVIDIA CORPORATION. All rights reserved. | ||
5 | * | 6 | * |
6 | * Author: | 7 | * Author: |
7 | * Colin Cross <ccross@google.com> | 8 | * Colin Cross <ccross@google.com> |
@@ -20,9 +21,9 @@ | |||
20 | #ifndef __MACH_TEGRA_CLOCK_H | 21 | #ifndef __MACH_TEGRA_CLOCK_H |
21 | #define __MACH_TEGRA_CLOCK_H | 22 | #define __MACH_TEGRA_CLOCK_H |
22 | 23 | ||
24 | #include <linux/clk-provider.h> | ||
23 | #include <linux/clkdev.h> | 25 | #include <linux/clkdev.h> |
24 | #include <linux/list.h> | 26 | #include <linux/list.h> |
25 | #include <linux/spinlock.h> | ||
26 | 27 | ||
27 | #include <mach/clk.h> | 28 | #include <mach/clk.h> |
28 | 29 | ||
@@ -52,7 +53,8 @@ | |||
52 | #define ENABLE_ON_INIT (1 << 28) | 53 | #define ENABLE_ON_INIT (1 << 28) |
53 | #define PERIPH_ON_APB (1 << 29) | 54 | #define PERIPH_ON_APB (1 << 29) |
54 | 55 | ||
55 | struct clk; | 56 | struct clk_tegra; |
57 | #define to_clk_tegra(_hw) container_of(_hw, struct clk_tegra, hw) | ||
56 | 58 | ||
57 | struct clk_mux_sel { | 59 | struct clk_mux_sel { |
58 | struct clk *input; | 60 | struct clk *input; |
@@ -68,47 +70,29 @@ struct clk_pll_freq_table { | |||
68 | u8 cpcon; | 70 | u8 cpcon; |
69 | }; | 71 | }; |
70 | 72 | ||
71 | struct clk_ops { | ||
72 | void (*init)(struct clk *); | ||
73 | int (*enable)(struct clk *); | ||
74 | void (*disable)(struct clk *); | ||
75 | int (*set_parent)(struct clk *, struct clk *); | ||
76 | int (*set_rate)(struct clk *, unsigned long); | ||
77 | long (*round_rate)(struct clk *, unsigned long); | ||
78 | void (*reset)(struct clk *, bool); | ||
79 | int (*clk_cfg_ex)(struct clk *, | ||
80 | enum tegra_clk_ex_param, u32); | ||
81 | }; | ||
82 | |||
83 | enum clk_state { | 73 | enum clk_state { |
84 | UNINITIALIZED = 0, | 74 | UNINITIALIZED = 0, |
85 | ON, | 75 | ON, |
86 | OFF, | 76 | OFF, |
87 | }; | 77 | }; |
88 | 78 | ||
89 | struct clk { | 79 | struct clk_tegra { |
90 | /* node for master clocks list */ | 80 | /* node for master clocks list */ |
91 | struct list_head node; /* node for list of all clocks */ | 81 | struct list_head node; /* node for list of all clocks */ |
92 | struct clk_lookup lookup; | 82 | struct clk_lookup lookup; |
83 | struct clk_hw hw; | ||
93 | 84 | ||
94 | #ifdef CONFIG_DEBUG_FS | ||
95 | struct dentry *dent; | ||
96 | #endif | ||
97 | bool set; | 85 | bool set; |
98 | struct clk_ops *ops; | 86 | unsigned long fixed_rate; |
99 | unsigned long rate; | ||
100 | unsigned long max_rate; | 87 | unsigned long max_rate; |
101 | unsigned long min_rate; | 88 | unsigned long min_rate; |
102 | u32 flags; | 89 | u32 flags; |
103 | const char *name; | 90 | const char *name; |
104 | 91 | ||
105 | u32 refcnt; | ||
106 | enum clk_state state; | 92 | enum clk_state state; |
107 | struct clk *parent; | ||
108 | u32 div; | 93 | u32 div; |
109 | u32 mul; | 94 | u32 mul; |
110 | 95 | ||
111 | const struct clk_mux_sel *inputs; | ||
112 | u32 reg; | 96 | u32 reg; |
113 | u32 reg_shift; | 97 | u32 reg_shift; |
114 | 98 | ||
@@ -144,7 +128,8 @@ struct clk { | |||
144 | } shared_bus_user; | 128 | } shared_bus_user; |
145 | } u; | 129 | } u; |
146 | 130 | ||
147 | spinlock_t spinlock; | 131 | void (*reset)(struct clk_hw *, bool); |
132 | int (*clk_cfg_ex)(struct clk_hw *, enum tegra_clk_ex_param, u32); | ||
148 | }; | 133 | }; |
149 | 134 | ||
150 | struct clk_duplicate { | 135 | struct clk_duplicate { |
@@ -159,13 +144,10 @@ struct tegra_clk_init_table { | |||
159 | bool enabled; | 144 | bool enabled; |
160 | }; | 145 | }; |
161 | 146 | ||
147 | void tegra_clk_add(struct clk *c); | ||
162 | void tegra2_init_clocks(void); | 148 | void tegra2_init_clocks(void); |
163 | void tegra30_init_clocks(void); | 149 | void tegra30_init_clocks(void); |
164 | void clk_init(struct clk *clk); | ||
165 | struct clk *tegra_get_clock_by_name(const char *name); | 150 | struct clk *tegra_get_clock_by_name(const char *name); |
166 | int clk_reparent(struct clk *c, struct clk *parent); | ||
167 | void tegra_clk_init_from_table(struct tegra_clk_init_table *table); | 151 | void tegra_clk_init_from_table(struct tegra_clk_init_table *table); |
168 | unsigned long clk_get_rate_locked(struct clk *c); | ||
169 | int clk_set_rate_locked(struct clk *c, unsigned long rate); | ||
170 | 152 | ||
171 | #endif | 153 | #endif |
diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c index 96fef6bcc651..f3654f830991 100644 --- a/arch/arm/mach-tegra/common.c +++ b/arch/arm/mach-tegra/common.c | |||
@@ -152,6 +152,5 @@ void __init tegra30_init_early(void) | |||
152 | 152 | ||
153 | void __init tegra_init_late(void) | 153 | void __init tegra_init_late(void) |
154 | { | 154 | { |
155 | tegra_clk_debugfs_init(); | ||
156 | tegra_powergate_debugfs_init(); | 155 | tegra_powergate_debugfs_init(); |
157 | } | 156 | } |
diff --git a/arch/arm/mach-tegra/cpu-tegra.c b/arch/arm/mach-tegra/cpu-tegra.c index ceb52db1e2f1..627bf0f4262e 100644 --- a/arch/arm/mach-tegra/cpu-tegra.c +++ b/arch/arm/mach-tegra/cpu-tegra.c | |||
@@ -49,6 +49,8 @@ static struct cpufreq_frequency_table freq_table[] = { | |||
49 | #define NUM_CPUS 2 | 49 | #define NUM_CPUS 2 |
50 | 50 | ||
51 | static struct clk *cpu_clk; | 51 | static struct clk *cpu_clk; |
52 | static struct clk *pll_x_clk; | ||
53 | static struct clk *pll_p_clk; | ||
52 | static struct clk *emc_clk; | 54 | static struct clk *emc_clk; |
53 | 55 | ||
54 | static unsigned long target_cpu_speed[NUM_CPUS]; | 56 | static unsigned long target_cpu_speed[NUM_CPUS]; |
@@ -71,6 +73,42 @@ static unsigned int tegra_getspeed(unsigned int cpu) | |||
71 | return rate; | 73 | return rate; |
72 | } | 74 | } |
73 | 75 | ||
76 | static int tegra_cpu_clk_set_rate(unsigned long rate) | ||
77 | { | ||
78 | int ret; | ||
79 | |||
80 | /* | ||
81 | * Take an extra reference to the main pll so it doesn't turn | ||
82 | * off when we move the cpu off of it | ||
83 | */ | ||
84 | clk_prepare_enable(pll_x_clk); | ||
85 | |||
86 | ret = clk_set_parent(cpu_clk, pll_p_clk); | ||
87 | if (ret) { | ||
88 | pr_err("Failed to switch cpu to clock pll_p\n"); | ||
89 | goto out; | ||
90 | } | ||
91 | |||
92 | if (rate == clk_get_rate(pll_p_clk)) | ||
93 | goto out; | ||
94 | |||
95 | ret = clk_set_rate(pll_x_clk, rate); | ||
96 | if (ret) { | ||
97 | pr_err("Failed to change pll_x to %lu\n", rate); | ||
98 | goto out; | ||
99 | } | ||
100 | |||
101 | ret = clk_set_parent(cpu_clk, pll_x_clk); | ||
102 | if (ret) { | ||
103 | pr_err("Failed to switch cpu to clock pll_x\n"); | ||
104 | goto out; | ||
105 | } | ||
106 | |||
107 | out: | ||
108 | clk_disable_unprepare(pll_x_clk); | ||
109 | return ret; | ||
110 | } | ||
111 | |||
74 | static int tegra_update_cpu_speed(unsigned long rate) | 112 | static int tegra_update_cpu_speed(unsigned long rate) |
75 | { | 113 | { |
76 | int ret = 0; | 114 | int ret = 0; |
@@ -101,7 +139,7 @@ static int tegra_update_cpu_speed(unsigned long rate) | |||
101 | freqs.old, freqs.new); | 139 | freqs.old, freqs.new); |
102 | #endif | 140 | #endif |
103 | 141 | ||
104 | ret = clk_set_rate(cpu_clk, freqs.new * 1000); | 142 | ret = tegra_cpu_clk_set_rate(freqs.new * 1000); |
105 | if (ret) { | 143 | if (ret) { |
106 | pr_err("cpu-tegra: Failed to set cpu frequency to %d kHz\n", | 144 | pr_err("cpu-tegra: Failed to set cpu frequency to %d kHz\n", |
107 | freqs.new); | 145 | freqs.new); |
@@ -183,6 +221,14 @@ static int tegra_cpu_init(struct cpufreq_policy *policy) | |||
183 | if (IS_ERR(cpu_clk)) | 221 | if (IS_ERR(cpu_clk)) |
184 | return PTR_ERR(cpu_clk); | 222 | return PTR_ERR(cpu_clk); |
185 | 223 | ||
224 | pll_x_clk = clk_get_sys(NULL, "pll_x"); | ||
225 | if (IS_ERR(pll_x_clk)) | ||
226 | return PTR_ERR(pll_x_clk); | ||
227 | |||
228 | pll_p_clk = clk_get_sys(NULL, "pll_p"); | ||
229 | if (IS_ERR(pll_p_clk)) | ||
230 | return PTR_ERR(pll_p_clk); | ||
231 | |||
186 | emc_clk = clk_get_sys("cpu", "emc"); | 232 | emc_clk = clk_get_sys("cpu", "emc"); |
187 | if (IS_ERR(emc_clk)) { | 233 | if (IS_ERR(emc_clk)) { |
188 | clk_put(cpu_clk); | 234 | clk_put(cpu_clk); |
diff --git a/arch/arm/mach-tegra/include/mach/clk.h b/arch/arm/mach-tegra/include/mach/clk.h index d97e403303a0..95f3a547c770 100644 --- a/arch/arm/mach-tegra/include/mach/clk.h +++ b/arch/arm/mach-tegra/include/mach/clk.h | |||
@@ -34,7 +34,10 @@ enum tegra_clk_ex_param { | |||
34 | void tegra_periph_reset_deassert(struct clk *c); | 34 | void tegra_periph_reset_deassert(struct clk *c); |
35 | void tegra_periph_reset_assert(struct clk *c); | 35 | void tegra_periph_reset_assert(struct clk *c); |
36 | 36 | ||
37 | #ifndef CONFIG_COMMON_CLK | ||
37 | unsigned long clk_get_rate_all_locked(struct clk *c); | 38 | unsigned long clk_get_rate_all_locked(struct clk *c); |
39 | #endif | ||
40 | |||
38 | void tegra2_sdmmc_tap_delay(struct clk *c, int delay); | 41 | void tegra2_sdmmc_tap_delay(struct clk *c, int delay); |
39 | int tegra_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting); | 42 | int tegra_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting); |
40 | 43 | ||
diff --git a/arch/arm/mach-tegra/tegra20_clocks.c b/arch/arm/mach-tegra/tegra20_clocks.c new file mode 100644 index 000000000000..840ab262272a --- /dev/null +++ b/arch/arm/mach-tegra/tegra20_clocks.c | |||
@@ -0,0 +1,1555 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-tegra/tegra20_clocks.c | ||
3 | * | ||
4 | * Copyright (C) 2010 Google, Inc. | ||
5 | * Copyright (c) 2010-2012 NVIDIA CORPORATION. All rights reserved. | ||
6 | * | ||
7 | * Author: | ||
8 | * Colin Cross <ccross@google.com> | ||
9 | * | ||
10 | * This software is licensed under the terms of the GNU General Public | ||
11 | * License version 2, as published by the Free Software Foundation, and | ||
12 | * may be copied, distributed, and modified under those terms. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | * | ||
19 | */ | ||
20 | |||
21 | #include <linux/kernel.h> | ||
22 | #include <linux/module.h> | ||
23 | #include <linux/list.h> | ||
24 | #include <linux/spinlock.h> | ||
25 | #include <linux/delay.h> | ||
26 | #include <linux/io.h> | ||
27 | #include <linux/clkdev.h> | ||
28 | #include <linux/clk.h> | ||
29 | |||
30 | #include <mach/iomap.h> | ||
31 | #include <mach/suspend.h> | ||
32 | |||
33 | #include "clock.h" | ||
34 | #include "fuse.h" | ||
35 | #include "tegra2_emc.h" | ||
36 | |||
37 | #define RST_DEVICES 0x004 | ||
38 | #define RST_DEVICES_SET 0x300 | ||
39 | #define RST_DEVICES_CLR 0x304 | ||
40 | #define RST_DEVICES_NUM 3 | ||
41 | |||
42 | #define CLK_OUT_ENB 0x010 | ||
43 | #define CLK_OUT_ENB_SET 0x320 | ||
44 | #define CLK_OUT_ENB_CLR 0x324 | ||
45 | #define CLK_OUT_ENB_NUM 3 | ||
46 | |||
47 | #define CLK_MASK_ARM 0x44 | ||
48 | #define MISC_CLK_ENB 0x48 | ||
49 | |||
50 | #define OSC_CTRL 0x50 | ||
51 | #define OSC_CTRL_OSC_FREQ_MASK (3<<30) | ||
52 | #define OSC_CTRL_OSC_FREQ_13MHZ (0<<30) | ||
53 | #define OSC_CTRL_OSC_FREQ_19_2MHZ (1<<30) | ||
54 | #define OSC_CTRL_OSC_FREQ_12MHZ (2<<30) | ||
55 | #define OSC_CTRL_OSC_FREQ_26MHZ (3<<30) | ||
56 | #define OSC_CTRL_MASK (0x3f2 | OSC_CTRL_OSC_FREQ_MASK) | ||
57 | |||
58 | #define OSC_FREQ_DET 0x58 | ||
59 | #define OSC_FREQ_DET_TRIG (1<<31) | ||
60 | |||
61 | #define OSC_FREQ_DET_STATUS 0x5C | ||
62 | #define OSC_FREQ_DET_BUSY (1<<31) | ||
63 | #define OSC_FREQ_DET_CNT_MASK 0xFFFF | ||
64 | |||
65 | #define PERIPH_CLK_SOURCE_I2S1 0x100 | ||
66 | #define PERIPH_CLK_SOURCE_EMC 0x19c | ||
67 | #define PERIPH_CLK_SOURCE_OSC 0x1fc | ||
68 | #define PERIPH_CLK_SOURCE_NUM \ | ||
69 | ((PERIPH_CLK_SOURCE_OSC - PERIPH_CLK_SOURCE_I2S1) / 4) | ||
70 | |||
71 | #define PERIPH_CLK_SOURCE_MASK (3<<30) | ||
72 | #define PERIPH_CLK_SOURCE_SHIFT 30 | ||
73 | #define PERIPH_CLK_SOURCE_PWM_MASK (7<<28) | ||
74 | #define PERIPH_CLK_SOURCE_PWM_SHIFT 28 | ||
75 | #define PERIPH_CLK_SOURCE_ENABLE (1<<28) | ||
76 | #define PERIPH_CLK_SOURCE_DIVU71_MASK 0xFF | ||
77 | #define PERIPH_CLK_SOURCE_DIVU16_MASK 0xFFFF | ||
78 | #define PERIPH_CLK_SOURCE_DIV_SHIFT 0 | ||
79 | |||
80 | #define SDMMC_CLK_INT_FB_SEL (1 << 23) | ||
81 | #define SDMMC_CLK_INT_FB_DLY_SHIFT 16 | ||
82 | #define SDMMC_CLK_INT_FB_DLY_MASK (0xF << SDMMC_CLK_INT_FB_DLY_SHIFT) | ||
83 | |||
84 | #define PLL_BASE 0x0 | ||
85 | #define PLL_BASE_BYPASS (1<<31) | ||
86 | #define PLL_BASE_ENABLE (1<<30) | ||
87 | #define PLL_BASE_REF_ENABLE (1<<29) | ||
88 | #define PLL_BASE_OVERRIDE (1<<28) | ||
89 | #define PLL_BASE_DIVP_MASK (0x7<<20) | ||
90 | #define PLL_BASE_DIVP_SHIFT 20 | ||
91 | #define PLL_BASE_DIVN_MASK (0x3FF<<8) | ||
92 | #define PLL_BASE_DIVN_SHIFT 8 | ||
93 | #define PLL_BASE_DIVM_MASK (0x1F) | ||
94 | #define PLL_BASE_DIVM_SHIFT 0 | ||
95 | |||
96 | #define PLL_OUT_RATIO_MASK (0xFF<<8) | ||
97 | #define PLL_OUT_RATIO_SHIFT 8 | ||
98 | #define PLL_OUT_OVERRIDE (1<<2) | ||
99 | #define PLL_OUT_CLKEN (1<<1) | ||
100 | #define PLL_OUT_RESET_DISABLE (1<<0) | ||
101 | |||
102 | #define PLL_MISC(c) (((c)->flags & PLL_ALT_MISC_REG) ? 0x4 : 0xc) | ||
103 | |||
104 | #define PLL_MISC_DCCON_SHIFT 20 | ||
105 | #define PLL_MISC_CPCON_SHIFT 8 | ||
106 | #define PLL_MISC_CPCON_MASK (0xF<<PLL_MISC_CPCON_SHIFT) | ||
107 | #define PLL_MISC_LFCON_SHIFT 4 | ||
108 | #define PLL_MISC_LFCON_MASK (0xF<<PLL_MISC_LFCON_SHIFT) | ||
109 | #define PLL_MISC_VCOCON_SHIFT 0 | ||
110 | #define PLL_MISC_VCOCON_MASK (0xF<<PLL_MISC_VCOCON_SHIFT) | ||
111 | |||
112 | #define PLLU_BASE_POST_DIV (1<<20) | ||
113 | |||
114 | #define PLLD_MISC_CLKENABLE (1<<30) | ||
115 | #define PLLD_MISC_DIV_RST (1<<23) | ||
116 | #define PLLD_MISC_DCCON_SHIFT 12 | ||
117 | |||
118 | #define PLLE_MISC_READY (1 << 15) | ||
119 | |||
120 | #define PERIPH_CLK_TO_ENB_REG(c) ((c->u.periph.clk_num / 32) * 4) | ||
121 | #define PERIPH_CLK_TO_ENB_SET_REG(c) ((c->u.periph.clk_num / 32) * 8) | ||
122 | #define PERIPH_CLK_TO_ENB_BIT(c) (1 << (c->u.periph.clk_num % 32)) | ||
123 | |||
124 | #define SUPER_CLK_MUX 0x00 | ||
125 | #define SUPER_STATE_SHIFT 28 | ||
126 | #define SUPER_STATE_MASK (0xF << SUPER_STATE_SHIFT) | ||
127 | #define SUPER_STATE_STANDBY (0x0 << SUPER_STATE_SHIFT) | ||
128 | #define SUPER_STATE_IDLE (0x1 << SUPER_STATE_SHIFT) | ||
129 | #define SUPER_STATE_RUN (0x2 << SUPER_STATE_SHIFT) | ||
130 | #define SUPER_STATE_IRQ (0x3 << SUPER_STATE_SHIFT) | ||
131 | #define SUPER_STATE_FIQ (0x4 << SUPER_STATE_SHIFT) | ||
132 | #define SUPER_SOURCE_MASK 0xF | ||
133 | #define SUPER_FIQ_SOURCE_SHIFT 12 | ||
134 | #define SUPER_IRQ_SOURCE_SHIFT 8 | ||
135 | #define SUPER_RUN_SOURCE_SHIFT 4 | ||
136 | #define SUPER_IDLE_SOURCE_SHIFT 0 | ||
137 | |||
138 | #define SUPER_CLK_DIVIDER 0x04 | ||
139 | |||
140 | #define BUS_CLK_DISABLE (1<<3) | ||
141 | #define BUS_CLK_DIV_MASK 0x3 | ||
142 | |||
143 | #define PMC_CTRL 0x0 | ||
144 | #define PMC_CTRL_BLINK_ENB (1 << 7) | ||
145 | |||
146 | #define PMC_DPD_PADS_ORIDE 0x1c | ||
147 | #define PMC_DPD_PADS_ORIDE_BLINK_ENB (1 << 20) | ||
148 | |||
149 | #define PMC_BLINK_TIMER_DATA_ON_SHIFT 0 | ||
150 | #define PMC_BLINK_TIMER_DATA_ON_MASK 0x7fff | ||
151 | #define PMC_BLINK_TIMER_ENB (1 << 15) | ||
152 | #define PMC_BLINK_TIMER_DATA_OFF_SHIFT 16 | ||
153 | #define PMC_BLINK_TIMER_DATA_OFF_MASK 0xffff | ||
154 | |||
155 | static void __iomem *reg_clk_base = IO_ADDRESS(TEGRA_CLK_RESET_BASE); | ||
156 | static void __iomem *reg_pmc_base = IO_ADDRESS(TEGRA_PMC_BASE); | ||
157 | |||
158 | /* | ||
159 | * Some clocks share a register with other clocks. Any clock op that | ||
160 | * non-atomically modifies a register used by another clock must lock | ||
161 | * clock_register_lock first. | ||
162 | */ | ||
163 | static DEFINE_SPINLOCK(clock_register_lock); | ||
164 | |||
165 | /* | ||
166 | * Some peripheral clocks share an enable bit, so refcount the enable bits | ||
167 | * in registers CLK_ENABLE_L, CLK_ENABLE_H, and CLK_ENABLE_U | ||
168 | */ | ||
169 | static int tegra_periph_clk_enable_refcount[3 * 32]; | ||
170 | |||
171 | #define clk_writel(value, reg) \ | ||
172 | __raw_writel(value, reg_clk_base + (reg)) | ||
173 | #define clk_readl(reg) \ | ||
174 | __raw_readl(reg_clk_base + (reg)) | ||
175 | #define pmc_writel(value, reg) \ | ||
176 | __raw_writel(value, reg_pmc_base + (reg)) | ||
177 | #define pmc_readl(reg) \ | ||
178 | __raw_readl(reg_pmc_base + (reg)) | ||
179 | |||
180 | static unsigned long clk_measure_input_freq(void) | ||
181 | { | ||
182 | u32 clock_autodetect; | ||
183 | clk_writel(OSC_FREQ_DET_TRIG | 1, OSC_FREQ_DET); | ||
184 | do {} while (clk_readl(OSC_FREQ_DET_STATUS) & OSC_FREQ_DET_BUSY); | ||
185 | clock_autodetect = clk_readl(OSC_FREQ_DET_STATUS); | ||
186 | if (clock_autodetect >= 732 - 3 && clock_autodetect <= 732 + 3) { | ||
187 | return 12000000; | ||
188 | } else if (clock_autodetect >= 794 - 3 && clock_autodetect <= 794 + 3) { | ||
189 | return 13000000; | ||
190 | } else if (clock_autodetect >= 1172 - 3 && clock_autodetect <= 1172 + 3) { | ||
191 | return 19200000; | ||
192 | } else if (clock_autodetect >= 1587 - 3 && clock_autodetect <= 1587 + 3) { | ||
193 | return 26000000; | ||
194 | } else { | ||
195 | pr_err("%s: Unexpected clock autodetect value %d", | ||
196 | __func__, clock_autodetect); | ||
197 | BUG(); | ||
198 | return 0; | ||
199 | } | ||
200 | } | ||
201 | |||
202 | static int clk_div71_get_divider(unsigned long parent_rate, unsigned long rate) | ||
203 | { | ||
204 | s64 divider_u71 = parent_rate * 2; | ||
205 | divider_u71 += rate - 1; | ||
206 | do_div(divider_u71, rate); | ||
207 | |||
208 | if (divider_u71 - 2 < 0) | ||
209 | return 0; | ||
210 | |||
211 | if (divider_u71 - 2 > 255) | ||
212 | return -EINVAL; | ||
213 | |||
214 | return divider_u71 - 2; | ||
215 | } | ||
216 | |||
217 | static int clk_div16_get_divider(unsigned long parent_rate, unsigned long rate) | ||
218 | { | ||
219 | s64 divider_u16; | ||
220 | |||
221 | divider_u16 = parent_rate; | ||
222 | divider_u16 += rate - 1; | ||
223 | do_div(divider_u16, rate); | ||
224 | |||
225 | if (divider_u16 - 1 < 0) | ||
226 | return 0; | ||
227 | |||
228 | if (divider_u16 - 1 > 0xFFFF) | ||
229 | return -EINVAL; | ||
230 | |||
231 | return divider_u16 - 1; | ||
232 | } | ||
233 | |||
234 | static unsigned long tegra_clk_fixed_recalc_rate(struct clk_hw *hw, | ||
235 | unsigned long parent_rate) | ||
236 | { | ||
237 | return to_clk_tegra(hw)->fixed_rate; | ||
238 | } | ||
239 | |||
240 | struct clk_ops tegra_clk_32k_ops = { | ||
241 | .recalc_rate = tegra_clk_fixed_recalc_rate, | ||
242 | }; | ||
243 | |||
244 | /* clk_m functions */ | ||
245 | static unsigned long tegra20_clk_m_recalc_rate(struct clk_hw *hw, | ||
246 | unsigned long prate) | ||
247 | { | ||
248 | if (!to_clk_tegra(hw)->fixed_rate) | ||
249 | to_clk_tegra(hw)->fixed_rate = clk_measure_input_freq(); | ||
250 | return to_clk_tegra(hw)->fixed_rate; | ||
251 | } | ||
252 | |||
253 | static void tegra20_clk_m_init(struct clk_hw *hw) | ||
254 | { | ||
255 | struct clk_tegra *c = to_clk_tegra(hw); | ||
256 | u32 osc_ctrl = clk_readl(OSC_CTRL); | ||
257 | u32 auto_clock_control = osc_ctrl & ~OSC_CTRL_OSC_FREQ_MASK; | ||
258 | |||
259 | switch (c->fixed_rate) { | ||
260 | case 12000000: | ||
261 | auto_clock_control |= OSC_CTRL_OSC_FREQ_12MHZ; | ||
262 | break; | ||
263 | case 13000000: | ||
264 | auto_clock_control |= OSC_CTRL_OSC_FREQ_13MHZ; | ||
265 | break; | ||
266 | case 19200000: | ||
267 | auto_clock_control |= OSC_CTRL_OSC_FREQ_19_2MHZ; | ||
268 | break; | ||
269 | case 26000000: | ||
270 | auto_clock_control |= OSC_CTRL_OSC_FREQ_26MHZ; | ||
271 | break; | ||
272 | default: | ||
273 | BUG(); | ||
274 | } | ||
275 | clk_writel(auto_clock_control, OSC_CTRL); | ||
276 | } | ||
277 | |||
278 | struct clk_ops tegra_clk_m_ops = { | ||
279 | .init = tegra20_clk_m_init, | ||
280 | .recalc_rate = tegra20_clk_m_recalc_rate, | ||
281 | }; | ||
282 | |||
283 | /* super clock functions */ | ||
284 | /* "super clocks" on tegra have two-stage muxes and a clock skipping | ||
285 | * super divider. We will ignore the clock skipping divider, since we | ||
286 | * can't lower the voltage when using the clock skip, but we can if we | ||
287 | * lower the PLL frequency. | ||
288 | */ | ||
289 | static int tegra20_super_clk_is_enabled(struct clk_hw *hw) | ||
290 | { | ||
291 | struct clk_tegra *c = to_clk_tegra(hw); | ||
292 | u32 val; | ||
293 | |||
294 | val = clk_readl(c->reg + SUPER_CLK_MUX); | ||
295 | BUG_ON(((val & SUPER_STATE_MASK) != SUPER_STATE_RUN) && | ||
296 | ((val & SUPER_STATE_MASK) != SUPER_STATE_IDLE)); | ||
297 | c->state = ON; | ||
298 | return c->state; | ||
299 | } | ||
300 | |||
301 | static int tegra20_super_clk_enable(struct clk_hw *hw) | ||
302 | { | ||
303 | struct clk_tegra *c = to_clk_tegra(hw); | ||
304 | clk_writel(0, c->reg + SUPER_CLK_DIVIDER); | ||
305 | return 0; | ||
306 | } | ||
307 | |||
308 | static void tegra20_super_clk_disable(struct clk_hw *hw) | ||
309 | { | ||
310 | pr_debug("%s on clock %s\n", __func__, __clk_get_name(hw->clk)); | ||
311 | |||
312 | /* oops - don't disable the CPU clock! */ | ||
313 | BUG(); | ||
314 | } | ||
315 | |||
316 | static u8 tegra20_super_clk_get_parent(struct clk_hw *hw) | ||
317 | { | ||
318 | struct clk_tegra *c = to_clk_tegra(hw); | ||
319 | int val = clk_readl(c->reg + SUPER_CLK_MUX); | ||
320 | int source; | ||
321 | int shift; | ||
322 | |||
323 | BUG_ON(((val & SUPER_STATE_MASK) != SUPER_STATE_RUN) && | ||
324 | ((val & SUPER_STATE_MASK) != SUPER_STATE_IDLE)); | ||
325 | shift = ((val & SUPER_STATE_MASK) == SUPER_STATE_IDLE) ? | ||
326 | SUPER_IDLE_SOURCE_SHIFT : SUPER_RUN_SOURCE_SHIFT; | ||
327 | source = (val >> shift) & SUPER_SOURCE_MASK; | ||
328 | return source; | ||
329 | } | ||
330 | |||
331 | static int tegra20_super_clk_set_parent(struct clk_hw *hw, u8 index) | ||
332 | { | ||
333 | struct clk_tegra *c = to_clk_tegra(hw); | ||
334 | u32 val = clk_readl(c->reg + SUPER_CLK_MUX); | ||
335 | int shift; | ||
336 | |||
337 | BUG_ON(((val & SUPER_STATE_MASK) != SUPER_STATE_RUN) && | ||
338 | ((val & SUPER_STATE_MASK) != SUPER_STATE_IDLE)); | ||
339 | shift = ((val & SUPER_STATE_MASK) == SUPER_STATE_IDLE) ? | ||
340 | SUPER_IDLE_SOURCE_SHIFT : SUPER_RUN_SOURCE_SHIFT; | ||
341 | val &= ~(SUPER_SOURCE_MASK << shift); | ||
342 | val |= index << shift; | ||
343 | |||
344 | clk_writel(val, c->reg); | ||
345 | |||
346 | return 0; | ||
347 | } | ||
348 | |||
349 | /* FIX ME: Need to switch parents to change the source PLL rate */ | ||
350 | static unsigned long tegra20_super_clk_recalc_rate(struct clk_hw *hw, | ||
351 | unsigned long prate) | ||
352 | { | ||
353 | return prate; | ||
354 | } | ||
355 | |||
356 | static long tegra20_super_clk_round_rate(struct clk_hw *hw, unsigned long rate, | ||
357 | unsigned long *prate) | ||
358 | { | ||
359 | return *prate; | ||
360 | } | ||
361 | |||
362 | static int tegra20_super_clk_set_rate(struct clk_hw *hw, unsigned long rate, | ||
363 | unsigned long parent_rate) | ||
364 | { | ||
365 | return 0; | ||
366 | } | ||
367 | |||
368 | struct clk_ops tegra_super_ops = { | ||
369 | .is_enabled = tegra20_super_clk_is_enabled, | ||
370 | .enable = tegra20_super_clk_enable, | ||
371 | .disable = tegra20_super_clk_disable, | ||
372 | .set_parent = tegra20_super_clk_set_parent, | ||
373 | .get_parent = tegra20_super_clk_get_parent, | ||
374 | .set_rate = tegra20_super_clk_set_rate, | ||
375 | .round_rate = tegra20_super_clk_round_rate, | ||
376 | .recalc_rate = tegra20_super_clk_recalc_rate, | ||
377 | }; | ||
378 | |||
379 | static unsigned long tegra20_twd_clk_recalc_rate(struct clk_hw *hw, | ||
380 | unsigned long parent_rate) | ||
381 | { | ||
382 | struct clk_tegra *c = to_clk_tegra(hw); | ||
383 | u64 rate = parent_rate; | ||
384 | |||
385 | if (c->mul != 0 && c->div != 0) { | ||
386 | rate *= c->mul; | ||
387 | rate += c->div - 1; /* round up */ | ||
388 | do_div(rate, c->div); | ||
389 | } | ||
390 | |||
391 | return rate; | ||
392 | } | ||
393 | |||
394 | struct clk_ops tegra_twd_ops = { | ||
395 | .recalc_rate = tegra20_twd_clk_recalc_rate, | ||
396 | }; | ||
397 | |||
398 | static u8 tegra20_cop_clk_get_parent(struct clk_hw *hw) | ||
399 | { | ||
400 | return 0; | ||
401 | } | ||
402 | |||
403 | struct clk_ops tegra_cop_ops = { | ||
404 | .get_parent = tegra20_cop_clk_get_parent, | ||
405 | }; | ||
406 | |||
407 | /* virtual cop clock functions. Used to acquire the fake 'cop' clock to | ||
408 | * reset the COP block (i.e. AVP) */ | ||
409 | void tegra2_cop_clk_reset(struct clk_hw *hw, bool assert) | ||
410 | { | ||
411 | unsigned long reg = assert ? RST_DEVICES_SET : RST_DEVICES_CLR; | ||
412 | |||
413 | pr_debug("%s %s\n", __func__, assert ? "assert" : "deassert"); | ||
414 | clk_writel(1 << 1, reg); | ||
415 | } | ||
416 | |||
417 | /* bus clock functions */ | ||
418 | static int tegra20_bus_clk_is_enabled(struct clk_hw *hw) | ||
419 | { | ||
420 | struct clk_tegra *c = to_clk_tegra(hw); | ||
421 | u32 val = clk_readl(c->reg); | ||
422 | |||
423 | c->state = ((val >> c->reg_shift) & BUS_CLK_DISABLE) ? OFF : ON; | ||
424 | return c->state; | ||
425 | } | ||
426 | |||
427 | static int tegra20_bus_clk_enable(struct clk_hw *hw) | ||
428 | { | ||
429 | struct clk_tegra *c = to_clk_tegra(hw); | ||
430 | unsigned long flags; | ||
431 | u32 val; | ||
432 | |||
433 | spin_lock_irqsave(&clock_register_lock, flags); | ||
434 | |||
435 | val = clk_readl(c->reg); | ||
436 | val &= ~(BUS_CLK_DISABLE << c->reg_shift); | ||
437 | clk_writel(val, c->reg); | ||
438 | |||
439 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
440 | |||
441 | return 0; | ||
442 | } | ||
443 | |||
444 | static void tegra20_bus_clk_disable(struct clk_hw *hw) | ||
445 | { | ||
446 | struct clk_tegra *c = to_clk_tegra(hw); | ||
447 | unsigned long flags; | ||
448 | u32 val; | ||
449 | |||
450 | spin_lock_irqsave(&clock_register_lock, flags); | ||
451 | |||
452 | val = clk_readl(c->reg); | ||
453 | val |= BUS_CLK_DISABLE << c->reg_shift; | ||
454 | clk_writel(val, c->reg); | ||
455 | |||
456 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
457 | } | ||
458 | |||
459 | static unsigned long tegra20_bus_clk_recalc_rate(struct clk_hw *hw, | ||
460 | unsigned long prate) | ||
461 | { | ||
462 | struct clk_tegra *c = to_clk_tegra(hw); | ||
463 | u32 val = clk_readl(c->reg); | ||
464 | u64 rate = prate; | ||
465 | |||
466 | c->div = ((val >> c->reg_shift) & BUS_CLK_DIV_MASK) + 1; | ||
467 | c->mul = 1; | ||
468 | |||
469 | if (c->mul != 0 && c->div != 0) { | ||
470 | rate *= c->mul; | ||
471 | rate += c->div - 1; /* round up */ | ||
472 | do_div(rate, c->div); | ||
473 | } | ||
474 | return rate; | ||
475 | } | ||
476 | |||
477 | static int tegra20_bus_clk_set_rate(struct clk_hw *hw, unsigned long rate, | ||
478 | unsigned long parent_rate) | ||
479 | { | ||
480 | struct clk_tegra *c = to_clk_tegra(hw); | ||
481 | int ret = -EINVAL; | ||
482 | unsigned long flags; | ||
483 | u32 val; | ||
484 | int i; | ||
485 | |||
486 | spin_lock_irqsave(&clock_register_lock, flags); | ||
487 | |||
488 | val = clk_readl(c->reg); | ||
489 | for (i = 1; i <= 4; i++) { | ||
490 | if (rate == parent_rate / i) { | ||
491 | val &= ~(BUS_CLK_DIV_MASK << c->reg_shift); | ||
492 | val |= (i - 1) << c->reg_shift; | ||
493 | clk_writel(val, c->reg); | ||
494 | c->div = i; | ||
495 | c->mul = 1; | ||
496 | ret = 0; | ||
497 | break; | ||
498 | } | ||
499 | } | ||
500 | |||
501 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
502 | |||
503 | return ret; | ||
504 | } | ||
505 | |||
506 | static long tegra20_bus_clk_round_rate(struct clk_hw *hw, unsigned long rate, | ||
507 | unsigned long *prate) | ||
508 | { | ||
509 | unsigned long parent_rate = *prate; | ||
510 | s64 divider; | ||
511 | |||
512 | if (rate >= parent_rate) | ||
513 | return rate; | ||
514 | |||
515 | divider = parent_rate; | ||
516 | divider += rate - 1; | ||
517 | do_div(divider, rate); | ||
518 | |||
519 | if (divider < 0) | ||
520 | return divider; | ||
521 | |||
522 | if (divider > 4) | ||
523 | divider = 4; | ||
524 | do_div(parent_rate, divider); | ||
525 | |||
526 | return parent_rate; | ||
527 | } | ||
528 | |||
529 | struct clk_ops tegra_bus_ops = { | ||
530 | .is_enabled = tegra20_bus_clk_is_enabled, | ||
531 | .enable = tegra20_bus_clk_enable, | ||
532 | .disable = tegra20_bus_clk_disable, | ||
533 | .set_rate = tegra20_bus_clk_set_rate, | ||
534 | .round_rate = tegra20_bus_clk_round_rate, | ||
535 | .recalc_rate = tegra20_bus_clk_recalc_rate, | ||
536 | }; | ||
537 | |||
538 | /* Blink output functions */ | ||
539 | static int tegra20_blink_clk_is_enabled(struct clk_hw *hw) | ||
540 | { | ||
541 | struct clk_tegra *c = to_clk_tegra(hw); | ||
542 | u32 val; | ||
543 | |||
544 | val = pmc_readl(PMC_CTRL); | ||
545 | c->state = (val & PMC_CTRL_BLINK_ENB) ? ON : OFF; | ||
546 | return c->state; | ||
547 | } | ||
548 | |||
549 | static unsigned long tegra20_blink_clk_recalc_rate(struct clk_hw *hw, | ||
550 | unsigned long prate) | ||
551 | { | ||
552 | struct clk_tegra *c = to_clk_tegra(hw); | ||
553 | u64 rate = prate; | ||
554 | u32 val; | ||
555 | |||
556 | c->mul = 1; | ||
557 | val = pmc_readl(c->reg); | ||
558 | |||
559 | if (val & PMC_BLINK_TIMER_ENB) { | ||
560 | unsigned int on_off; | ||
561 | |||
562 | on_off = (val >> PMC_BLINK_TIMER_DATA_ON_SHIFT) & | ||
563 | PMC_BLINK_TIMER_DATA_ON_MASK; | ||
564 | val >>= PMC_BLINK_TIMER_DATA_OFF_SHIFT; | ||
565 | val &= PMC_BLINK_TIMER_DATA_OFF_MASK; | ||
566 | on_off += val; | ||
567 | /* each tick in the blink timer is 4 32KHz clocks */ | ||
568 | c->div = on_off * 4; | ||
569 | } else { | ||
570 | c->div = 1; | ||
571 | } | ||
572 | |||
573 | if (c->mul != 0 && c->div != 0) { | ||
574 | rate *= c->mul; | ||
575 | rate += c->div - 1; /* round up */ | ||
576 | do_div(rate, c->div); | ||
577 | } | ||
578 | return rate; | ||
579 | } | ||
580 | |||
581 | static int tegra20_blink_clk_enable(struct clk_hw *hw) | ||
582 | { | ||
583 | u32 val; | ||
584 | |||
585 | val = pmc_readl(PMC_DPD_PADS_ORIDE); | ||
586 | pmc_writel(val | PMC_DPD_PADS_ORIDE_BLINK_ENB, PMC_DPD_PADS_ORIDE); | ||
587 | |||
588 | val = pmc_readl(PMC_CTRL); | ||
589 | pmc_writel(val | PMC_CTRL_BLINK_ENB, PMC_CTRL); | ||
590 | |||
591 | return 0; | ||
592 | } | ||
593 | |||
594 | static void tegra20_blink_clk_disable(struct clk_hw *hw) | ||
595 | { | ||
596 | u32 val; | ||
597 | |||
598 | val = pmc_readl(PMC_CTRL); | ||
599 | pmc_writel(val & ~PMC_CTRL_BLINK_ENB, PMC_CTRL); | ||
600 | |||
601 | val = pmc_readl(PMC_DPD_PADS_ORIDE); | ||
602 | pmc_writel(val & ~PMC_DPD_PADS_ORIDE_BLINK_ENB, PMC_DPD_PADS_ORIDE); | ||
603 | } | ||
604 | |||
605 | static int tegra20_blink_clk_set_rate(struct clk_hw *hw, unsigned long rate, | ||
606 | unsigned long parent_rate) | ||
607 | { | ||
608 | struct clk_tegra *c = to_clk_tegra(hw); | ||
609 | |||
610 | if (rate >= parent_rate) { | ||
611 | c->div = 1; | ||
612 | pmc_writel(0, c->reg); | ||
613 | } else { | ||
614 | unsigned int on_off; | ||
615 | u32 val; | ||
616 | |||
617 | on_off = DIV_ROUND_UP(parent_rate / 8, rate); | ||
618 | c->div = on_off * 8; | ||
619 | |||
620 | val = (on_off & PMC_BLINK_TIMER_DATA_ON_MASK) << | ||
621 | PMC_BLINK_TIMER_DATA_ON_SHIFT; | ||
622 | on_off &= PMC_BLINK_TIMER_DATA_OFF_MASK; | ||
623 | on_off <<= PMC_BLINK_TIMER_DATA_OFF_SHIFT; | ||
624 | val |= on_off; | ||
625 | val |= PMC_BLINK_TIMER_ENB; | ||
626 | pmc_writel(val, c->reg); | ||
627 | } | ||
628 | |||
629 | return 0; | ||
630 | } | ||
631 | |||
632 | static long tegra20_blink_clk_round_rate(struct clk_hw *hw, unsigned long rate, | ||
633 | unsigned long *prate) | ||
634 | { | ||
635 | int div; | ||
636 | int mul; | ||
637 | long round_rate = *prate; | ||
638 | |||
639 | mul = 1; | ||
640 | |||
641 | if (rate >= *prate) { | ||
642 | div = 1; | ||
643 | } else { | ||
644 | div = DIV_ROUND_UP(*prate / 8, rate); | ||
645 | div *= 8; | ||
646 | } | ||
647 | |||
648 | round_rate *= mul; | ||
649 | round_rate += div - 1; | ||
650 | do_div(round_rate, div); | ||
651 | |||
652 | return round_rate; | ||
653 | } | ||
654 | |||
655 | struct clk_ops tegra_blink_clk_ops = { | ||
656 | .is_enabled = tegra20_blink_clk_is_enabled, | ||
657 | .enable = tegra20_blink_clk_enable, | ||
658 | .disable = tegra20_blink_clk_disable, | ||
659 | .set_rate = tegra20_blink_clk_set_rate, | ||
660 | .round_rate = tegra20_blink_clk_round_rate, | ||
661 | .recalc_rate = tegra20_blink_clk_recalc_rate, | ||
662 | }; | ||
663 | |||
664 | /* PLL Functions */ | ||
665 | static int tegra20_pll_clk_wait_for_lock(struct clk_tegra *c) | ||
666 | { | ||
667 | udelay(c->u.pll.lock_delay); | ||
668 | return 0; | ||
669 | } | ||
670 | |||
671 | static int tegra20_pll_clk_is_enabled(struct clk_hw *hw) | ||
672 | { | ||
673 | struct clk_tegra *c = to_clk_tegra(hw); | ||
674 | u32 val = clk_readl(c->reg + PLL_BASE); | ||
675 | |||
676 | c->state = (val & PLL_BASE_ENABLE) ? ON : OFF; | ||
677 | return c->state; | ||
678 | } | ||
679 | |||
680 | static unsigned long tegra20_pll_clk_recalc_rate(struct clk_hw *hw, | ||
681 | unsigned long prate) | ||
682 | { | ||
683 | struct clk_tegra *c = to_clk_tegra(hw); | ||
684 | u32 val = clk_readl(c->reg + PLL_BASE); | ||
685 | u64 rate = prate; | ||
686 | |||
687 | if (c->flags & PLL_FIXED && !(val & PLL_BASE_OVERRIDE)) { | ||
688 | const struct clk_pll_freq_table *sel; | ||
689 | for (sel = c->u.pll.freq_table; sel->input_rate != 0; sel++) { | ||
690 | if (sel->input_rate == prate && | ||
691 | sel->output_rate == c->u.pll.fixed_rate) { | ||
692 | c->mul = sel->n; | ||
693 | c->div = sel->m * sel->p; | ||
694 | break; | ||
695 | } | ||
696 | } | ||
697 | pr_err("Clock %s has unknown fixed frequency\n", | ||
698 | __clk_get_name(hw->clk)); | ||
699 | BUG(); | ||
700 | } else if (val & PLL_BASE_BYPASS) { | ||
701 | c->mul = 1; | ||
702 | c->div = 1; | ||
703 | } else { | ||
704 | c->mul = (val & PLL_BASE_DIVN_MASK) >> PLL_BASE_DIVN_SHIFT; | ||
705 | c->div = (val & PLL_BASE_DIVM_MASK) >> PLL_BASE_DIVM_SHIFT; | ||
706 | if (c->flags & PLLU) | ||
707 | c->div *= (val & PLLU_BASE_POST_DIV) ? 1 : 2; | ||
708 | else | ||
709 | c->div *= (val & PLL_BASE_DIVP_MASK) ? 2 : 1; | ||
710 | } | ||
711 | |||
712 | if (c->mul != 0 && c->div != 0) { | ||
713 | rate *= c->mul; | ||
714 | rate += c->div - 1; /* round up */ | ||
715 | do_div(rate, c->div); | ||
716 | } | ||
717 | return rate; | ||
718 | } | ||
719 | |||
720 | static int tegra20_pll_clk_enable(struct clk_hw *hw) | ||
721 | { | ||
722 | struct clk_tegra *c = to_clk_tegra(hw); | ||
723 | u32 val; | ||
724 | pr_debug("%s on clock %s\n", __func__, __clk_get_name(hw->clk)); | ||
725 | |||
726 | val = clk_readl(c->reg + PLL_BASE); | ||
727 | val &= ~PLL_BASE_BYPASS; | ||
728 | val |= PLL_BASE_ENABLE; | ||
729 | clk_writel(val, c->reg + PLL_BASE); | ||
730 | |||
731 | tegra20_pll_clk_wait_for_lock(c); | ||
732 | |||
733 | return 0; | ||
734 | } | ||
735 | |||
736 | static void tegra20_pll_clk_disable(struct clk_hw *hw) | ||
737 | { | ||
738 | struct clk_tegra *c = to_clk_tegra(hw); | ||
739 | u32 val; | ||
740 | pr_debug("%s on clock %s\n", __func__, __clk_get_name(hw->clk)); | ||
741 | |||
742 | val = clk_readl(c->reg); | ||
743 | val &= ~(PLL_BASE_BYPASS | PLL_BASE_ENABLE); | ||
744 | clk_writel(val, c->reg); | ||
745 | } | ||
746 | |||
747 | static int tegra20_pll_clk_set_rate(struct clk_hw *hw, unsigned long rate, | ||
748 | unsigned long parent_rate) | ||
749 | { | ||
750 | struct clk_tegra *c = to_clk_tegra(hw); | ||
751 | unsigned long input_rate = parent_rate; | ||
752 | const struct clk_pll_freq_table *sel; | ||
753 | u32 val; | ||
754 | |||
755 | pr_debug("%s: %s %lu\n", __func__, __clk_get_name(hw->clk), rate); | ||
756 | |||
757 | if (c->flags & PLL_FIXED) { | ||
758 | int ret = 0; | ||
759 | if (rate != c->u.pll.fixed_rate) { | ||
760 | pr_err("%s: Can not change %s fixed rate %lu to %lu\n", | ||
761 | __func__, __clk_get_name(hw->clk), | ||
762 | c->u.pll.fixed_rate, rate); | ||
763 | ret = -EINVAL; | ||
764 | } | ||
765 | return ret; | ||
766 | } | ||
767 | |||
768 | for (sel = c->u.pll.freq_table; sel->input_rate != 0; sel++) { | ||
769 | if (sel->input_rate == input_rate && sel->output_rate == rate) { | ||
770 | c->mul = sel->n; | ||
771 | c->div = sel->m * sel->p; | ||
772 | |||
773 | val = clk_readl(c->reg + PLL_BASE); | ||
774 | if (c->flags & PLL_FIXED) | ||
775 | val |= PLL_BASE_OVERRIDE; | ||
776 | val &= ~(PLL_BASE_DIVP_MASK | PLL_BASE_DIVN_MASK | | ||
777 | PLL_BASE_DIVM_MASK); | ||
778 | val |= (sel->m << PLL_BASE_DIVM_SHIFT) | | ||
779 | (sel->n << PLL_BASE_DIVN_SHIFT); | ||
780 | BUG_ON(sel->p < 1 || sel->p > 2); | ||
781 | if (c->flags & PLLU) { | ||
782 | if (sel->p == 1) | ||
783 | val |= PLLU_BASE_POST_DIV; | ||
784 | } else { | ||
785 | if (sel->p == 2) | ||
786 | val |= 1 << PLL_BASE_DIVP_SHIFT; | ||
787 | } | ||
788 | clk_writel(val, c->reg + PLL_BASE); | ||
789 | |||
790 | if (c->flags & PLL_HAS_CPCON) { | ||
791 | val = clk_readl(c->reg + PLL_MISC(c)); | ||
792 | val &= ~PLL_MISC_CPCON_MASK; | ||
793 | val |= sel->cpcon << PLL_MISC_CPCON_SHIFT; | ||
794 | clk_writel(val, c->reg + PLL_MISC(c)); | ||
795 | } | ||
796 | |||
797 | if (c->state == ON) | ||
798 | tegra20_pll_clk_enable(hw); | ||
799 | return 0; | ||
800 | } | ||
801 | } | ||
802 | return -EINVAL; | ||
803 | } | ||
804 | |||
805 | static long tegra20_pll_clk_round_rate(struct clk_hw *hw, unsigned long rate, | ||
806 | unsigned long *prate) | ||
807 | { | ||
808 | struct clk_tegra *c = to_clk_tegra(hw); | ||
809 | const struct clk_pll_freq_table *sel; | ||
810 | unsigned long input_rate = *prate; | ||
811 | u64 output_rate = *prate; | ||
812 | int mul; | ||
813 | int div; | ||
814 | |||
815 | if (c->flags & PLL_FIXED) | ||
816 | return c->u.pll.fixed_rate; | ||
817 | |||
818 | for (sel = c->u.pll.freq_table; sel->input_rate != 0; sel++) | ||
819 | if (sel->input_rate == input_rate && sel->output_rate == rate) { | ||
820 | mul = sel->n; | ||
821 | div = sel->m * sel->p; | ||
822 | break; | ||
823 | } | ||
824 | |||
825 | if (sel->input_rate == 0) | ||
826 | return -EINVAL; | ||
827 | |||
828 | output_rate *= mul; | ||
829 | output_rate += div - 1; /* round up */ | ||
830 | do_div(output_rate, div); | ||
831 | |||
832 | return output_rate; | ||
833 | } | ||
834 | |||
835 | struct clk_ops tegra_pll_ops = { | ||
836 | .is_enabled = tegra20_pll_clk_is_enabled, | ||
837 | .enable = tegra20_pll_clk_enable, | ||
838 | .disable = tegra20_pll_clk_disable, | ||
839 | .set_rate = tegra20_pll_clk_set_rate, | ||
840 | .recalc_rate = tegra20_pll_clk_recalc_rate, | ||
841 | .round_rate = tegra20_pll_clk_round_rate, | ||
842 | }; | ||
843 | |||
844 | static void tegra20_pllx_clk_init(struct clk_hw *hw) | ||
845 | { | ||
846 | struct clk_tegra *c = to_clk_tegra(hw); | ||
847 | |||
848 | if (tegra_sku_id == 7) | ||
849 | c->max_rate = 750000000; | ||
850 | } | ||
851 | |||
852 | struct clk_ops tegra_pllx_ops = { | ||
853 | .init = tegra20_pllx_clk_init, | ||
854 | .is_enabled = tegra20_pll_clk_is_enabled, | ||
855 | .enable = tegra20_pll_clk_enable, | ||
856 | .disable = tegra20_pll_clk_disable, | ||
857 | .set_rate = tegra20_pll_clk_set_rate, | ||
858 | .recalc_rate = tegra20_pll_clk_recalc_rate, | ||
859 | .round_rate = tegra20_pll_clk_round_rate, | ||
860 | }; | ||
861 | |||
862 | static int tegra20_plle_clk_enable(struct clk_hw *hw) | ||
863 | { | ||
864 | struct clk_tegra *c = to_clk_tegra(hw); | ||
865 | u32 val; | ||
866 | |||
867 | pr_debug("%s on clock %s\n", __func__, __clk_get_name(hw->clk)); | ||
868 | |||
869 | mdelay(1); | ||
870 | |||
871 | val = clk_readl(c->reg + PLL_BASE); | ||
872 | if (!(val & PLLE_MISC_READY)) | ||
873 | return -EBUSY; | ||
874 | |||
875 | val = clk_readl(c->reg + PLL_BASE); | ||
876 | val |= PLL_BASE_ENABLE | PLL_BASE_BYPASS; | ||
877 | clk_writel(val, c->reg + PLL_BASE); | ||
878 | |||
879 | return 0; | ||
880 | } | ||
881 | |||
882 | struct clk_ops tegra_plle_ops = { | ||
883 | .is_enabled = tegra20_pll_clk_is_enabled, | ||
884 | .enable = tegra20_plle_clk_enable, | ||
885 | .set_rate = tegra20_pll_clk_set_rate, | ||
886 | .recalc_rate = tegra20_pll_clk_recalc_rate, | ||
887 | .round_rate = tegra20_pll_clk_round_rate, | ||
888 | }; | ||
889 | |||
890 | /* Clock divider ops */ | ||
891 | static int tegra20_pll_div_clk_is_enabled(struct clk_hw *hw) | ||
892 | { | ||
893 | struct clk_tegra *c = to_clk_tegra(hw); | ||
894 | u32 val = clk_readl(c->reg); | ||
895 | |||
896 | val >>= c->reg_shift; | ||
897 | c->state = (val & PLL_OUT_CLKEN) ? ON : OFF; | ||
898 | if (!(val & PLL_OUT_RESET_DISABLE)) | ||
899 | c->state = OFF; | ||
900 | return c->state; | ||
901 | } | ||
902 | |||
903 | static unsigned long tegra20_pll_div_clk_recalc_rate(struct clk_hw *hw, | ||
904 | unsigned long prate) | ||
905 | { | ||
906 | struct clk_tegra *c = to_clk_tegra(hw); | ||
907 | u64 rate = prate; | ||
908 | u32 val = clk_readl(c->reg); | ||
909 | u32 divu71; | ||
910 | |||
911 | val >>= c->reg_shift; | ||
912 | |||
913 | if (c->flags & DIV_U71) { | ||
914 | divu71 = (val & PLL_OUT_RATIO_MASK) >> PLL_OUT_RATIO_SHIFT; | ||
915 | c->div = (divu71 + 2); | ||
916 | c->mul = 2; | ||
917 | } else if (c->flags & DIV_2) { | ||
918 | c->div = 2; | ||
919 | c->mul = 1; | ||
920 | } else { | ||
921 | c->div = 1; | ||
922 | c->mul = 1; | ||
923 | } | ||
924 | |||
925 | rate *= c->mul; | ||
926 | rate += c->div - 1; /* round up */ | ||
927 | do_div(rate, c->div); | ||
928 | |||
929 | return rate; | ||
930 | } | ||
931 | |||
932 | static int tegra20_pll_div_clk_enable(struct clk_hw *hw) | ||
933 | { | ||
934 | struct clk_tegra *c = to_clk_tegra(hw); | ||
935 | unsigned long flags; | ||
936 | u32 new_val; | ||
937 | u32 val; | ||
938 | |||
939 | pr_debug("%s: %s\n", __func__, __clk_get_name(hw->clk)); | ||
940 | |||
941 | if (c->flags & DIV_U71) { | ||
942 | spin_lock_irqsave(&clock_register_lock, flags); | ||
943 | val = clk_readl(c->reg); | ||
944 | new_val = val >> c->reg_shift; | ||
945 | new_val &= 0xFFFF; | ||
946 | |||
947 | new_val |= PLL_OUT_CLKEN | PLL_OUT_RESET_DISABLE; | ||
948 | |||
949 | val &= ~(0xFFFF << c->reg_shift); | ||
950 | val |= new_val << c->reg_shift; | ||
951 | clk_writel(val, c->reg); | ||
952 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
953 | return 0; | ||
954 | } else if (c->flags & DIV_2) { | ||
955 | BUG_ON(!(c->flags & PLLD)); | ||
956 | spin_lock_irqsave(&clock_register_lock, flags); | ||
957 | val = clk_readl(c->reg); | ||
958 | val &= ~PLLD_MISC_DIV_RST; | ||
959 | clk_writel(val, c->reg); | ||
960 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
961 | return 0; | ||
962 | } | ||
963 | return -EINVAL; | ||
964 | } | ||
965 | |||
966 | static void tegra20_pll_div_clk_disable(struct clk_hw *hw) | ||
967 | { | ||
968 | struct clk_tegra *c = to_clk_tegra(hw); | ||
969 | unsigned long flags; | ||
970 | u32 new_val; | ||
971 | u32 val; | ||
972 | |||
973 | pr_debug("%s: %s\n", __func__, __clk_get_name(hw->clk)); | ||
974 | |||
975 | if (c->flags & DIV_U71) { | ||
976 | spin_lock_irqsave(&clock_register_lock, flags); | ||
977 | val = clk_readl(c->reg); | ||
978 | new_val = val >> c->reg_shift; | ||
979 | new_val &= 0xFFFF; | ||
980 | |||
981 | new_val &= ~(PLL_OUT_CLKEN | PLL_OUT_RESET_DISABLE); | ||
982 | |||
983 | val &= ~(0xFFFF << c->reg_shift); | ||
984 | val |= new_val << c->reg_shift; | ||
985 | clk_writel(val, c->reg); | ||
986 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
987 | } else if (c->flags & DIV_2) { | ||
988 | BUG_ON(!(c->flags & PLLD)); | ||
989 | spin_lock_irqsave(&clock_register_lock, flags); | ||
990 | val = clk_readl(c->reg); | ||
991 | val |= PLLD_MISC_DIV_RST; | ||
992 | clk_writel(val, c->reg); | ||
993 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
994 | } | ||
995 | } | ||
996 | |||
997 | static int tegra20_pll_div_clk_set_rate(struct clk_hw *hw, unsigned long rate, | ||
998 | unsigned long parent_rate) | ||
999 | { | ||
1000 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1001 | unsigned long flags; | ||
1002 | int divider_u71; | ||
1003 | u32 new_val; | ||
1004 | u32 val; | ||
1005 | |||
1006 | pr_debug("%s: %s %lu\n", __func__, __clk_get_name(hw->clk), rate); | ||
1007 | |||
1008 | if (c->flags & DIV_U71) { | ||
1009 | divider_u71 = clk_div71_get_divider(parent_rate, rate); | ||
1010 | if (divider_u71 >= 0) { | ||
1011 | spin_lock_irqsave(&clock_register_lock, flags); | ||
1012 | val = clk_readl(c->reg); | ||
1013 | new_val = val >> c->reg_shift; | ||
1014 | new_val &= 0xFFFF; | ||
1015 | if (c->flags & DIV_U71_FIXED) | ||
1016 | new_val |= PLL_OUT_OVERRIDE; | ||
1017 | new_val &= ~PLL_OUT_RATIO_MASK; | ||
1018 | new_val |= divider_u71 << PLL_OUT_RATIO_SHIFT; | ||
1019 | |||
1020 | val &= ~(0xFFFF << c->reg_shift); | ||
1021 | val |= new_val << c->reg_shift; | ||
1022 | clk_writel(val, c->reg); | ||
1023 | c->div = divider_u71 + 2; | ||
1024 | c->mul = 2; | ||
1025 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
1026 | return 0; | ||
1027 | } | ||
1028 | } else if (c->flags & DIV_2) { | ||
1029 | if (parent_rate == rate * 2) | ||
1030 | return 0; | ||
1031 | } | ||
1032 | return -EINVAL; | ||
1033 | } | ||
1034 | |||
1035 | static long tegra20_pll_div_clk_round_rate(struct clk_hw *hw, unsigned long rate, | ||
1036 | unsigned long *prate) | ||
1037 | { | ||
1038 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1039 | unsigned long parent_rate = *prate; | ||
1040 | int divider; | ||
1041 | |||
1042 | pr_debug("%s: %s %lu\n", __func__, __clk_get_name(hw->clk), rate); | ||
1043 | |||
1044 | if (c->flags & DIV_U71) { | ||
1045 | divider = clk_div71_get_divider(parent_rate, rate); | ||
1046 | if (divider < 0) | ||
1047 | return divider; | ||
1048 | return DIV_ROUND_UP(parent_rate * 2, divider + 2); | ||
1049 | } else if (c->flags & DIV_2) { | ||
1050 | return DIV_ROUND_UP(parent_rate, 2); | ||
1051 | } | ||
1052 | return -EINVAL; | ||
1053 | } | ||
1054 | |||
1055 | struct clk_ops tegra_pll_div_ops = { | ||
1056 | .is_enabled = tegra20_pll_div_clk_is_enabled, | ||
1057 | .enable = tegra20_pll_div_clk_enable, | ||
1058 | .disable = tegra20_pll_div_clk_disable, | ||
1059 | .set_rate = tegra20_pll_div_clk_set_rate, | ||
1060 | .round_rate = tegra20_pll_div_clk_round_rate, | ||
1061 | .recalc_rate = tegra20_pll_div_clk_recalc_rate, | ||
1062 | }; | ||
1063 | |||
1064 | /* Periph clk ops */ | ||
1065 | |||
1066 | static int tegra20_periph_clk_is_enabled(struct clk_hw *hw) | ||
1067 | { | ||
1068 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1069 | |||
1070 | c->state = ON; | ||
1071 | |||
1072 | if (!c->u.periph.clk_num) | ||
1073 | goto out; | ||
1074 | |||
1075 | if (!(clk_readl(CLK_OUT_ENB + PERIPH_CLK_TO_ENB_REG(c)) & | ||
1076 | PERIPH_CLK_TO_ENB_BIT(c))) | ||
1077 | c->state = OFF; | ||
1078 | |||
1079 | if (!(c->flags & PERIPH_NO_RESET)) | ||
1080 | if (clk_readl(RST_DEVICES + PERIPH_CLK_TO_ENB_REG(c)) & | ||
1081 | PERIPH_CLK_TO_ENB_BIT(c)) | ||
1082 | c->state = OFF; | ||
1083 | |||
1084 | out: | ||
1085 | return c->state; | ||
1086 | } | ||
1087 | |||
1088 | static int tegra20_periph_clk_enable(struct clk_hw *hw) | ||
1089 | { | ||
1090 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1091 | unsigned long flags; | ||
1092 | u32 val; | ||
1093 | |||
1094 | pr_debug("%s on clock %s\n", __func__, __clk_get_name(hw->clk)); | ||
1095 | |||
1096 | if (!c->u.periph.clk_num) | ||
1097 | return 0; | ||
1098 | |||
1099 | tegra_periph_clk_enable_refcount[c->u.periph.clk_num]++; | ||
1100 | if (tegra_periph_clk_enable_refcount[c->u.periph.clk_num] > 1) | ||
1101 | return 0; | ||
1102 | |||
1103 | spin_lock_irqsave(&clock_register_lock, flags); | ||
1104 | |||
1105 | clk_writel(PERIPH_CLK_TO_ENB_BIT(c), | ||
1106 | CLK_OUT_ENB_SET + PERIPH_CLK_TO_ENB_SET_REG(c)); | ||
1107 | if (!(c->flags & PERIPH_NO_RESET) && !(c->flags & PERIPH_MANUAL_RESET)) | ||
1108 | clk_writel(PERIPH_CLK_TO_ENB_BIT(c), | ||
1109 | RST_DEVICES_CLR + PERIPH_CLK_TO_ENB_SET_REG(c)); | ||
1110 | if (c->flags & PERIPH_EMC_ENB) { | ||
1111 | /* The EMC peripheral clock has 2 extra enable bits */ | ||
1112 | /* FIXME: Do they need to be disabled? */ | ||
1113 | val = clk_readl(c->reg); | ||
1114 | val |= 0x3 << 24; | ||
1115 | clk_writel(val, c->reg); | ||
1116 | } | ||
1117 | |||
1118 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
1119 | |||
1120 | return 0; | ||
1121 | } | ||
1122 | |||
1123 | static void tegra20_periph_clk_disable(struct clk_hw *hw) | ||
1124 | { | ||
1125 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1126 | unsigned long flags; | ||
1127 | |||
1128 | pr_debug("%s on clock %s\n", __func__, __clk_get_name(hw->clk)); | ||
1129 | |||
1130 | if (!c->u.periph.clk_num) | ||
1131 | return; | ||
1132 | |||
1133 | tegra_periph_clk_enable_refcount[c->u.periph.clk_num]--; | ||
1134 | |||
1135 | if (tegra_periph_clk_enable_refcount[c->u.periph.clk_num] > 0) | ||
1136 | return; | ||
1137 | |||
1138 | spin_lock_irqsave(&clock_register_lock, flags); | ||
1139 | |||
1140 | clk_writel(PERIPH_CLK_TO_ENB_BIT(c), | ||
1141 | CLK_OUT_ENB_CLR + PERIPH_CLK_TO_ENB_SET_REG(c)); | ||
1142 | |||
1143 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
1144 | } | ||
1145 | |||
1146 | void tegra2_periph_clk_reset(struct clk_hw *hw, bool assert) | ||
1147 | { | ||
1148 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1149 | unsigned long base = assert ? RST_DEVICES_SET : RST_DEVICES_CLR; | ||
1150 | |||
1151 | pr_debug("%s %s on clock %s\n", __func__, | ||
1152 | assert ? "assert" : "deassert", __clk_get_name(hw->clk)); | ||
1153 | |||
1154 | BUG_ON(!c->u.periph.clk_num); | ||
1155 | |||
1156 | if (!(c->flags & PERIPH_NO_RESET)) | ||
1157 | clk_writel(PERIPH_CLK_TO_ENB_BIT(c), | ||
1158 | base + PERIPH_CLK_TO_ENB_SET_REG(c)); | ||
1159 | } | ||
1160 | |||
1161 | static int tegra20_periph_clk_set_parent(struct clk_hw *hw, u8 index) | ||
1162 | { | ||
1163 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1164 | u32 val; | ||
1165 | u32 mask; | ||
1166 | u32 shift; | ||
1167 | |||
1168 | pr_debug("%s: %s %d\n", __func__, __clk_get_name(hw->clk), index); | ||
1169 | |||
1170 | if (c->flags & MUX_PWM) { | ||
1171 | shift = PERIPH_CLK_SOURCE_PWM_SHIFT; | ||
1172 | mask = PERIPH_CLK_SOURCE_PWM_MASK; | ||
1173 | } else { | ||
1174 | shift = PERIPH_CLK_SOURCE_SHIFT; | ||
1175 | mask = PERIPH_CLK_SOURCE_MASK; | ||
1176 | } | ||
1177 | |||
1178 | val = clk_readl(c->reg); | ||
1179 | val &= ~mask; | ||
1180 | val |= (index) << shift; | ||
1181 | |||
1182 | clk_writel(val, c->reg); | ||
1183 | |||
1184 | return 0; | ||
1185 | } | ||
1186 | |||
1187 | static u8 tegra20_periph_clk_get_parent(struct clk_hw *hw) | ||
1188 | { | ||
1189 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1190 | u32 val = clk_readl(c->reg); | ||
1191 | u32 mask; | ||
1192 | u32 shift; | ||
1193 | |||
1194 | if (c->flags & MUX_PWM) { | ||
1195 | shift = PERIPH_CLK_SOURCE_PWM_SHIFT; | ||
1196 | mask = PERIPH_CLK_SOURCE_PWM_MASK; | ||
1197 | } else { | ||
1198 | shift = PERIPH_CLK_SOURCE_SHIFT; | ||
1199 | mask = PERIPH_CLK_SOURCE_MASK; | ||
1200 | } | ||
1201 | |||
1202 | if (c->flags & MUX) | ||
1203 | return (val & mask) >> shift; | ||
1204 | else | ||
1205 | return 0; | ||
1206 | } | ||
1207 | |||
1208 | static unsigned long tegra20_periph_clk_recalc_rate(struct clk_hw *hw, | ||
1209 | unsigned long prate) | ||
1210 | { | ||
1211 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1212 | unsigned long rate = prate; | ||
1213 | u32 val = clk_readl(c->reg); | ||
1214 | |||
1215 | if (c->flags & DIV_U71) { | ||
1216 | u32 divu71 = val & PERIPH_CLK_SOURCE_DIVU71_MASK; | ||
1217 | c->div = divu71 + 2; | ||
1218 | c->mul = 2; | ||
1219 | } else if (c->flags & DIV_U16) { | ||
1220 | u32 divu16 = val & PERIPH_CLK_SOURCE_DIVU16_MASK; | ||
1221 | c->div = divu16 + 1; | ||
1222 | c->mul = 1; | ||
1223 | } else { | ||
1224 | c->div = 1; | ||
1225 | c->mul = 1; | ||
1226 | return rate; | ||
1227 | } | ||
1228 | |||
1229 | if (c->mul != 0 && c->div != 0) { | ||
1230 | rate *= c->mul; | ||
1231 | rate += c->div - 1; /* round up */ | ||
1232 | do_div(rate, c->div); | ||
1233 | } | ||
1234 | |||
1235 | return rate; | ||
1236 | } | ||
1237 | |||
1238 | static int tegra20_periph_clk_set_rate(struct clk_hw *hw, unsigned long rate, | ||
1239 | unsigned long parent_rate) | ||
1240 | { | ||
1241 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1242 | u32 val; | ||
1243 | int divider; | ||
1244 | |||
1245 | val = clk_readl(c->reg); | ||
1246 | |||
1247 | if (c->flags & DIV_U71) { | ||
1248 | divider = clk_div71_get_divider(parent_rate, rate); | ||
1249 | |||
1250 | if (divider >= 0) { | ||
1251 | val = clk_readl(c->reg); | ||
1252 | val &= ~PERIPH_CLK_SOURCE_DIVU71_MASK; | ||
1253 | val |= divider; | ||
1254 | clk_writel(val, c->reg); | ||
1255 | c->div = divider + 2; | ||
1256 | c->mul = 2; | ||
1257 | return 0; | ||
1258 | } | ||
1259 | } else if (c->flags & DIV_U16) { | ||
1260 | divider = clk_div16_get_divider(parent_rate, rate); | ||
1261 | if (divider >= 0) { | ||
1262 | val = clk_readl(c->reg); | ||
1263 | val &= ~PERIPH_CLK_SOURCE_DIVU16_MASK; | ||
1264 | val |= divider; | ||
1265 | clk_writel(val, c->reg); | ||
1266 | c->div = divider + 1; | ||
1267 | c->mul = 1; | ||
1268 | return 0; | ||
1269 | } | ||
1270 | } else if (parent_rate <= rate) { | ||
1271 | c->div = 1; | ||
1272 | c->mul = 1; | ||
1273 | return 0; | ||
1274 | } | ||
1275 | |||
1276 | return -EINVAL; | ||
1277 | } | ||
1278 | |||
1279 | static long tegra20_periph_clk_round_rate(struct clk_hw *hw, | ||
1280 | unsigned long rate, unsigned long *prate) | ||
1281 | { | ||
1282 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1283 | unsigned long parent_rate = __clk_get_rate(__clk_get_parent(hw->clk)); | ||
1284 | int divider; | ||
1285 | |||
1286 | pr_debug("%s: %s %lu\n", __func__, __clk_get_name(hw->clk), rate); | ||
1287 | |||
1288 | if (prate) | ||
1289 | parent_rate = *prate; | ||
1290 | |||
1291 | if (c->flags & DIV_U71) { | ||
1292 | divider = clk_div71_get_divider(parent_rate, rate); | ||
1293 | if (divider < 0) | ||
1294 | return divider; | ||
1295 | |||
1296 | return DIV_ROUND_UP(parent_rate * 2, divider + 2); | ||
1297 | } else if (c->flags & DIV_U16) { | ||
1298 | divider = clk_div16_get_divider(parent_rate, rate); | ||
1299 | if (divider < 0) | ||
1300 | return divider; | ||
1301 | return DIV_ROUND_UP(parent_rate, divider + 1); | ||
1302 | } | ||
1303 | return -EINVAL; | ||
1304 | } | ||
1305 | |||
1306 | struct clk_ops tegra_periph_clk_ops = { | ||
1307 | .is_enabled = tegra20_periph_clk_is_enabled, | ||
1308 | .enable = tegra20_periph_clk_enable, | ||
1309 | .disable = tegra20_periph_clk_disable, | ||
1310 | .set_parent = tegra20_periph_clk_set_parent, | ||
1311 | .get_parent = tegra20_periph_clk_get_parent, | ||
1312 | .set_rate = tegra20_periph_clk_set_rate, | ||
1313 | .round_rate = tegra20_periph_clk_round_rate, | ||
1314 | .recalc_rate = tegra20_periph_clk_recalc_rate, | ||
1315 | }; | ||
1316 | |||
1317 | /* External memory controller clock ops */ | ||
1318 | static void tegra20_emc_clk_init(struct clk_hw *hw) | ||
1319 | { | ||
1320 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1321 | c->max_rate = __clk_get_rate(hw->clk); | ||
1322 | } | ||
1323 | |||
1324 | static long tegra20_emc_clk_round_rate(struct clk_hw *hw, unsigned long rate, | ||
1325 | unsigned long *prate) | ||
1326 | { | ||
1327 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1328 | long emc_rate; | ||
1329 | long clk_rate; | ||
1330 | |||
1331 | /* | ||
1332 | * The slowest entry in the EMC clock table that is at least as | ||
1333 | * fast as rate. | ||
1334 | */ | ||
1335 | emc_rate = tegra_emc_round_rate(rate); | ||
1336 | if (emc_rate < 0) | ||
1337 | return c->max_rate; | ||
1338 | |||
1339 | /* | ||
1340 | * The fastest rate the PLL will generate that is at most the | ||
1341 | * requested rate. | ||
1342 | */ | ||
1343 | clk_rate = tegra20_periph_clk_round_rate(hw, emc_rate, NULL); | ||
1344 | |||
1345 | /* | ||
1346 | * If this fails, and emc_rate > clk_rate, it's because the maximum | ||
1347 | * rate in the EMC tables is larger than the maximum rate of the EMC | ||
1348 | * clock. The EMC clock's max rate is the rate it was running when the | ||
1349 | * kernel booted. Such a mismatch is probably due to using the wrong | ||
1350 | * BCT, i.e. using a Tegra20 BCT with an EMC table written for Tegra25. | ||
1351 | */ | ||
1352 | WARN_ONCE(emc_rate != clk_rate, | ||
1353 | "emc_rate %ld != clk_rate %ld", | ||
1354 | emc_rate, clk_rate); | ||
1355 | |||
1356 | return emc_rate; | ||
1357 | } | ||
1358 | |||
1359 | static int tegra20_emc_clk_set_rate(struct clk_hw *hw, unsigned long rate, | ||
1360 | unsigned long parent_rate) | ||
1361 | { | ||
1362 | int ret; | ||
1363 | |||
1364 | /* | ||
1365 | * The Tegra2 memory controller has an interlock with the clock | ||
1366 | * block that allows memory shadowed registers to be updated, | ||
1367 | * and then transfer them to the main registers at the same | ||
1368 | * time as the clock update without glitches. | ||
1369 | */ | ||
1370 | ret = tegra_emc_set_rate(rate); | ||
1371 | if (ret < 0) | ||
1372 | return ret; | ||
1373 | |||
1374 | ret = tegra20_periph_clk_set_rate(hw, rate, parent_rate); | ||
1375 | udelay(1); | ||
1376 | |||
1377 | return ret; | ||
1378 | } | ||
1379 | |||
1380 | struct clk_ops tegra_emc_clk_ops = { | ||
1381 | .init = tegra20_emc_clk_init, | ||
1382 | .is_enabled = tegra20_periph_clk_is_enabled, | ||
1383 | .enable = tegra20_periph_clk_enable, | ||
1384 | .disable = tegra20_periph_clk_disable, | ||
1385 | .set_parent = tegra20_periph_clk_set_parent, | ||
1386 | .get_parent = tegra20_periph_clk_get_parent, | ||
1387 | .set_rate = tegra20_emc_clk_set_rate, | ||
1388 | .round_rate = tegra20_emc_clk_round_rate, | ||
1389 | .recalc_rate = tegra20_periph_clk_recalc_rate, | ||
1390 | }; | ||
1391 | |||
1392 | /* Clock doubler ops */ | ||
1393 | static int tegra20_clk_double_is_enabled(struct clk_hw *hw) | ||
1394 | { | ||
1395 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1396 | |||
1397 | c->state = ON; | ||
1398 | |||
1399 | if (!c->u.periph.clk_num) | ||
1400 | goto out; | ||
1401 | |||
1402 | if (!(clk_readl(CLK_OUT_ENB + PERIPH_CLK_TO_ENB_REG(c)) & | ||
1403 | PERIPH_CLK_TO_ENB_BIT(c))) | ||
1404 | c->state = OFF; | ||
1405 | |||
1406 | out: | ||
1407 | return c->state; | ||
1408 | }; | ||
1409 | |||
1410 | static unsigned long tegra20_clk_double_recalc_rate(struct clk_hw *hw, | ||
1411 | unsigned long prate) | ||
1412 | { | ||
1413 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1414 | u64 rate = prate; | ||
1415 | |||
1416 | c->mul = 2; | ||
1417 | c->div = 1; | ||
1418 | |||
1419 | rate *= c->mul; | ||
1420 | rate += c->div - 1; /* round up */ | ||
1421 | do_div(rate, c->div); | ||
1422 | |||
1423 | return rate; | ||
1424 | } | ||
1425 | |||
1426 | static long tegra20_clk_double_round_rate(struct clk_hw *hw, unsigned long rate, | ||
1427 | unsigned long *prate) | ||
1428 | { | ||
1429 | unsigned long output_rate = *prate; | ||
1430 | |||
1431 | do_div(output_rate, 2); | ||
1432 | return output_rate; | ||
1433 | } | ||
1434 | |||
1435 | static int tegra20_clk_double_set_rate(struct clk_hw *hw, unsigned long rate, | ||
1436 | unsigned long parent_rate) | ||
1437 | { | ||
1438 | if (rate != 2 * parent_rate) | ||
1439 | return -EINVAL; | ||
1440 | return 0; | ||
1441 | } | ||
1442 | |||
1443 | struct clk_ops tegra_clk_double_ops = { | ||
1444 | .is_enabled = tegra20_clk_double_is_enabled, | ||
1445 | .enable = tegra20_periph_clk_enable, | ||
1446 | .disable = tegra20_periph_clk_disable, | ||
1447 | .set_rate = tegra20_clk_double_set_rate, | ||
1448 | .recalc_rate = tegra20_clk_double_recalc_rate, | ||
1449 | .round_rate = tegra20_clk_double_round_rate, | ||
1450 | }; | ||
1451 | |||
1452 | /* Audio sync clock ops */ | ||
1453 | static int tegra20_audio_sync_clk_is_enabled(struct clk_hw *hw) | ||
1454 | { | ||
1455 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1456 | u32 val = clk_readl(c->reg); | ||
1457 | |||
1458 | c->state = (val & (1<<4)) ? OFF : ON; | ||
1459 | return c->state; | ||
1460 | } | ||
1461 | |||
1462 | static int tegra20_audio_sync_clk_enable(struct clk_hw *hw) | ||
1463 | { | ||
1464 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1465 | |||
1466 | clk_writel(0, c->reg); | ||
1467 | return 0; | ||
1468 | } | ||
1469 | |||
1470 | static void tegra20_audio_sync_clk_disable(struct clk_hw *hw) | ||
1471 | { | ||
1472 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1473 | clk_writel(1, c->reg); | ||
1474 | } | ||
1475 | |||
1476 | static u8 tegra20_audio_sync_clk_get_parent(struct clk_hw *hw) | ||
1477 | { | ||
1478 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1479 | u32 val = clk_readl(c->reg); | ||
1480 | int source; | ||
1481 | |||
1482 | source = val & 0xf; | ||
1483 | return source; | ||
1484 | } | ||
1485 | |||
1486 | static int tegra20_audio_sync_clk_set_parent(struct clk_hw *hw, u8 index) | ||
1487 | { | ||
1488 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1489 | u32 val; | ||
1490 | |||
1491 | val = clk_readl(c->reg); | ||
1492 | val &= ~0xf; | ||
1493 | val |= index; | ||
1494 | |||
1495 | clk_writel(val, c->reg); | ||
1496 | |||
1497 | return 0; | ||
1498 | } | ||
1499 | |||
1500 | struct clk_ops tegra_audio_sync_clk_ops = { | ||
1501 | .is_enabled = tegra20_audio_sync_clk_is_enabled, | ||
1502 | .enable = tegra20_audio_sync_clk_enable, | ||
1503 | .disable = tegra20_audio_sync_clk_disable, | ||
1504 | .set_parent = tegra20_audio_sync_clk_set_parent, | ||
1505 | .get_parent = tegra20_audio_sync_clk_get_parent, | ||
1506 | }; | ||
1507 | |||
1508 | /* cdev1 and cdev2 (dap_mclk1 and dap_mclk2) ops */ | ||
1509 | |||
1510 | static int tegra20_cdev_clk_is_enabled(struct clk_hw *hw) | ||
1511 | { | ||
1512 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1513 | /* We could un-tristate the cdev1 or cdev2 pingroup here; this is | ||
1514 | * currently done in the pinmux code. */ | ||
1515 | c->state = ON; | ||
1516 | |||
1517 | BUG_ON(!c->u.periph.clk_num); | ||
1518 | |||
1519 | if (!(clk_readl(CLK_OUT_ENB + PERIPH_CLK_TO_ENB_REG(c)) & | ||
1520 | PERIPH_CLK_TO_ENB_BIT(c))) | ||
1521 | c->state = OFF; | ||
1522 | return c->state; | ||
1523 | } | ||
1524 | |||
1525 | static int tegra20_cdev_clk_enable(struct clk_hw *hw) | ||
1526 | { | ||
1527 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1528 | BUG_ON(!c->u.periph.clk_num); | ||
1529 | |||
1530 | clk_writel(PERIPH_CLK_TO_ENB_BIT(c), | ||
1531 | CLK_OUT_ENB_SET + PERIPH_CLK_TO_ENB_SET_REG(c)); | ||
1532 | return 0; | ||
1533 | } | ||
1534 | |||
1535 | static void tegra20_cdev_clk_disable(struct clk_hw *hw) | ||
1536 | { | ||
1537 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1538 | BUG_ON(!c->u.periph.clk_num); | ||
1539 | |||
1540 | clk_writel(PERIPH_CLK_TO_ENB_BIT(c), | ||
1541 | CLK_OUT_ENB_CLR + PERIPH_CLK_TO_ENB_SET_REG(c)); | ||
1542 | } | ||
1543 | |||
1544 | static unsigned long tegra20_cdev_recalc_rate(struct clk_hw *hw, | ||
1545 | unsigned long prate) | ||
1546 | { | ||
1547 | return to_clk_tegra(hw)->fixed_rate; | ||
1548 | } | ||
1549 | |||
1550 | struct clk_ops tegra_cdev_clk_ops = { | ||
1551 | .is_enabled = tegra20_cdev_clk_is_enabled, | ||
1552 | .enable = tegra20_cdev_clk_enable, | ||
1553 | .disable = tegra20_cdev_clk_disable, | ||
1554 | .recalc_rate = tegra20_cdev_recalc_rate, | ||
1555 | }; | ||
diff --git a/arch/arm/mach-tegra/tegra20_clocks.h b/arch/arm/mach-tegra/tegra20_clocks.h new file mode 100644 index 000000000000..8bfd31bcc490 --- /dev/null +++ b/arch/arm/mach-tegra/tegra20_clocks.h | |||
@@ -0,0 +1,42 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify it | ||
5 | * under the terms and conditions of the GNU General Public License, | ||
6 | * version 2, as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
11 | * more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #ifndef __MACH_TEGRA20_CLOCK_H | ||
18 | #define __MACH_TEGRA20_CLOCK_H | ||
19 | |||
20 | extern struct clk_ops tegra_clk_32k_ops; | ||
21 | extern struct clk_ops tegra_pll_ops; | ||
22 | extern struct clk_ops tegra_clk_m_ops; | ||
23 | extern struct clk_ops tegra_pll_div_ops; | ||
24 | extern struct clk_ops tegra_pllx_ops; | ||
25 | extern struct clk_ops tegra_plle_ops; | ||
26 | extern struct clk_ops tegra_clk_double_ops; | ||
27 | extern struct clk_ops tegra_cdev_clk_ops; | ||
28 | extern struct clk_ops tegra_audio_sync_clk_ops; | ||
29 | extern struct clk_ops tegra_super_ops; | ||
30 | extern struct clk_ops tegra_cpu_ops; | ||
31 | extern struct clk_ops tegra_twd_ops; | ||
32 | extern struct clk_ops tegra_cop_ops; | ||
33 | extern struct clk_ops tegra_bus_ops; | ||
34 | extern struct clk_ops tegra_blink_clk_ops; | ||
35 | extern struct clk_ops tegra_emc_clk_ops; | ||
36 | extern struct clk_ops tegra_periph_clk_ops; | ||
37 | extern struct clk_ops tegra_clk_shared_bus_ops; | ||
38 | |||
39 | void tegra2_periph_clk_reset(struct clk_hw *hw, bool assert); | ||
40 | void tegra2_cop_clk_reset(struct clk_hw *hw, bool assert); | ||
41 | |||
42 | #endif | ||
diff --git a/arch/arm/mach-tegra/tegra20_clocks_data.c b/arch/arm/mach-tegra/tegra20_clocks_data.c new file mode 100644 index 000000000000..6cfe2f9840fa --- /dev/null +++ b/arch/arm/mach-tegra/tegra20_clocks_data.c | |||
@@ -0,0 +1,1138 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-tegra/tegra2_clocks.c | ||
3 | * | ||
4 | * Copyright (C) 2010 Google, Inc. | ||
5 | * Copyright (c) 2012 NVIDIA CORPORATION. All rights reserved. | ||
6 | * | ||
7 | * Author: | ||
8 | * Colin Cross <ccross@google.com> | ||
9 | * | ||
10 | * This software is licensed under the terms of the GNU General Public | ||
11 | * License version 2, as published by the Free Software Foundation, and | ||
12 | * may be copied, distributed, and modified under those terms. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | * | ||
19 | */ | ||
20 | |||
21 | #include <linux/clk-private.h> | ||
22 | #include <linux/kernel.h> | ||
23 | #include <linux/module.h> | ||
24 | #include <linux/list.h> | ||
25 | #include <linux/spinlock.h> | ||
26 | #include <linux/delay.h> | ||
27 | #include <linux/io.h> | ||
28 | #include <linux/clk.h> | ||
29 | |||
30 | #include <mach/iomap.h> | ||
31 | #include <mach/suspend.h> | ||
32 | |||
33 | #include "clock.h" | ||
34 | #include "fuse.h" | ||
35 | #include "tegra2_emc.h" | ||
36 | #include "tegra20_clocks.h" | ||
37 | |||
38 | /* Clock definitions */ | ||
39 | |||
40 | #define DEFINE_CLK_TEGRA(_name, _rate, _ops, _flags, \ | ||
41 | _parent_names, _parents, _parent) \ | ||
42 | static struct clk tegra_##_name = { \ | ||
43 | .hw = &tegra_##_name##_hw.hw, \ | ||
44 | .name = #_name, \ | ||
45 | .rate = _rate, \ | ||
46 | .ops = _ops, \ | ||
47 | .flags = _flags, \ | ||
48 | .parent_names = _parent_names, \ | ||
49 | .parents = _parents, \ | ||
50 | .num_parents = ARRAY_SIZE(_parent_names), \ | ||
51 | .parent = _parent, \ | ||
52 | }; | ||
53 | |||
54 | static struct clk tegra_clk_32k; | ||
55 | static struct clk_tegra tegra_clk_32k_hw = { | ||
56 | .hw = { | ||
57 | .clk = &tegra_clk_32k, | ||
58 | }, | ||
59 | .fixed_rate = 32768, | ||
60 | }; | ||
61 | |||
62 | static struct clk tegra_clk_32k = { | ||
63 | .name = "clk_32k", | ||
64 | .rate = 32768, | ||
65 | .ops = &tegra_clk_32k_ops, | ||
66 | .hw = &tegra_clk_32k_hw.hw, | ||
67 | .flags = CLK_IS_ROOT, | ||
68 | }; | ||
69 | |||
70 | static struct clk tegra_clk_m; | ||
71 | static struct clk_tegra tegra_clk_m_hw = { | ||
72 | .hw = { | ||
73 | .clk = &tegra_clk_m, | ||
74 | }, | ||
75 | .flags = ENABLE_ON_INIT, | ||
76 | .reg = 0x1fc, | ||
77 | .reg_shift = 28, | ||
78 | .max_rate = 26000000, | ||
79 | .fixed_rate = 0, | ||
80 | }; | ||
81 | |||
82 | static struct clk tegra_clk_m = { | ||
83 | .name = "clk_m", | ||
84 | .ops = &tegra_clk_m_ops, | ||
85 | .hw = &tegra_clk_m_hw.hw, | ||
86 | .flags = CLK_IS_ROOT, | ||
87 | }; | ||
88 | |||
89 | #define DEFINE_PLL(_name, _flags, _reg, _max_rate, _input_min, \ | ||
90 | _input_max, _cf_min, _cf_max, _vco_min, \ | ||
91 | _vco_max, _freq_table, _lock_delay, _ops, \ | ||
92 | _fixed_rate, _parent) \ | ||
93 | static const char *tegra_##_name##_parent_names[] = { \ | ||
94 | #_parent, \ | ||
95 | }; \ | ||
96 | static struct clk *tegra_##_name##_parents[] = { \ | ||
97 | &tegra_##_parent, \ | ||
98 | }; \ | ||
99 | static struct clk tegra_##_name; \ | ||
100 | static struct clk_tegra tegra_##_name##_hw = { \ | ||
101 | .hw = { \ | ||
102 | .clk = &tegra_##_name, \ | ||
103 | }, \ | ||
104 | .flags = _flags, \ | ||
105 | .reg = _reg, \ | ||
106 | .max_rate = _max_rate, \ | ||
107 | .u.pll = { \ | ||
108 | .input_min = _input_min, \ | ||
109 | .input_max = _input_max, \ | ||
110 | .cf_min = _cf_min, \ | ||
111 | .cf_max = _cf_max, \ | ||
112 | .vco_min = _vco_min, \ | ||
113 | .vco_max = _vco_max, \ | ||
114 | .freq_table = _freq_table, \ | ||
115 | .lock_delay = _lock_delay, \ | ||
116 | .fixed_rate = _fixed_rate, \ | ||
117 | }, \ | ||
118 | }; \ | ||
119 | static struct clk tegra_##_name = { \ | ||
120 | .name = #_name, \ | ||
121 | .ops = &_ops, \ | ||
122 | .hw = &tegra_##_name##_hw.hw, \ | ||
123 | .parent = &tegra_##_parent, \ | ||
124 | .parent_names = tegra_##_name##_parent_names, \ | ||
125 | .parents = tegra_##_name##_parents, \ | ||
126 | .num_parents = 1, \ | ||
127 | }; | ||
128 | |||
129 | #define DEFINE_PLL_OUT(_name, _flags, _reg, _reg_shift, \ | ||
130 | _max_rate, _ops, _parent, _clk_flags) \ | ||
131 | static const char *tegra_##_name##_parent_names[] = { \ | ||
132 | #_parent, \ | ||
133 | }; \ | ||
134 | static struct clk *tegra_##_name##_parents[] = { \ | ||
135 | &tegra_##_parent, \ | ||
136 | }; \ | ||
137 | static struct clk tegra_##_name; \ | ||
138 | static struct clk_tegra tegra_##_name##_hw = { \ | ||
139 | .hw = { \ | ||
140 | .clk = &tegra_##_name, \ | ||
141 | }, \ | ||
142 | .flags = _flags, \ | ||
143 | .reg = _reg, \ | ||
144 | .max_rate = _max_rate, \ | ||
145 | .reg_shift = _reg_shift, \ | ||
146 | }; \ | ||
147 | static struct clk tegra_##_name = { \ | ||
148 | .name = #_name, \ | ||
149 | .ops = &tegra_pll_div_ops, \ | ||
150 | .hw = &tegra_##_name##_hw.hw, \ | ||
151 | .parent = &tegra_##_parent, \ | ||
152 | .parent_names = tegra_##_name##_parent_names, \ | ||
153 | .parents = tegra_##_name##_parents, \ | ||
154 | .num_parents = 1, \ | ||
155 | .flags = _clk_flags, \ | ||
156 | }; | ||
157 | |||
158 | |||
159 | static struct clk_pll_freq_table tegra_pll_s_freq_table[] = { | ||
160 | {32768, 12000000, 366, 1, 1, 0}, | ||
161 | {32768, 13000000, 397, 1, 1, 0}, | ||
162 | {32768, 19200000, 586, 1, 1, 0}, | ||
163 | {32768, 26000000, 793, 1, 1, 0}, | ||
164 | {0, 0, 0, 0, 0, 0}, | ||
165 | }; | ||
166 | |||
167 | DEFINE_PLL(pll_s, PLL_ALT_MISC_REG, 0xf0, 26000000, 32768, 32768, 0, | ||
168 | 0, 12000000, 26000000, tegra_pll_s_freq_table, 300, | ||
169 | tegra_pll_ops, 0, clk_32k); | ||
170 | |||
171 | static struct clk_pll_freq_table tegra_pll_c_freq_table[] = { | ||
172 | { 12000000, 600000000, 600, 12, 1, 8 }, | ||
173 | { 13000000, 600000000, 600, 13, 1, 8 }, | ||
174 | { 19200000, 600000000, 500, 16, 1, 6 }, | ||
175 | { 26000000, 600000000, 600, 26, 1, 8 }, | ||
176 | { 0, 0, 0, 0, 0, 0 }, | ||
177 | }; | ||
178 | |||
179 | DEFINE_PLL(pll_c, PLL_HAS_CPCON, 0x80, 600000000, 2000000, 31000000, 1000000, | ||
180 | 6000000, 20000000, 1400000000, tegra_pll_c_freq_table, 300, | ||
181 | tegra_pll_ops, 0, clk_m); | ||
182 | |||
183 | DEFINE_PLL_OUT(pll_c_out1, DIV_U71, 0x84, 0, 600000000, | ||
184 | tegra_pll_div_ops, pll_c, 0); | ||
185 | |||
186 | static struct clk_pll_freq_table tegra_pll_m_freq_table[] = { | ||
187 | { 12000000, 666000000, 666, 12, 1, 8}, | ||
188 | { 13000000, 666000000, 666, 13, 1, 8}, | ||
189 | { 19200000, 666000000, 555, 16, 1, 8}, | ||
190 | { 26000000, 666000000, 666, 26, 1, 8}, | ||
191 | { 12000000, 600000000, 600, 12, 1, 8}, | ||
192 | { 13000000, 600000000, 600, 13, 1, 8}, | ||
193 | { 19200000, 600000000, 375, 12, 1, 6}, | ||
194 | { 26000000, 600000000, 600, 26, 1, 8}, | ||
195 | { 0, 0, 0, 0, 0, 0 }, | ||
196 | }; | ||
197 | |||
198 | DEFINE_PLL(pll_m, PLL_HAS_CPCON, 0x90, 800000000, 2000000, 31000000, 1000000, | ||
199 | 6000000, 20000000, 1200000000, tegra_pll_m_freq_table, 300, | ||
200 | tegra_pll_ops, 0, clk_m); | ||
201 | |||
202 | DEFINE_PLL_OUT(pll_m_out1, DIV_U71, 0x94, 0, 600000000, | ||
203 | tegra_pll_div_ops, pll_m, 0); | ||
204 | |||
205 | static struct clk_pll_freq_table tegra_pll_p_freq_table[] = { | ||
206 | { 12000000, 216000000, 432, 12, 2, 8}, | ||
207 | { 13000000, 216000000, 432, 13, 2, 8}, | ||
208 | { 19200000, 216000000, 90, 4, 2, 1}, | ||
209 | { 26000000, 216000000, 432, 26, 2, 8}, | ||
210 | { 12000000, 432000000, 432, 12, 1, 8}, | ||
211 | { 13000000, 432000000, 432, 13, 1, 8}, | ||
212 | { 19200000, 432000000, 90, 4, 1, 1}, | ||
213 | { 26000000, 432000000, 432, 26, 1, 8}, | ||
214 | { 0, 0, 0, 0, 0, 0 }, | ||
215 | }; | ||
216 | |||
217 | |||
218 | DEFINE_PLL(pll_p, ENABLE_ON_INIT | PLL_FIXED | PLL_HAS_CPCON, 0xa0, 432000000, | ||
219 | 2000000, 31000000, 1000000, 6000000, 20000000, 1400000000, | ||
220 | tegra_pll_p_freq_table, 300, tegra_pll_ops, 216000000, clk_m); | ||
221 | |||
222 | DEFINE_PLL_OUT(pll_p_out1, ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, 0xa4, 0, | ||
223 | 432000000, tegra_pll_div_ops, pll_p, 0); | ||
224 | DEFINE_PLL_OUT(pll_p_out2, ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, 0xa4, 16, | ||
225 | 432000000, tegra_pll_div_ops, pll_p, 0); | ||
226 | DEFINE_PLL_OUT(pll_p_out3, ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, 0xa8, 0, | ||
227 | 432000000, tegra_pll_div_ops, pll_p, 0); | ||
228 | DEFINE_PLL_OUT(pll_p_out4, ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, 0xa8, 16, | ||
229 | 432000000, tegra_pll_div_ops, pll_p, 0); | ||
230 | |||
231 | static struct clk_pll_freq_table tegra_pll_a_freq_table[] = { | ||
232 | { 28800000, 56448000, 49, 25, 1, 1}, | ||
233 | { 28800000, 73728000, 64, 25, 1, 1}, | ||
234 | { 28800000, 24000000, 5, 6, 1, 1}, | ||
235 | { 0, 0, 0, 0, 0, 0 }, | ||
236 | }; | ||
237 | |||
238 | DEFINE_PLL(pll_a, PLL_HAS_CPCON, 0xb0, 73728000, 2000000, 31000000, 1000000, | ||
239 | 6000000, 20000000, 1400000000, tegra_pll_a_freq_table, 300, | ||
240 | tegra_pll_ops, 0, pll_p_out1); | ||
241 | |||
242 | DEFINE_PLL_OUT(pll_a_out0, DIV_U71, 0xb4, 0, 73728000, | ||
243 | tegra_pll_div_ops, pll_a, 0); | ||
244 | |||
245 | static struct clk_pll_freq_table tegra_pll_d_freq_table[] = { | ||
246 | { 12000000, 216000000, 216, 12, 1, 4}, | ||
247 | { 13000000, 216000000, 216, 13, 1, 4}, | ||
248 | { 19200000, 216000000, 135, 12, 1, 3}, | ||
249 | { 26000000, 216000000, 216, 26, 1, 4}, | ||
250 | |||
251 | { 12000000, 594000000, 594, 12, 1, 8}, | ||
252 | { 13000000, 594000000, 594, 13, 1, 8}, | ||
253 | { 19200000, 594000000, 495, 16, 1, 8}, | ||
254 | { 26000000, 594000000, 594, 26, 1, 8}, | ||
255 | |||
256 | { 12000000, 1000000000, 1000, 12, 1, 12}, | ||
257 | { 13000000, 1000000000, 1000, 13, 1, 12}, | ||
258 | { 19200000, 1000000000, 625, 12, 1, 8}, | ||
259 | { 26000000, 1000000000, 1000, 26, 1, 12}, | ||
260 | |||
261 | { 0, 0, 0, 0, 0, 0 }, | ||
262 | }; | ||
263 | |||
264 | DEFINE_PLL(pll_d, PLL_HAS_CPCON | PLLD, 0xd0, 1000000000, 2000000, 40000000, | ||
265 | 1000000, 6000000, 40000000, 1000000000, tegra_pll_d_freq_table, | ||
266 | 1000, tegra_pll_ops, 0, clk_m); | ||
267 | |||
268 | DEFINE_PLL_OUT(pll_d_out0, DIV_2 | PLLD, 0, 0, 500000000, | ||
269 | tegra_pll_div_ops, pll_d, CLK_SET_RATE_PARENT); | ||
270 | |||
271 | static struct clk_pll_freq_table tegra_pll_u_freq_table[] = { | ||
272 | { 12000000, 480000000, 960, 12, 2, 0}, | ||
273 | { 13000000, 480000000, 960, 13, 2, 0}, | ||
274 | { 19200000, 480000000, 200, 4, 2, 0}, | ||
275 | { 26000000, 480000000, 960, 26, 2, 0}, | ||
276 | { 0, 0, 0, 0, 0, 0 }, | ||
277 | }; | ||
278 | |||
279 | DEFINE_PLL(pll_u, PLLU, 0xc0, 480000000, 2000000, 40000000, 1000000, 6000000, | ||
280 | 48000000, 960000000, tegra_pll_u_freq_table, 1000, | ||
281 | tegra_pll_ops, 0, clk_m); | ||
282 | |||
283 | static struct clk_pll_freq_table tegra_pll_x_freq_table[] = { | ||
284 | /* 1 GHz */ | ||
285 | { 12000000, 1000000000, 1000, 12, 1, 12}, | ||
286 | { 13000000, 1000000000, 1000, 13, 1, 12}, | ||
287 | { 19200000, 1000000000, 625, 12, 1, 8}, | ||
288 | { 26000000, 1000000000, 1000, 26, 1, 12}, | ||
289 | |||
290 | /* 912 MHz */ | ||
291 | { 12000000, 912000000, 912, 12, 1, 12}, | ||
292 | { 13000000, 912000000, 912, 13, 1, 12}, | ||
293 | { 19200000, 912000000, 760, 16, 1, 8}, | ||
294 | { 26000000, 912000000, 912, 26, 1, 12}, | ||
295 | |||
296 | /* 816 MHz */ | ||
297 | { 12000000, 816000000, 816, 12, 1, 12}, | ||
298 | { 13000000, 816000000, 816, 13, 1, 12}, | ||
299 | { 19200000, 816000000, 680, 16, 1, 8}, | ||
300 | { 26000000, 816000000, 816, 26, 1, 12}, | ||
301 | |||
302 | /* 760 MHz */ | ||
303 | { 12000000, 760000000, 760, 12, 1, 12}, | ||
304 | { 13000000, 760000000, 760, 13, 1, 12}, | ||
305 | { 19200000, 760000000, 950, 24, 1, 8}, | ||
306 | { 26000000, 760000000, 760, 26, 1, 12}, | ||
307 | |||
308 | /* 750 MHz */ | ||
309 | { 12000000, 750000000, 750, 12, 1, 12}, | ||
310 | { 13000000, 750000000, 750, 13, 1, 12}, | ||
311 | { 19200000, 750000000, 625, 16, 1, 8}, | ||
312 | { 26000000, 750000000, 750, 26, 1, 12}, | ||
313 | |||
314 | /* 608 MHz */ | ||
315 | { 12000000, 608000000, 608, 12, 1, 12}, | ||
316 | { 13000000, 608000000, 608, 13, 1, 12}, | ||
317 | { 19200000, 608000000, 380, 12, 1, 8}, | ||
318 | { 26000000, 608000000, 608, 26, 1, 12}, | ||
319 | |||
320 | /* 456 MHz */ | ||
321 | { 12000000, 456000000, 456, 12, 1, 12}, | ||
322 | { 13000000, 456000000, 456, 13, 1, 12}, | ||
323 | { 19200000, 456000000, 380, 16, 1, 8}, | ||
324 | { 26000000, 456000000, 456, 26, 1, 12}, | ||
325 | |||
326 | /* 312 MHz */ | ||
327 | { 12000000, 312000000, 312, 12, 1, 12}, | ||
328 | { 13000000, 312000000, 312, 13, 1, 12}, | ||
329 | { 19200000, 312000000, 260, 16, 1, 8}, | ||
330 | { 26000000, 312000000, 312, 26, 1, 12}, | ||
331 | |||
332 | { 0, 0, 0, 0, 0, 0 }, | ||
333 | }; | ||
334 | |||
335 | DEFINE_PLL(pll_x, PLL_HAS_CPCON | PLL_ALT_MISC_REG, 0xe0, 1000000000, 2000000, | ||
336 | 31000000, 1000000, 6000000, 20000000, 1200000000, | ||
337 | tegra_pll_x_freq_table, 300, tegra_pllx_ops, 0, clk_m); | ||
338 | |||
339 | static struct clk_pll_freq_table tegra_pll_e_freq_table[] = { | ||
340 | { 12000000, 100000000, 200, 24, 1, 0 }, | ||
341 | { 0, 0, 0, 0, 0, 0 }, | ||
342 | }; | ||
343 | |||
344 | DEFINE_PLL(pll_e, PLL_ALT_MISC_REG, 0xe8, 100000000, 12000000, 12000000, 0, 0, | ||
345 | 0, 0, tegra_pll_e_freq_table, 0, tegra_plle_ops, 0, clk_m); | ||
346 | |||
347 | static const char *tegra_common_parent_names[] = { | ||
348 | "clk_m", | ||
349 | }; | ||
350 | |||
351 | static struct clk *tegra_common_parents[] = { | ||
352 | &tegra_clk_m, | ||
353 | }; | ||
354 | |||
355 | static struct clk tegra_clk_d; | ||
356 | static struct clk_tegra tegra_clk_d_hw = { | ||
357 | .hw = { | ||
358 | .clk = &tegra_clk_d, | ||
359 | }, | ||
360 | .flags = PERIPH_NO_RESET, | ||
361 | .reg = 0x34, | ||
362 | .reg_shift = 12, | ||
363 | .max_rate = 52000000, | ||
364 | .u.periph = { | ||
365 | .clk_num = 90, | ||
366 | }, | ||
367 | }; | ||
368 | |||
369 | static struct clk tegra_clk_d = { | ||
370 | .name = "clk_d", | ||
371 | .hw = &tegra_clk_d_hw.hw, | ||
372 | .ops = &tegra_clk_double_ops, | ||
373 | .parent = &tegra_clk_m, | ||
374 | .parent_names = tegra_common_parent_names, | ||
375 | .parents = tegra_common_parents, | ||
376 | .num_parents = ARRAY_SIZE(tegra_common_parent_names), | ||
377 | }; | ||
378 | |||
379 | static struct clk tegra_cdev1; | ||
380 | static struct clk_tegra tegra_cdev1_hw = { | ||
381 | .hw = { | ||
382 | .clk = &tegra_cdev1, | ||
383 | }, | ||
384 | .fixed_rate = 26000000, | ||
385 | .u.periph = { | ||
386 | .clk_num = 94, | ||
387 | }, | ||
388 | }; | ||
389 | static struct clk tegra_cdev1 = { | ||
390 | .name = "cdev1", | ||
391 | .hw = &tegra_cdev1_hw.hw, | ||
392 | .ops = &tegra_cdev_clk_ops, | ||
393 | .flags = CLK_IS_ROOT, | ||
394 | }; | ||
395 | |||
396 | /* dap_mclk2, belongs to the cdev2 pingroup. */ | ||
397 | static struct clk tegra_cdev2; | ||
398 | static struct clk_tegra tegra_cdev2_hw = { | ||
399 | .hw = { | ||
400 | .clk = &tegra_cdev2, | ||
401 | }, | ||
402 | .fixed_rate = 26000000, | ||
403 | .u.periph = { | ||
404 | .clk_num = 93, | ||
405 | }, | ||
406 | }; | ||
407 | static struct clk tegra_cdev2 = { | ||
408 | .name = "cdev2", | ||
409 | .hw = &tegra_cdev2_hw.hw, | ||
410 | .ops = &tegra_cdev_clk_ops, | ||
411 | .flags = CLK_IS_ROOT, | ||
412 | }; | ||
413 | |||
414 | /* initialized before peripheral clocks */ | ||
415 | static struct clk_mux_sel mux_audio_sync_clk[8+1]; | ||
416 | static const struct audio_sources { | ||
417 | const char *name; | ||
418 | int value; | ||
419 | } mux_audio_sync_clk_sources[] = { | ||
420 | { .name = "spdif_in", .value = 0 }, | ||
421 | { .name = "i2s1", .value = 1 }, | ||
422 | { .name = "i2s2", .value = 2 }, | ||
423 | { .name = "pll_a_out0", .value = 4 }, | ||
424 | #if 0 /* FIXME: not implemented */ | ||
425 | { .name = "ac97", .value = 3 }, | ||
426 | { .name = "ext_audio_clk2", .value = 5 }, | ||
427 | { .name = "ext_audio_clk1", .value = 6 }, | ||
428 | { .name = "ext_vimclk", .value = 7 }, | ||
429 | #endif | ||
430 | { NULL, 0 } | ||
431 | }; | ||
432 | |||
433 | static const char *audio_parent_names[] = { | ||
434 | "spdif_in", | ||
435 | "i2s1", | ||
436 | "i2s2", | ||
437 | "dummy", | ||
438 | "pll_a_out0", | ||
439 | "dummy", | ||
440 | "dummy", | ||
441 | "dummy", | ||
442 | }; | ||
443 | |||
444 | static struct clk *audio_parents[] = { | ||
445 | NULL, | ||
446 | NULL, | ||
447 | NULL, | ||
448 | NULL, | ||
449 | NULL, | ||
450 | NULL, | ||
451 | NULL, | ||
452 | NULL, | ||
453 | }; | ||
454 | |||
455 | static struct clk tegra_audio; | ||
456 | static struct clk_tegra tegra_audio_hw = { | ||
457 | .hw = { | ||
458 | .clk = &tegra_audio, | ||
459 | }, | ||
460 | .reg = 0x38, | ||
461 | .max_rate = 73728000, | ||
462 | }; | ||
463 | DEFINE_CLK_TEGRA(audio, 0, &tegra_audio_sync_clk_ops, 0, audio_parent_names, | ||
464 | audio_parents, NULL); | ||
465 | |||
466 | static const char *audio_2x_parent_names[] = { | ||
467 | "audio", | ||
468 | }; | ||
469 | |||
470 | static struct clk *audio_2x_parents[] = { | ||
471 | &tegra_audio, | ||
472 | }; | ||
473 | |||
474 | static struct clk tegra_audio_2x; | ||
475 | static struct clk_tegra tegra_audio_2x_hw = { | ||
476 | .hw = { | ||
477 | .clk = &tegra_audio_2x, | ||
478 | }, | ||
479 | .flags = PERIPH_NO_RESET, | ||
480 | .max_rate = 48000000, | ||
481 | .reg = 0x34, | ||
482 | .reg_shift = 8, | ||
483 | .u.periph = { | ||
484 | .clk_num = 89, | ||
485 | }, | ||
486 | }; | ||
487 | DEFINE_CLK_TEGRA(audio_2x, 0, &tegra_clk_double_ops, 0, audio_2x_parent_names, | ||
488 | audio_2x_parents, &tegra_audio); | ||
489 | |||
490 | static struct clk_lookup tegra_audio_clk_lookups[] = { | ||
491 | { .con_id = "audio", .clk = &tegra_audio }, | ||
492 | { .con_id = "audio_2x", .clk = &tegra_audio_2x } | ||
493 | }; | ||
494 | |||
495 | /* This is called after peripheral clocks are initialized, as the | ||
496 | * audio_sync clock depends on some of the peripheral clocks. | ||
497 | */ | ||
498 | |||
499 | static void init_audio_sync_clock_mux(void) | ||
500 | { | ||
501 | int i; | ||
502 | struct clk_mux_sel *sel = mux_audio_sync_clk; | ||
503 | const struct audio_sources *src = mux_audio_sync_clk_sources; | ||
504 | struct clk_lookup *lookup; | ||
505 | |||
506 | for (i = 0; src->name; i++, sel++, src++) { | ||
507 | sel->input = tegra_get_clock_by_name(src->name); | ||
508 | if (!sel->input) | ||
509 | pr_err("%s: could not find clk %s\n", __func__, | ||
510 | src->name); | ||
511 | audio_parents[src->value] = sel->input; | ||
512 | sel->value = src->value; | ||
513 | } | ||
514 | |||
515 | lookup = tegra_audio_clk_lookups; | ||
516 | for (i = 0; i < ARRAY_SIZE(tegra_audio_clk_lookups); i++, lookup++) { | ||
517 | struct clk *c = lookup->clk; | ||
518 | struct clk_tegra *clk = to_clk_tegra(c->hw); | ||
519 | __clk_init(NULL, c); | ||
520 | INIT_LIST_HEAD(&clk->shared_bus_list); | ||
521 | clk->lookup.con_id = lookup->con_id; | ||
522 | clk->lookup.clk = c; | ||
523 | clkdev_add(&clk->lookup); | ||
524 | tegra_clk_add(c); | ||
525 | } | ||
526 | } | ||
527 | |||
528 | static const char *mux_cclk[] = { | ||
529 | "clk_m", | ||
530 | "pll_c", | ||
531 | "clk_32k", | ||
532 | "pll_m", | ||
533 | "pll_p", | ||
534 | "pll_p_out4", | ||
535 | "pll_p_out3", | ||
536 | "clk_d", | ||
537 | "pll_x", | ||
538 | }; | ||
539 | |||
540 | |||
541 | static struct clk *mux_cclk_p[] = { | ||
542 | &tegra_clk_m, | ||
543 | &tegra_pll_c, | ||
544 | &tegra_clk_32k, | ||
545 | &tegra_pll_m, | ||
546 | &tegra_pll_p, | ||
547 | &tegra_pll_p_out4, | ||
548 | &tegra_pll_p_out3, | ||
549 | &tegra_clk_d, | ||
550 | &tegra_pll_x, | ||
551 | }; | ||
552 | |||
553 | static const char *mux_sclk[] = { | ||
554 | "clk_m", | ||
555 | "pll_c_out1", | ||
556 | "pll_p_out4", | ||
557 | "pllp_p_out3", | ||
558 | "pll_p_out2", | ||
559 | "clk_d", | ||
560 | "clk_32k", | ||
561 | "pll_m_out1", | ||
562 | }; | ||
563 | |||
564 | static struct clk *mux_sclk_p[] = { | ||
565 | &tegra_clk_m, | ||
566 | &tegra_pll_c_out1, | ||
567 | &tegra_pll_p_out4, | ||
568 | &tegra_pll_p_out3, | ||
569 | &tegra_pll_p_out2, | ||
570 | &tegra_clk_d, | ||
571 | &tegra_clk_32k, | ||
572 | &tegra_pll_m_out1, | ||
573 | }; | ||
574 | |||
575 | static struct clk tegra_cclk; | ||
576 | static struct clk_tegra tegra_cclk_hw = { | ||
577 | .hw = { | ||
578 | .clk = &tegra_cclk, | ||
579 | }, | ||
580 | .reg = 0x20, | ||
581 | .max_rate = 1000000000, | ||
582 | }; | ||
583 | DEFINE_CLK_TEGRA(cclk, 0, &tegra_super_ops, 0, mux_cclk, | ||
584 | mux_cclk_p, NULL); | ||
585 | |||
586 | static const char *mux_twd[] = { | ||
587 | "cclk", | ||
588 | }; | ||
589 | |||
590 | static struct clk *mux_twd_p[] = { | ||
591 | &tegra_cclk, | ||
592 | }; | ||
593 | |||
594 | static struct clk tegra_clk_twd; | ||
595 | static struct clk_tegra tegra_clk_twd_hw = { | ||
596 | .hw = { | ||
597 | .clk = &tegra_clk_twd, | ||
598 | }, | ||
599 | .max_rate = 1000000000, | ||
600 | .mul = 1, | ||
601 | .div = 4, | ||
602 | }; | ||
603 | |||
604 | static struct clk tegra_clk_twd = { | ||
605 | .name = "twd", | ||
606 | .ops = &tegra_twd_ops, | ||
607 | .hw = &tegra_clk_twd_hw.hw, | ||
608 | .parent = &tegra_cclk, | ||
609 | .parent_names = mux_twd, | ||
610 | .parents = mux_twd_p, | ||
611 | .num_parents = ARRAY_SIZE(mux_twd), | ||
612 | }; | ||
613 | |||
614 | static struct clk tegra_sclk; | ||
615 | static struct clk_tegra tegra_sclk_hw = { | ||
616 | .hw = { | ||
617 | .clk = &tegra_sclk, | ||
618 | }, | ||
619 | .reg = 0x28, | ||
620 | .max_rate = 240000000, | ||
621 | .min_rate = 120000000, | ||
622 | }; | ||
623 | DEFINE_CLK_TEGRA(sclk, 0, &tegra_super_ops, 0, mux_sclk, | ||
624 | mux_sclk_p, NULL); | ||
625 | |||
626 | static const char *tegra_cop_parent_names[] = { | ||
627 | "tegra_sclk", | ||
628 | }; | ||
629 | |||
630 | static struct clk *tegra_cop_parents[] = { | ||
631 | &tegra_sclk, | ||
632 | }; | ||
633 | |||
634 | static struct clk tegra_cop; | ||
635 | static struct clk_tegra tegra_cop_hw = { | ||
636 | .hw = { | ||
637 | .clk = &tegra_cop, | ||
638 | }, | ||
639 | .max_rate = 240000000, | ||
640 | .reset = &tegra2_cop_clk_reset, | ||
641 | }; | ||
642 | DEFINE_CLK_TEGRA(cop, 0, &tegra_cop_ops, CLK_SET_RATE_PARENT, | ||
643 | tegra_cop_parent_names, tegra_cop_parents, &tegra_sclk); | ||
644 | |||
645 | static const char *tegra_hclk_parent_names[] = { | ||
646 | "tegra_sclk", | ||
647 | }; | ||
648 | |||
649 | static struct clk *tegra_hclk_parents[] = { | ||
650 | &tegra_sclk, | ||
651 | }; | ||
652 | |||
653 | static struct clk tegra_hclk; | ||
654 | static struct clk_tegra tegra_hclk_hw = { | ||
655 | .hw = { | ||
656 | .clk = &tegra_hclk, | ||
657 | }, | ||
658 | .flags = DIV_BUS, | ||
659 | .reg = 0x30, | ||
660 | .reg_shift = 4, | ||
661 | .max_rate = 240000000, | ||
662 | }; | ||
663 | DEFINE_CLK_TEGRA(hclk, 0, &tegra_bus_ops, 0, tegra_hclk_parent_names, | ||
664 | tegra_hclk_parents, &tegra_sclk); | ||
665 | |||
666 | static const char *tegra_pclk_parent_names[] = { | ||
667 | "tegra_hclk", | ||
668 | }; | ||
669 | |||
670 | static struct clk *tegra_pclk_parents[] = { | ||
671 | &tegra_hclk, | ||
672 | }; | ||
673 | |||
674 | static struct clk tegra_pclk; | ||
675 | static struct clk_tegra tegra_pclk_hw = { | ||
676 | .hw = { | ||
677 | .clk = &tegra_pclk, | ||
678 | }, | ||
679 | .flags = DIV_BUS, | ||
680 | .reg = 0x30, | ||
681 | .reg_shift = 0, | ||
682 | .max_rate = 120000000, | ||
683 | }; | ||
684 | DEFINE_CLK_TEGRA(pclk, 0, &tegra_bus_ops, 0, tegra_pclk_parent_names, | ||
685 | tegra_pclk_parents, &tegra_hclk); | ||
686 | |||
687 | static const char *tegra_blink_parent_names[] = { | ||
688 | "clk_32k", | ||
689 | }; | ||
690 | |||
691 | static struct clk *tegra_blink_parents[] = { | ||
692 | &tegra_clk_32k, | ||
693 | }; | ||
694 | |||
695 | static struct clk tegra_blink; | ||
696 | static struct clk_tegra tegra_blink_hw = { | ||
697 | .hw = { | ||
698 | .clk = &tegra_blink, | ||
699 | }, | ||
700 | .reg = 0x40, | ||
701 | .max_rate = 32768, | ||
702 | }; | ||
703 | DEFINE_CLK_TEGRA(blink, 0, &tegra_blink_clk_ops, 0, tegra_blink_parent_names, | ||
704 | tegra_blink_parents, &tegra_clk_32k); | ||
705 | |||
706 | static const char *mux_pllm_pllc_pllp_plla[] = { | ||
707 | "pll_m", | ||
708 | "pll_c", | ||
709 | "pll_p", | ||
710 | "pll_a_out0", | ||
711 | }; | ||
712 | |||
713 | static struct clk *mux_pllm_pllc_pllp_plla_p[] = { | ||
714 | &tegra_pll_m, | ||
715 | &tegra_pll_c, | ||
716 | &tegra_pll_p, | ||
717 | &tegra_pll_a_out0, | ||
718 | }; | ||
719 | |||
720 | static const char *mux_pllm_pllc_pllp_clkm[] = { | ||
721 | "pll_m", | ||
722 | "pll_c", | ||
723 | "pll_p", | ||
724 | "clk_m", | ||
725 | }; | ||
726 | |||
727 | static struct clk *mux_pllm_pllc_pllp_clkm_p[] = { | ||
728 | &tegra_pll_m, | ||
729 | &tegra_pll_c, | ||
730 | &tegra_pll_p, | ||
731 | &tegra_clk_m, | ||
732 | }; | ||
733 | |||
734 | static const char *mux_pllp_pllc_pllm_clkm[] = { | ||
735 | "pll_p", | ||
736 | "pll_c", | ||
737 | "pll_m", | ||
738 | "clk_m", | ||
739 | }; | ||
740 | |||
741 | static struct clk *mux_pllp_pllc_pllm_clkm_p[] = { | ||
742 | &tegra_pll_p, | ||
743 | &tegra_pll_c, | ||
744 | &tegra_pll_m, | ||
745 | &tegra_clk_m, | ||
746 | }; | ||
747 | |||
748 | static const char *mux_pllaout0_audio2x_pllp_clkm[] = { | ||
749 | "pll_a_out0", | ||
750 | "audio_2x", | ||
751 | "pll_p", | ||
752 | "clk_m", | ||
753 | }; | ||
754 | |||
755 | static struct clk *mux_pllaout0_audio2x_pllp_clkm_p[] = { | ||
756 | &tegra_pll_a_out0, | ||
757 | &tegra_audio_2x, | ||
758 | &tegra_pll_p, | ||
759 | &tegra_clk_m, | ||
760 | }; | ||
761 | |||
762 | static const char *mux_pllp_plld_pllc_clkm[] = { | ||
763 | "pllp", | ||
764 | "pll_d_out0", | ||
765 | "pll_c", | ||
766 | "clk_m", | ||
767 | }; | ||
768 | |||
769 | static struct clk *mux_pllp_plld_pllc_clkm_p[] = { | ||
770 | &tegra_pll_p, | ||
771 | &tegra_pll_d_out0, | ||
772 | &tegra_pll_c, | ||
773 | &tegra_clk_m, | ||
774 | }; | ||
775 | |||
776 | static const char *mux_pllp_pllc_audio_clkm_clk32[] = { | ||
777 | "pll_p", | ||
778 | "pll_c", | ||
779 | "audio", | ||
780 | "clk_m", | ||
781 | "clk_32k", | ||
782 | }; | ||
783 | |||
784 | static struct clk *mux_pllp_pllc_audio_clkm_clk32_p[] = { | ||
785 | &tegra_pll_p, | ||
786 | &tegra_pll_c, | ||
787 | &tegra_audio, | ||
788 | &tegra_clk_m, | ||
789 | &tegra_clk_32k, | ||
790 | }; | ||
791 | |||
792 | static const char *mux_pllp_pllc_pllm[] = { | ||
793 | "pll_p", | ||
794 | "pll_c", | ||
795 | "pll_m" | ||
796 | }; | ||
797 | |||
798 | static struct clk *mux_pllp_pllc_pllm_p[] = { | ||
799 | &tegra_pll_p, | ||
800 | &tegra_pll_c, | ||
801 | &tegra_pll_m, | ||
802 | }; | ||
803 | |||
804 | static const char *mux_clk_m[] = { | ||
805 | "clk_m", | ||
806 | }; | ||
807 | |||
808 | static struct clk *mux_clk_m_p[] = { | ||
809 | &tegra_clk_m, | ||
810 | }; | ||
811 | |||
812 | static const char *mux_pllp_out3[] = { | ||
813 | "pll_p_out3", | ||
814 | }; | ||
815 | |||
816 | static struct clk *mux_pllp_out3_p[] = { | ||
817 | &tegra_pll_p_out3, | ||
818 | }; | ||
819 | |||
820 | static const char *mux_plld[] = { | ||
821 | "pll_d", | ||
822 | }; | ||
823 | |||
824 | static struct clk *mux_plld_p[] = { | ||
825 | &tegra_pll_d, | ||
826 | }; | ||
827 | |||
828 | static const char *mux_clk_32k[] = { | ||
829 | "clk_32k", | ||
830 | }; | ||
831 | |||
832 | static struct clk *mux_clk_32k_p[] = { | ||
833 | &tegra_clk_32k, | ||
834 | }; | ||
835 | |||
836 | static const char *mux_pclk[] = { | ||
837 | "pclk", | ||
838 | }; | ||
839 | |||
840 | static struct clk *mux_pclk_p[] = { | ||
841 | &tegra_pclk, | ||
842 | }; | ||
843 | |||
844 | static struct clk tegra_emc; | ||
845 | static struct clk_tegra tegra_emc_hw = { | ||
846 | .hw = { | ||
847 | .clk = &tegra_emc, | ||
848 | }, | ||
849 | .reg = 0x19c, | ||
850 | .max_rate = 800000000, | ||
851 | .flags = MUX | DIV_U71 | PERIPH_EMC_ENB, | ||
852 | .reset = &tegra2_periph_clk_reset, | ||
853 | .u.periph = { | ||
854 | .clk_num = 57, | ||
855 | }, | ||
856 | }; | ||
857 | DEFINE_CLK_TEGRA(emc, 0, &tegra_emc_clk_ops, 0, mux_pllm_pllc_pllp_clkm, | ||
858 | mux_pllm_pllc_pllp_clkm_p, NULL); | ||
859 | |||
860 | #define PERIPH_CLK(_name, _dev, _con, _clk_num, _reg, \ | ||
861 | _max, _inputs, _flags) \ | ||
862 | static struct clk tegra_##_name; \ | ||
863 | static struct clk_tegra tegra_##_name##_hw = { \ | ||
864 | .hw = { \ | ||
865 | .clk = &tegra_##_name, \ | ||
866 | }, \ | ||
867 | .lookup = { \ | ||
868 | .dev_id = _dev, \ | ||
869 | .con_id = _con, \ | ||
870 | }, \ | ||
871 | .reg = _reg, \ | ||
872 | .flags = _flags, \ | ||
873 | .max_rate = _max, \ | ||
874 | .u.periph = { \ | ||
875 | .clk_num = _clk_num, \ | ||
876 | }, \ | ||
877 | .reset = tegra2_periph_clk_reset, \ | ||
878 | }; \ | ||
879 | static struct clk tegra_##_name = { \ | ||
880 | .name = #_name, \ | ||
881 | .ops = &tegra_periph_clk_ops, \ | ||
882 | .hw = &tegra_##_name##_hw.hw, \ | ||
883 | .parent_names = _inputs, \ | ||
884 | .parents = _inputs##_p, \ | ||
885 | .num_parents = ARRAY_SIZE(_inputs), \ | ||
886 | }; | ||
887 | |||
888 | PERIPH_CLK(apbdma, "tegra-apbdma", NULL, 34, 0, 108000000, mux_pclk, 0); | ||
889 | PERIPH_CLK(rtc, "rtc-tegra", NULL, 4, 0, 32768, mux_clk_32k, PERIPH_NO_RESET); | ||
890 | PERIPH_CLK(timer, "timer", NULL, 5, 0, 26000000, mux_clk_m, 0); | ||
891 | PERIPH_CLK(i2s1, "tegra20-i2s.0", NULL, 11, 0x100, 26000000, mux_pllaout0_audio2x_pllp_clkm, MUX | DIV_U71); | ||
892 | PERIPH_CLK(i2s2, "tegra20-i2s.1", NULL, 18, 0x104, 26000000, mux_pllaout0_audio2x_pllp_clkm, MUX | DIV_U71); | ||
893 | PERIPH_CLK(spdif_out, "spdif_out", NULL, 10, 0x108, 100000000, mux_pllaout0_audio2x_pllp_clkm, MUX | DIV_U71); | ||
894 | PERIPH_CLK(spdif_in, "spdif_in", NULL, 10, 0x10c, 100000000, mux_pllp_pllc_pllm, MUX | DIV_U71); | ||
895 | PERIPH_CLK(pwm, "tegra-pwm", NULL, 17, 0x110, 432000000, mux_pllp_pllc_audio_clkm_clk32, MUX | DIV_U71 | MUX_PWM); | ||
896 | PERIPH_CLK(spi, "spi", NULL, 43, 0x114, 40000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
897 | PERIPH_CLK(xio, "xio", NULL, 45, 0x120, 150000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
898 | PERIPH_CLK(twc, "twc", NULL, 16, 0x12c, 150000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
899 | PERIPH_CLK(sbc1, "spi_tegra.0", NULL, 41, 0x134, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
900 | PERIPH_CLK(sbc2, "spi_tegra.1", NULL, 44, 0x118, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
901 | PERIPH_CLK(sbc3, "spi_tegra.2", NULL, 46, 0x11c, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
902 | PERIPH_CLK(sbc4, "spi_tegra.3", NULL, 68, 0x1b4, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
903 | PERIPH_CLK(ide, "ide", NULL, 25, 0x144, 100000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* requires min voltage */ | ||
904 | PERIPH_CLK(ndflash, "tegra_nand", NULL, 13, 0x160, 164000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* scales with voltage */ | ||
905 | PERIPH_CLK(vfir, "vfir", NULL, 7, 0x168, 72000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
906 | PERIPH_CLK(sdmmc1, "sdhci-tegra.0", NULL, 14, 0x150, 52000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* scales with voltage */ | ||
907 | PERIPH_CLK(sdmmc2, "sdhci-tegra.1", NULL, 9, 0x154, 52000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* scales with voltage */ | ||
908 | PERIPH_CLK(sdmmc3, "sdhci-tegra.2", NULL, 69, 0x1bc, 52000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* scales with voltage */ | ||
909 | PERIPH_CLK(sdmmc4, "sdhci-tegra.3", NULL, 15, 0x164, 52000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* scales with voltage */ | ||
910 | PERIPH_CLK(vcp, "tegra-avp", "vcp", 29, 0, 250000000, mux_clk_m, 0); | ||
911 | PERIPH_CLK(bsea, "tegra-avp", "bsea", 62, 0, 250000000, mux_clk_m, 0); | ||
912 | PERIPH_CLK(bsev, "tegra-aes", "bsev", 63, 0, 250000000, mux_clk_m, 0); | ||
913 | PERIPH_CLK(vde, "tegra-avp", "vde", 61, 0x1c8, 250000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* scales with voltage and process_id */ | ||
914 | PERIPH_CLK(csite, "csite", NULL, 73, 0x1d4, 144000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* max rate ??? */ | ||
915 | /* FIXME: what is la? */ | ||
916 | PERIPH_CLK(la, "la", NULL, 76, 0x1f8, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
917 | PERIPH_CLK(owr, "tegra_w1", NULL, 71, 0x1cc, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
918 | PERIPH_CLK(nor, "nor", NULL, 42, 0x1d0, 92000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* requires min voltage */ | ||
919 | PERIPH_CLK(mipi, "mipi", NULL, 50, 0x174, 60000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* scales with voltage */ | ||
920 | PERIPH_CLK(i2c1, "tegra-i2c.0", "div-clk", 12, 0x124, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U16); | ||
921 | PERIPH_CLK(i2c2, "tegra-i2c.1", "div-clk", 54, 0x198, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U16); | ||
922 | PERIPH_CLK(i2c3, "tegra-i2c.2", "div-clk", 67, 0x1b8, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U16); | ||
923 | PERIPH_CLK(dvc, "tegra-i2c.3", "div-clk", 47, 0x128, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U16); | ||
924 | PERIPH_CLK(uarta, "tegra-uart.0", NULL, 6, 0x178, 600000000, mux_pllp_pllc_pllm_clkm, MUX); | ||
925 | PERIPH_CLK(uartb, "tegra-uart.1", NULL, 7, 0x17c, 600000000, mux_pllp_pllc_pllm_clkm, MUX); | ||
926 | PERIPH_CLK(uartc, "tegra-uart.2", NULL, 55, 0x1a0, 600000000, mux_pllp_pllc_pllm_clkm, MUX); | ||
927 | PERIPH_CLK(uartd, "tegra-uart.3", NULL, 65, 0x1c0, 600000000, mux_pllp_pllc_pllm_clkm, MUX); | ||
928 | PERIPH_CLK(uarte, "tegra-uart.4", NULL, 66, 0x1c4, 600000000, mux_pllp_pllc_pllm_clkm, MUX); | ||
929 | PERIPH_CLK(3d, "3d", NULL, 24, 0x158, 300000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | PERIPH_MANUAL_RESET); /* scales with voltage and process_id */ | ||
930 | PERIPH_CLK(2d, "2d", NULL, 21, 0x15c, 300000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71); /* scales with voltage and process_id */ | ||
931 | PERIPH_CLK(vi, "tegra_camera", "vi", 20, 0x148, 150000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71); /* scales with voltage and process_id */ | ||
932 | PERIPH_CLK(vi_sensor, "tegra_camera", "vi_sensor", 20, 0x1a8, 150000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | PERIPH_NO_RESET); /* scales with voltage and process_id */ | ||
933 | PERIPH_CLK(epp, "epp", NULL, 19, 0x16c, 300000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71); /* scales with voltage and process_id */ | ||
934 | PERIPH_CLK(mpe, "mpe", NULL, 60, 0x170, 250000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71); /* scales with voltage and process_id */ | ||
935 | PERIPH_CLK(host1x, "host1x", NULL, 28, 0x180, 166000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71); /* scales with voltage and process_id */ | ||
936 | PERIPH_CLK(cve, "cve", NULL, 49, 0x140, 250000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71); /* requires min voltage */ | ||
937 | PERIPH_CLK(tvo, "tvo", NULL, 49, 0x188, 250000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71); /* requires min voltage */ | ||
938 | PERIPH_CLK(hdmi, "hdmi", NULL, 51, 0x18c, 600000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71); /* requires min voltage */ | ||
939 | PERIPH_CLK(tvdac, "tvdac", NULL, 53, 0x194, 250000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71); /* requires min voltage */ | ||
940 | PERIPH_CLK(disp1, "tegradc.0", NULL, 27, 0x138, 600000000, mux_pllp_plld_pllc_clkm, MUX); /* scales with voltage and process_id */ | ||
941 | PERIPH_CLK(disp2, "tegradc.1", NULL, 26, 0x13c, 600000000, mux_pllp_plld_pllc_clkm, MUX); /* scales with voltage and process_id */ | ||
942 | PERIPH_CLK(usbd, "fsl-tegra-udc", NULL, 22, 0, 480000000, mux_clk_m, 0); /* requires min voltage */ | ||
943 | PERIPH_CLK(usb2, "tegra-ehci.1", NULL, 58, 0, 480000000, mux_clk_m, 0); /* requires min voltage */ | ||
944 | PERIPH_CLK(usb3, "tegra-ehci.2", NULL, 59, 0, 480000000, mux_clk_m, 0); /* requires min voltage */ | ||
945 | PERIPH_CLK(dsi, "dsi", NULL, 48, 0, 500000000, mux_plld, 0); /* scales with voltage */ | ||
946 | PERIPH_CLK(csi, "tegra_camera", "csi", 52, 0, 72000000, mux_pllp_out3, 0); | ||
947 | PERIPH_CLK(isp, "tegra_camera", "isp", 23, 0, 150000000, mux_clk_m, 0); /* same frequency as VI */ | ||
948 | PERIPH_CLK(csus, "tegra_camera", "csus", 92, 0, 150000000, mux_clk_m, PERIPH_NO_RESET); | ||
949 | PERIPH_CLK(pex, NULL, "pex", 70, 0, 26000000, mux_clk_m, PERIPH_MANUAL_RESET); | ||
950 | PERIPH_CLK(afi, NULL, "afi", 72, 0, 26000000, mux_clk_m, PERIPH_MANUAL_RESET); | ||
951 | PERIPH_CLK(pcie_xclk, NULL, "pcie_xclk", 74, 0, 26000000, mux_clk_m, PERIPH_MANUAL_RESET); | ||
952 | |||
953 | static struct clk *tegra_list_clks[] = { | ||
954 | &tegra_apbdma, | ||
955 | &tegra_rtc, | ||
956 | &tegra_i2s1, | ||
957 | &tegra_i2s2, | ||
958 | &tegra_spdif_out, | ||
959 | &tegra_spdif_in, | ||
960 | &tegra_pwm, | ||
961 | &tegra_spi, | ||
962 | &tegra_xio, | ||
963 | &tegra_twc, | ||
964 | &tegra_sbc1, | ||
965 | &tegra_sbc2, | ||
966 | &tegra_sbc3, | ||
967 | &tegra_sbc4, | ||
968 | &tegra_ide, | ||
969 | &tegra_ndflash, | ||
970 | &tegra_vfir, | ||
971 | &tegra_sdmmc1, | ||
972 | &tegra_sdmmc2, | ||
973 | &tegra_sdmmc3, | ||
974 | &tegra_sdmmc4, | ||
975 | &tegra_vcp, | ||
976 | &tegra_bsea, | ||
977 | &tegra_bsev, | ||
978 | &tegra_vde, | ||
979 | &tegra_csite, | ||
980 | &tegra_la, | ||
981 | &tegra_owr, | ||
982 | &tegra_nor, | ||
983 | &tegra_mipi, | ||
984 | &tegra_i2c1, | ||
985 | &tegra_i2c2, | ||
986 | &tegra_i2c3, | ||
987 | &tegra_dvc, | ||
988 | &tegra_uarta, | ||
989 | &tegra_uartb, | ||
990 | &tegra_uartc, | ||
991 | &tegra_uartd, | ||
992 | &tegra_uarte, | ||
993 | &tegra_3d, | ||
994 | &tegra_2d, | ||
995 | &tegra_vi, | ||
996 | &tegra_vi_sensor, | ||
997 | &tegra_epp, | ||
998 | &tegra_mpe, | ||
999 | &tegra_host1x, | ||
1000 | &tegra_cve, | ||
1001 | &tegra_tvo, | ||
1002 | &tegra_hdmi, | ||
1003 | &tegra_tvdac, | ||
1004 | &tegra_disp1, | ||
1005 | &tegra_disp2, | ||
1006 | &tegra_usbd, | ||
1007 | &tegra_usb2, | ||
1008 | &tegra_usb3, | ||
1009 | &tegra_dsi, | ||
1010 | &tegra_csi, | ||
1011 | &tegra_isp, | ||
1012 | &tegra_csus, | ||
1013 | &tegra_pex, | ||
1014 | &tegra_afi, | ||
1015 | &tegra_pcie_xclk, | ||
1016 | }; | ||
1017 | |||
1018 | #define CLK_DUPLICATE(_name, _dev, _con) \ | ||
1019 | { \ | ||
1020 | .name = _name, \ | ||
1021 | .lookup = { \ | ||
1022 | .dev_id = _dev, \ | ||
1023 | .con_id = _con, \ | ||
1024 | }, \ | ||
1025 | } | ||
1026 | |||
1027 | /* Some clocks may be used by different drivers depending on the board | ||
1028 | * configuration. List those here to register them twice in the clock lookup | ||
1029 | * table under two names. | ||
1030 | */ | ||
1031 | static struct clk_duplicate tegra_clk_duplicates[] = { | ||
1032 | CLK_DUPLICATE("uarta", "serial8250.0", NULL), | ||
1033 | CLK_DUPLICATE("uartb", "serial8250.1", NULL), | ||
1034 | CLK_DUPLICATE("uartc", "serial8250.2", NULL), | ||
1035 | CLK_DUPLICATE("uartd", "serial8250.3", NULL), | ||
1036 | CLK_DUPLICATE("uarte", "serial8250.4", NULL), | ||
1037 | CLK_DUPLICATE("usbd", "utmip-pad", NULL), | ||
1038 | CLK_DUPLICATE("usbd", "tegra-ehci.0", NULL), | ||
1039 | CLK_DUPLICATE("usbd", "tegra-otg", NULL), | ||
1040 | CLK_DUPLICATE("hdmi", "tegradc.0", "hdmi"), | ||
1041 | CLK_DUPLICATE("hdmi", "tegradc.1", "hdmi"), | ||
1042 | CLK_DUPLICATE("host1x", "tegra_grhost", "host1x"), | ||
1043 | CLK_DUPLICATE("2d", "tegra_grhost", "gr2d"), | ||
1044 | CLK_DUPLICATE("3d", "tegra_grhost", "gr3d"), | ||
1045 | CLK_DUPLICATE("epp", "tegra_grhost", "epp"), | ||
1046 | CLK_DUPLICATE("mpe", "tegra_grhost", "mpe"), | ||
1047 | CLK_DUPLICATE("cop", "tegra-avp", "cop"), | ||
1048 | CLK_DUPLICATE("vde", "tegra-aes", "vde"), | ||
1049 | CLK_DUPLICATE("cclk", NULL, "cpu"), | ||
1050 | CLK_DUPLICATE("twd", "smp_twd", NULL), | ||
1051 | CLK_DUPLICATE("pll_p_out3", "tegra-i2c.0", "fast-clk"), | ||
1052 | CLK_DUPLICATE("pll_p_out3", "tegra-i2c.1", "fast-clk"), | ||
1053 | CLK_DUPLICATE("pll_p_out3", "tegra-i2c.2", "fast-clk"), | ||
1054 | CLK_DUPLICATE("pll_p_out3", "tegra-i2c.3", "fast-clk"), | ||
1055 | }; | ||
1056 | |||
1057 | #define CLK(dev, con, ck) \ | ||
1058 | { \ | ||
1059 | .dev_id = dev, \ | ||
1060 | .con_id = con, \ | ||
1061 | .clk = ck, \ | ||
1062 | } | ||
1063 | |||
1064 | static struct clk *tegra_ptr_clks[] = { | ||
1065 | &tegra_clk_32k, | ||
1066 | &tegra_pll_s, | ||
1067 | &tegra_clk_m, | ||
1068 | &tegra_pll_m, | ||
1069 | &tegra_pll_m_out1, | ||
1070 | &tegra_pll_c, | ||
1071 | &tegra_pll_c_out1, | ||
1072 | &tegra_pll_p, | ||
1073 | &tegra_pll_p_out1, | ||
1074 | &tegra_pll_p_out2, | ||
1075 | &tegra_pll_p_out3, | ||
1076 | &tegra_pll_p_out4, | ||
1077 | &tegra_pll_a, | ||
1078 | &tegra_pll_a_out0, | ||
1079 | &tegra_pll_d, | ||
1080 | &tegra_pll_d_out0, | ||
1081 | &tegra_pll_u, | ||
1082 | &tegra_pll_x, | ||
1083 | &tegra_pll_e, | ||
1084 | &tegra_cclk, | ||
1085 | &tegra_clk_twd, | ||
1086 | &tegra_sclk, | ||
1087 | &tegra_hclk, | ||
1088 | &tegra_pclk, | ||
1089 | &tegra_clk_d, | ||
1090 | &tegra_cdev1, | ||
1091 | &tegra_cdev2, | ||
1092 | &tegra_blink, | ||
1093 | &tegra_cop, | ||
1094 | &tegra_emc, | ||
1095 | }; | ||
1096 | |||
1097 | static void tegra2_init_one_clock(struct clk *c) | ||
1098 | { | ||
1099 | struct clk_tegra *clk = to_clk_tegra(c->hw); | ||
1100 | int ret; | ||
1101 | |||
1102 | ret = __clk_init(NULL, c); | ||
1103 | if (ret) | ||
1104 | pr_err("clk init failed %s\n", __clk_get_name(c)); | ||
1105 | |||
1106 | INIT_LIST_HEAD(&clk->shared_bus_list); | ||
1107 | if (!clk->lookup.dev_id && !clk->lookup.con_id) | ||
1108 | clk->lookup.con_id = c->name; | ||
1109 | clk->lookup.clk = c; | ||
1110 | clkdev_add(&clk->lookup); | ||
1111 | tegra_clk_add(c); | ||
1112 | } | ||
1113 | |||
1114 | void __init tegra2_init_clocks(void) | ||
1115 | { | ||
1116 | int i; | ||
1117 | struct clk *c; | ||
1118 | |||
1119 | for (i = 0; i < ARRAY_SIZE(tegra_ptr_clks); i++) | ||
1120 | tegra2_init_one_clock(tegra_ptr_clks[i]); | ||
1121 | |||
1122 | for (i = 0; i < ARRAY_SIZE(tegra_list_clks); i++) | ||
1123 | tegra2_init_one_clock(tegra_list_clks[i]); | ||
1124 | |||
1125 | for (i = 0; i < ARRAY_SIZE(tegra_clk_duplicates); i++) { | ||
1126 | c = tegra_get_clock_by_name(tegra_clk_duplicates[i].name); | ||
1127 | if (!c) { | ||
1128 | pr_err("%s: Unknown duplicate clock %s\n", __func__, | ||
1129 | tegra_clk_duplicates[i].name); | ||
1130 | continue; | ||
1131 | } | ||
1132 | |||
1133 | tegra_clk_duplicates[i].lookup.clk = c; | ||
1134 | clkdev_add(&tegra_clk_duplicates[i].lookup); | ||
1135 | } | ||
1136 | |||
1137 | init_audio_sync_clock_mux(); | ||
1138 | } | ||
diff --git a/arch/arm/mach-tegra/tegra2_clocks.c b/arch/arm/mach-tegra/tegra2_clocks.c deleted file mode 100644 index a703844b2061..000000000000 --- a/arch/arm/mach-tegra/tegra2_clocks.c +++ /dev/null | |||
@@ -1,2484 +0,0 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-tegra/tegra2_clocks.c | ||
3 | * | ||
4 | * Copyright (C) 2010 Google, Inc. | ||
5 | * | ||
6 | * Author: | ||
7 | * Colin Cross <ccross@google.com> | ||
8 | * | ||
9 | * This software is licensed under the terms of the GNU General Public | ||
10 | * License version 2, as published by the Free Software Foundation, and | ||
11 | * may be copied, distributed, and modified under those terms. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
16 | * GNU General Public License for more details. | ||
17 | * | ||
18 | */ | ||
19 | |||
20 | #include <linux/kernel.h> | ||
21 | #include <linux/module.h> | ||
22 | #include <linux/list.h> | ||
23 | #include <linux/spinlock.h> | ||
24 | #include <linux/delay.h> | ||
25 | #include <linux/io.h> | ||
26 | #include <linux/clkdev.h> | ||
27 | #include <linux/clk.h> | ||
28 | |||
29 | #include <mach/iomap.h> | ||
30 | #include <mach/suspend.h> | ||
31 | |||
32 | #include "clock.h" | ||
33 | #include "fuse.h" | ||
34 | #include "tegra2_emc.h" | ||
35 | |||
36 | #define RST_DEVICES 0x004 | ||
37 | #define RST_DEVICES_SET 0x300 | ||
38 | #define RST_DEVICES_CLR 0x304 | ||
39 | #define RST_DEVICES_NUM 3 | ||
40 | |||
41 | #define CLK_OUT_ENB 0x010 | ||
42 | #define CLK_OUT_ENB_SET 0x320 | ||
43 | #define CLK_OUT_ENB_CLR 0x324 | ||
44 | #define CLK_OUT_ENB_NUM 3 | ||
45 | |||
46 | #define CLK_MASK_ARM 0x44 | ||
47 | #define MISC_CLK_ENB 0x48 | ||
48 | |||
49 | #define OSC_CTRL 0x50 | ||
50 | #define OSC_CTRL_OSC_FREQ_MASK (3<<30) | ||
51 | #define OSC_CTRL_OSC_FREQ_13MHZ (0<<30) | ||
52 | #define OSC_CTRL_OSC_FREQ_19_2MHZ (1<<30) | ||
53 | #define OSC_CTRL_OSC_FREQ_12MHZ (2<<30) | ||
54 | #define OSC_CTRL_OSC_FREQ_26MHZ (3<<30) | ||
55 | #define OSC_CTRL_MASK (0x3f2 | OSC_CTRL_OSC_FREQ_MASK) | ||
56 | |||
57 | #define OSC_FREQ_DET 0x58 | ||
58 | #define OSC_FREQ_DET_TRIG (1<<31) | ||
59 | |||
60 | #define OSC_FREQ_DET_STATUS 0x5C | ||
61 | #define OSC_FREQ_DET_BUSY (1<<31) | ||
62 | #define OSC_FREQ_DET_CNT_MASK 0xFFFF | ||
63 | |||
64 | #define PERIPH_CLK_SOURCE_I2S1 0x100 | ||
65 | #define PERIPH_CLK_SOURCE_EMC 0x19c | ||
66 | #define PERIPH_CLK_SOURCE_OSC 0x1fc | ||
67 | #define PERIPH_CLK_SOURCE_NUM \ | ||
68 | ((PERIPH_CLK_SOURCE_OSC - PERIPH_CLK_SOURCE_I2S1) / 4) | ||
69 | |||
70 | #define PERIPH_CLK_SOURCE_MASK (3<<30) | ||
71 | #define PERIPH_CLK_SOURCE_SHIFT 30 | ||
72 | #define PERIPH_CLK_SOURCE_PWM_MASK (7<<28) | ||
73 | #define PERIPH_CLK_SOURCE_PWM_SHIFT 28 | ||
74 | #define PERIPH_CLK_SOURCE_ENABLE (1<<28) | ||
75 | #define PERIPH_CLK_SOURCE_DIVU71_MASK 0xFF | ||
76 | #define PERIPH_CLK_SOURCE_DIVU16_MASK 0xFFFF | ||
77 | #define PERIPH_CLK_SOURCE_DIV_SHIFT 0 | ||
78 | |||
79 | #define SDMMC_CLK_INT_FB_SEL (1 << 23) | ||
80 | #define SDMMC_CLK_INT_FB_DLY_SHIFT 16 | ||
81 | #define SDMMC_CLK_INT_FB_DLY_MASK (0xF << SDMMC_CLK_INT_FB_DLY_SHIFT) | ||
82 | |||
83 | #define PLL_BASE 0x0 | ||
84 | #define PLL_BASE_BYPASS (1<<31) | ||
85 | #define PLL_BASE_ENABLE (1<<30) | ||
86 | #define PLL_BASE_REF_ENABLE (1<<29) | ||
87 | #define PLL_BASE_OVERRIDE (1<<28) | ||
88 | #define PLL_BASE_DIVP_MASK (0x7<<20) | ||
89 | #define PLL_BASE_DIVP_SHIFT 20 | ||
90 | #define PLL_BASE_DIVN_MASK (0x3FF<<8) | ||
91 | #define PLL_BASE_DIVN_SHIFT 8 | ||
92 | #define PLL_BASE_DIVM_MASK (0x1F) | ||
93 | #define PLL_BASE_DIVM_SHIFT 0 | ||
94 | |||
95 | #define PLL_OUT_RATIO_MASK (0xFF<<8) | ||
96 | #define PLL_OUT_RATIO_SHIFT 8 | ||
97 | #define PLL_OUT_OVERRIDE (1<<2) | ||
98 | #define PLL_OUT_CLKEN (1<<1) | ||
99 | #define PLL_OUT_RESET_DISABLE (1<<0) | ||
100 | |||
101 | #define PLL_MISC(c) (((c)->flags & PLL_ALT_MISC_REG) ? 0x4 : 0xc) | ||
102 | |||
103 | #define PLL_MISC_DCCON_SHIFT 20 | ||
104 | #define PLL_MISC_CPCON_SHIFT 8 | ||
105 | #define PLL_MISC_CPCON_MASK (0xF<<PLL_MISC_CPCON_SHIFT) | ||
106 | #define PLL_MISC_LFCON_SHIFT 4 | ||
107 | #define PLL_MISC_LFCON_MASK (0xF<<PLL_MISC_LFCON_SHIFT) | ||
108 | #define PLL_MISC_VCOCON_SHIFT 0 | ||
109 | #define PLL_MISC_VCOCON_MASK (0xF<<PLL_MISC_VCOCON_SHIFT) | ||
110 | |||
111 | #define PLLU_BASE_POST_DIV (1<<20) | ||
112 | |||
113 | #define PLLD_MISC_CLKENABLE (1<<30) | ||
114 | #define PLLD_MISC_DIV_RST (1<<23) | ||
115 | #define PLLD_MISC_DCCON_SHIFT 12 | ||
116 | |||
117 | #define PLLE_MISC_READY (1 << 15) | ||
118 | |||
119 | #define PERIPH_CLK_TO_ENB_REG(c) ((c->u.periph.clk_num / 32) * 4) | ||
120 | #define PERIPH_CLK_TO_ENB_SET_REG(c) ((c->u.periph.clk_num / 32) * 8) | ||
121 | #define PERIPH_CLK_TO_ENB_BIT(c) (1 << (c->u.periph.clk_num % 32)) | ||
122 | |||
123 | #define SUPER_CLK_MUX 0x00 | ||
124 | #define SUPER_STATE_SHIFT 28 | ||
125 | #define SUPER_STATE_MASK (0xF << SUPER_STATE_SHIFT) | ||
126 | #define SUPER_STATE_STANDBY (0x0 << SUPER_STATE_SHIFT) | ||
127 | #define SUPER_STATE_IDLE (0x1 << SUPER_STATE_SHIFT) | ||
128 | #define SUPER_STATE_RUN (0x2 << SUPER_STATE_SHIFT) | ||
129 | #define SUPER_STATE_IRQ (0x3 << SUPER_STATE_SHIFT) | ||
130 | #define SUPER_STATE_FIQ (0x4 << SUPER_STATE_SHIFT) | ||
131 | #define SUPER_SOURCE_MASK 0xF | ||
132 | #define SUPER_FIQ_SOURCE_SHIFT 12 | ||
133 | #define SUPER_IRQ_SOURCE_SHIFT 8 | ||
134 | #define SUPER_RUN_SOURCE_SHIFT 4 | ||
135 | #define SUPER_IDLE_SOURCE_SHIFT 0 | ||
136 | |||
137 | #define SUPER_CLK_DIVIDER 0x04 | ||
138 | |||
139 | #define BUS_CLK_DISABLE (1<<3) | ||
140 | #define BUS_CLK_DIV_MASK 0x3 | ||
141 | |||
142 | #define PMC_CTRL 0x0 | ||
143 | #define PMC_CTRL_BLINK_ENB (1 << 7) | ||
144 | |||
145 | #define PMC_DPD_PADS_ORIDE 0x1c | ||
146 | #define PMC_DPD_PADS_ORIDE_BLINK_ENB (1 << 20) | ||
147 | |||
148 | #define PMC_BLINK_TIMER_DATA_ON_SHIFT 0 | ||
149 | #define PMC_BLINK_TIMER_DATA_ON_MASK 0x7fff | ||
150 | #define PMC_BLINK_TIMER_ENB (1 << 15) | ||
151 | #define PMC_BLINK_TIMER_DATA_OFF_SHIFT 16 | ||
152 | #define PMC_BLINK_TIMER_DATA_OFF_MASK 0xffff | ||
153 | |||
154 | static void __iomem *reg_clk_base = IO_ADDRESS(TEGRA_CLK_RESET_BASE); | ||
155 | static void __iomem *reg_pmc_base = IO_ADDRESS(TEGRA_PMC_BASE); | ||
156 | |||
157 | /* | ||
158 | * Some clocks share a register with other clocks. Any clock op that | ||
159 | * non-atomically modifies a register used by another clock must lock | ||
160 | * clock_register_lock first. | ||
161 | */ | ||
162 | static DEFINE_SPINLOCK(clock_register_lock); | ||
163 | |||
164 | /* | ||
165 | * Some peripheral clocks share an enable bit, so refcount the enable bits | ||
166 | * in registers CLK_ENABLE_L, CLK_ENABLE_H, and CLK_ENABLE_U | ||
167 | */ | ||
168 | static int tegra_periph_clk_enable_refcount[3 * 32]; | ||
169 | |||
170 | #define clk_writel(value, reg) \ | ||
171 | __raw_writel(value, reg_clk_base + (reg)) | ||
172 | #define clk_readl(reg) \ | ||
173 | __raw_readl(reg_clk_base + (reg)) | ||
174 | #define pmc_writel(value, reg) \ | ||
175 | __raw_writel(value, reg_pmc_base + (reg)) | ||
176 | #define pmc_readl(reg) \ | ||
177 | __raw_readl(reg_pmc_base + (reg)) | ||
178 | |||
179 | static unsigned long clk_measure_input_freq(void) | ||
180 | { | ||
181 | u32 clock_autodetect; | ||
182 | clk_writel(OSC_FREQ_DET_TRIG | 1, OSC_FREQ_DET); | ||
183 | do {} while (clk_readl(OSC_FREQ_DET_STATUS) & OSC_FREQ_DET_BUSY); | ||
184 | clock_autodetect = clk_readl(OSC_FREQ_DET_STATUS); | ||
185 | if (clock_autodetect >= 732 - 3 && clock_autodetect <= 732 + 3) { | ||
186 | return 12000000; | ||
187 | } else if (clock_autodetect >= 794 - 3 && clock_autodetect <= 794 + 3) { | ||
188 | return 13000000; | ||
189 | } else if (clock_autodetect >= 1172 - 3 && clock_autodetect <= 1172 + 3) { | ||
190 | return 19200000; | ||
191 | } else if (clock_autodetect >= 1587 - 3 && clock_autodetect <= 1587 + 3) { | ||
192 | return 26000000; | ||
193 | } else { | ||
194 | pr_err("%s: Unexpected clock autodetect value %d", __func__, clock_autodetect); | ||
195 | BUG(); | ||
196 | return 0; | ||
197 | } | ||
198 | } | ||
199 | |||
200 | static int clk_div71_get_divider(unsigned long parent_rate, unsigned long rate) | ||
201 | { | ||
202 | s64 divider_u71 = parent_rate * 2; | ||
203 | divider_u71 += rate - 1; | ||
204 | do_div(divider_u71, rate); | ||
205 | |||
206 | if (divider_u71 - 2 < 0) | ||
207 | return 0; | ||
208 | |||
209 | if (divider_u71 - 2 > 255) | ||
210 | return -EINVAL; | ||
211 | |||
212 | return divider_u71 - 2; | ||
213 | } | ||
214 | |||
215 | static int clk_div16_get_divider(unsigned long parent_rate, unsigned long rate) | ||
216 | { | ||
217 | s64 divider_u16; | ||
218 | |||
219 | divider_u16 = parent_rate; | ||
220 | divider_u16 += rate - 1; | ||
221 | do_div(divider_u16, rate); | ||
222 | |||
223 | if (divider_u16 - 1 < 0) | ||
224 | return 0; | ||
225 | |||
226 | if (divider_u16 - 1 > 255) | ||
227 | return -EINVAL; | ||
228 | |||
229 | return divider_u16 - 1; | ||
230 | } | ||
231 | |||
232 | /* clk_m functions */ | ||
233 | static unsigned long tegra2_clk_m_autodetect_rate(struct clk *c) | ||
234 | { | ||
235 | u32 auto_clock_control = clk_readl(OSC_CTRL) & ~OSC_CTRL_OSC_FREQ_MASK; | ||
236 | |||
237 | c->rate = clk_measure_input_freq(); | ||
238 | switch (c->rate) { | ||
239 | case 12000000: | ||
240 | auto_clock_control |= OSC_CTRL_OSC_FREQ_12MHZ; | ||
241 | break; | ||
242 | case 13000000: | ||
243 | auto_clock_control |= OSC_CTRL_OSC_FREQ_13MHZ; | ||
244 | break; | ||
245 | case 19200000: | ||
246 | auto_clock_control |= OSC_CTRL_OSC_FREQ_19_2MHZ; | ||
247 | break; | ||
248 | case 26000000: | ||
249 | auto_clock_control |= OSC_CTRL_OSC_FREQ_26MHZ; | ||
250 | break; | ||
251 | default: | ||
252 | pr_err("%s: Unexpected clock rate %ld", __func__, c->rate); | ||
253 | BUG(); | ||
254 | } | ||
255 | clk_writel(auto_clock_control, OSC_CTRL); | ||
256 | return c->rate; | ||
257 | } | ||
258 | |||
259 | static void tegra2_clk_m_init(struct clk *c) | ||
260 | { | ||
261 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
262 | tegra2_clk_m_autodetect_rate(c); | ||
263 | } | ||
264 | |||
265 | static int tegra2_clk_m_enable(struct clk *c) | ||
266 | { | ||
267 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
268 | return 0; | ||
269 | } | ||
270 | |||
271 | static void tegra2_clk_m_disable(struct clk *c) | ||
272 | { | ||
273 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
274 | BUG(); | ||
275 | } | ||
276 | |||
277 | static struct clk_ops tegra_clk_m_ops = { | ||
278 | .init = tegra2_clk_m_init, | ||
279 | .enable = tegra2_clk_m_enable, | ||
280 | .disable = tegra2_clk_m_disable, | ||
281 | }; | ||
282 | |||
283 | /* super clock functions */ | ||
284 | /* "super clocks" on tegra have two-stage muxes and a clock skipping | ||
285 | * super divider. We will ignore the clock skipping divider, since we | ||
286 | * can't lower the voltage when using the clock skip, but we can if we | ||
287 | * lower the PLL frequency. | ||
288 | */ | ||
289 | static void tegra2_super_clk_init(struct clk *c) | ||
290 | { | ||
291 | u32 val; | ||
292 | int source; | ||
293 | int shift; | ||
294 | const struct clk_mux_sel *sel; | ||
295 | val = clk_readl(c->reg + SUPER_CLK_MUX); | ||
296 | c->state = ON; | ||
297 | BUG_ON(((val & SUPER_STATE_MASK) != SUPER_STATE_RUN) && | ||
298 | ((val & SUPER_STATE_MASK) != SUPER_STATE_IDLE)); | ||
299 | shift = ((val & SUPER_STATE_MASK) == SUPER_STATE_IDLE) ? | ||
300 | SUPER_IDLE_SOURCE_SHIFT : SUPER_RUN_SOURCE_SHIFT; | ||
301 | source = (val >> shift) & SUPER_SOURCE_MASK; | ||
302 | for (sel = c->inputs; sel->input != NULL; sel++) { | ||
303 | if (sel->value == source) | ||
304 | break; | ||
305 | } | ||
306 | BUG_ON(sel->input == NULL); | ||
307 | c->parent = sel->input; | ||
308 | } | ||
309 | |||
310 | static int tegra2_super_clk_enable(struct clk *c) | ||
311 | { | ||
312 | clk_writel(0, c->reg + SUPER_CLK_DIVIDER); | ||
313 | return 0; | ||
314 | } | ||
315 | |||
316 | static void tegra2_super_clk_disable(struct clk *c) | ||
317 | { | ||
318 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
319 | |||
320 | /* oops - don't disable the CPU clock! */ | ||
321 | BUG(); | ||
322 | } | ||
323 | |||
324 | static int tegra2_super_clk_set_parent(struct clk *c, struct clk *p) | ||
325 | { | ||
326 | u32 val; | ||
327 | const struct clk_mux_sel *sel; | ||
328 | int shift; | ||
329 | |||
330 | val = clk_readl(c->reg + SUPER_CLK_MUX); | ||
331 | BUG_ON(((val & SUPER_STATE_MASK) != SUPER_STATE_RUN) && | ||
332 | ((val & SUPER_STATE_MASK) != SUPER_STATE_IDLE)); | ||
333 | shift = ((val & SUPER_STATE_MASK) == SUPER_STATE_IDLE) ? | ||
334 | SUPER_IDLE_SOURCE_SHIFT : SUPER_RUN_SOURCE_SHIFT; | ||
335 | for (sel = c->inputs; sel->input != NULL; sel++) { | ||
336 | if (sel->input == p) { | ||
337 | val &= ~(SUPER_SOURCE_MASK << shift); | ||
338 | val |= sel->value << shift; | ||
339 | |||
340 | if (c->refcnt) | ||
341 | clk_enable(p); | ||
342 | |||
343 | clk_writel(val, c->reg); | ||
344 | |||
345 | if (c->refcnt && c->parent) | ||
346 | clk_disable(c->parent); | ||
347 | |||
348 | clk_reparent(c, p); | ||
349 | return 0; | ||
350 | } | ||
351 | } | ||
352 | return -EINVAL; | ||
353 | } | ||
354 | |||
355 | /* | ||
356 | * Super clocks have "clock skippers" instead of dividers. Dividing using | ||
357 | * a clock skipper does not allow the voltage to be scaled down, so instead | ||
358 | * adjust the rate of the parent clock. This requires that the parent of a | ||
359 | * super clock have no other children, otherwise the rate will change | ||
360 | * underneath the other children. | ||
361 | */ | ||
362 | static int tegra2_super_clk_set_rate(struct clk *c, unsigned long rate) | ||
363 | { | ||
364 | return clk_set_rate(c->parent, rate); | ||
365 | } | ||
366 | |||
367 | static struct clk_ops tegra_super_ops = { | ||
368 | .init = tegra2_super_clk_init, | ||
369 | .enable = tegra2_super_clk_enable, | ||
370 | .disable = tegra2_super_clk_disable, | ||
371 | .set_parent = tegra2_super_clk_set_parent, | ||
372 | .set_rate = tegra2_super_clk_set_rate, | ||
373 | }; | ||
374 | |||
375 | /* virtual cpu clock functions */ | ||
376 | /* some clocks can not be stopped (cpu, memory bus) while the SoC is running. | ||
377 | To change the frequency of these clocks, the parent pll may need to be | ||
378 | reprogrammed, so the clock must be moved off the pll, the pll reprogrammed, | ||
379 | and then the clock moved back to the pll. To hide this sequence, a virtual | ||
380 | clock handles it. | ||
381 | */ | ||
382 | static void tegra2_cpu_clk_init(struct clk *c) | ||
383 | { | ||
384 | } | ||
385 | |||
386 | static int tegra2_cpu_clk_enable(struct clk *c) | ||
387 | { | ||
388 | return 0; | ||
389 | } | ||
390 | |||
391 | static void tegra2_cpu_clk_disable(struct clk *c) | ||
392 | { | ||
393 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
394 | |||
395 | /* oops - don't disable the CPU clock! */ | ||
396 | BUG(); | ||
397 | } | ||
398 | |||
399 | static int tegra2_cpu_clk_set_rate(struct clk *c, unsigned long rate) | ||
400 | { | ||
401 | int ret; | ||
402 | /* | ||
403 | * Take an extra reference to the main pll so it doesn't turn | ||
404 | * off when we move the cpu off of it | ||
405 | */ | ||
406 | clk_enable(c->u.cpu.main); | ||
407 | |||
408 | ret = clk_set_parent(c->parent, c->u.cpu.backup); | ||
409 | if (ret) { | ||
410 | pr_err("Failed to switch cpu to clock %s\n", c->u.cpu.backup->name); | ||
411 | goto out; | ||
412 | } | ||
413 | |||
414 | if (rate == clk_get_rate(c->u.cpu.backup)) | ||
415 | goto out; | ||
416 | |||
417 | ret = clk_set_rate(c->u.cpu.main, rate); | ||
418 | if (ret) { | ||
419 | pr_err("Failed to change cpu pll to %lu\n", rate); | ||
420 | goto out; | ||
421 | } | ||
422 | |||
423 | ret = clk_set_parent(c->parent, c->u.cpu.main); | ||
424 | if (ret) { | ||
425 | pr_err("Failed to switch cpu to clock %s\n", c->u.cpu.main->name); | ||
426 | goto out; | ||
427 | } | ||
428 | |||
429 | out: | ||
430 | clk_disable(c->u.cpu.main); | ||
431 | return ret; | ||
432 | } | ||
433 | |||
434 | static struct clk_ops tegra_cpu_ops = { | ||
435 | .init = tegra2_cpu_clk_init, | ||
436 | .enable = tegra2_cpu_clk_enable, | ||
437 | .disable = tegra2_cpu_clk_disable, | ||
438 | .set_rate = tegra2_cpu_clk_set_rate, | ||
439 | }; | ||
440 | |||
441 | /* virtual cop clock functions. Used to acquire the fake 'cop' clock to | ||
442 | * reset the COP block (i.e. AVP) */ | ||
443 | static void tegra2_cop_clk_reset(struct clk *c, bool assert) | ||
444 | { | ||
445 | unsigned long reg = assert ? RST_DEVICES_SET : RST_DEVICES_CLR; | ||
446 | |||
447 | pr_debug("%s %s\n", __func__, assert ? "assert" : "deassert"); | ||
448 | clk_writel(1 << 1, reg); | ||
449 | } | ||
450 | |||
451 | static struct clk_ops tegra_cop_ops = { | ||
452 | .reset = tegra2_cop_clk_reset, | ||
453 | }; | ||
454 | |||
455 | /* bus clock functions */ | ||
456 | static void tegra2_bus_clk_init(struct clk *c) | ||
457 | { | ||
458 | u32 val = clk_readl(c->reg); | ||
459 | c->state = ((val >> c->reg_shift) & BUS_CLK_DISABLE) ? OFF : ON; | ||
460 | c->div = ((val >> c->reg_shift) & BUS_CLK_DIV_MASK) + 1; | ||
461 | c->mul = 1; | ||
462 | } | ||
463 | |||
464 | static int tegra2_bus_clk_enable(struct clk *c) | ||
465 | { | ||
466 | u32 val; | ||
467 | unsigned long flags; | ||
468 | |||
469 | spin_lock_irqsave(&clock_register_lock, flags); | ||
470 | |||
471 | val = clk_readl(c->reg); | ||
472 | val &= ~(BUS_CLK_DISABLE << c->reg_shift); | ||
473 | clk_writel(val, c->reg); | ||
474 | |||
475 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
476 | |||
477 | return 0; | ||
478 | } | ||
479 | |||
480 | static void tegra2_bus_clk_disable(struct clk *c) | ||
481 | { | ||
482 | u32 val; | ||
483 | unsigned long flags; | ||
484 | |||
485 | spin_lock_irqsave(&clock_register_lock, flags); | ||
486 | |||
487 | val = clk_readl(c->reg); | ||
488 | val |= BUS_CLK_DISABLE << c->reg_shift; | ||
489 | clk_writel(val, c->reg); | ||
490 | |||
491 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
492 | } | ||
493 | |||
494 | static int tegra2_bus_clk_set_rate(struct clk *c, unsigned long rate) | ||
495 | { | ||
496 | u32 val; | ||
497 | unsigned long parent_rate = clk_get_rate(c->parent); | ||
498 | unsigned long flags; | ||
499 | int ret = -EINVAL; | ||
500 | int i; | ||
501 | |||
502 | spin_lock_irqsave(&clock_register_lock, flags); | ||
503 | |||
504 | val = clk_readl(c->reg); | ||
505 | for (i = 1; i <= 4; i++) { | ||
506 | if (rate == parent_rate / i) { | ||
507 | val &= ~(BUS_CLK_DIV_MASK << c->reg_shift); | ||
508 | val |= (i - 1) << c->reg_shift; | ||
509 | clk_writel(val, c->reg); | ||
510 | c->div = i; | ||
511 | c->mul = 1; | ||
512 | ret = 0; | ||
513 | break; | ||
514 | } | ||
515 | } | ||
516 | |||
517 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
518 | |||
519 | return ret; | ||
520 | } | ||
521 | |||
522 | static struct clk_ops tegra_bus_ops = { | ||
523 | .init = tegra2_bus_clk_init, | ||
524 | .enable = tegra2_bus_clk_enable, | ||
525 | .disable = tegra2_bus_clk_disable, | ||
526 | .set_rate = tegra2_bus_clk_set_rate, | ||
527 | }; | ||
528 | |||
529 | /* Blink output functions */ | ||
530 | |||
531 | static void tegra2_blink_clk_init(struct clk *c) | ||
532 | { | ||
533 | u32 val; | ||
534 | |||
535 | val = pmc_readl(PMC_CTRL); | ||
536 | c->state = (val & PMC_CTRL_BLINK_ENB) ? ON : OFF; | ||
537 | c->mul = 1; | ||
538 | val = pmc_readl(c->reg); | ||
539 | |||
540 | if (val & PMC_BLINK_TIMER_ENB) { | ||
541 | unsigned int on_off; | ||
542 | |||
543 | on_off = (val >> PMC_BLINK_TIMER_DATA_ON_SHIFT) & | ||
544 | PMC_BLINK_TIMER_DATA_ON_MASK; | ||
545 | val >>= PMC_BLINK_TIMER_DATA_OFF_SHIFT; | ||
546 | val &= PMC_BLINK_TIMER_DATA_OFF_MASK; | ||
547 | on_off += val; | ||
548 | /* each tick in the blink timer is 4 32KHz clocks */ | ||
549 | c->div = on_off * 4; | ||
550 | } else { | ||
551 | c->div = 1; | ||
552 | } | ||
553 | } | ||
554 | |||
555 | static int tegra2_blink_clk_enable(struct clk *c) | ||
556 | { | ||
557 | u32 val; | ||
558 | |||
559 | val = pmc_readl(PMC_DPD_PADS_ORIDE); | ||
560 | pmc_writel(val | PMC_DPD_PADS_ORIDE_BLINK_ENB, PMC_DPD_PADS_ORIDE); | ||
561 | |||
562 | val = pmc_readl(PMC_CTRL); | ||
563 | pmc_writel(val | PMC_CTRL_BLINK_ENB, PMC_CTRL); | ||
564 | |||
565 | return 0; | ||
566 | } | ||
567 | |||
568 | static void tegra2_blink_clk_disable(struct clk *c) | ||
569 | { | ||
570 | u32 val; | ||
571 | |||
572 | val = pmc_readl(PMC_CTRL); | ||
573 | pmc_writel(val & ~PMC_CTRL_BLINK_ENB, PMC_CTRL); | ||
574 | |||
575 | val = pmc_readl(PMC_DPD_PADS_ORIDE); | ||
576 | pmc_writel(val & ~PMC_DPD_PADS_ORIDE_BLINK_ENB, PMC_DPD_PADS_ORIDE); | ||
577 | } | ||
578 | |||
579 | static int tegra2_blink_clk_set_rate(struct clk *c, unsigned long rate) | ||
580 | { | ||
581 | unsigned long parent_rate = clk_get_rate(c->parent); | ||
582 | if (rate >= parent_rate) { | ||
583 | c->div = 1; | ||
584 | pmc_writel(0, c->reg); | ||
585 | } else { | ||
586 | unsigned int on_off; | ||
587 | u32 val; | ||
588 | |||
589 | on_off = DIV_ROUND_UP(parent_rate / 8, rate); | ||
590 | c->div = on_off * 8; | ||
591 | |||
592 | val = (on_off & PMC_BLINK_TIMER_DATA_ON_MASK) << | ||
593 | PMC_BLINK_TIMER_DATA_ON_SHIFT; | ||
594 | on_off &= PMC_BLINK_TIMER_DATA_OFF_MASK; | ||
595 | on_off <<= PMC_BLINK_TIMER_DATA_OFF_SHIFT; | ||
596 | val |= on_off; | ||
597 | val |= PMC_BLINK_TIMER_ENB; | ||
598 | pmc_writel(val, c->reg); | ||
599 | } | ||
600 | |||
601 | return 0; | ||
602 | } | ||
603 | |||
604 | static struct clk_ops tegra_blink_clk_ops = { | ||
605 | .init = &tegra2_blink_clk_init, | ||
606 | .enable = &tegra2_blink_clk_enable, | ||
607 | .disable = &tegra2_blink_clk_disable, | ||
608 | .set_rate = &tegra2_blink_clk_set_rate, | ||
609 | }; | ||
610 | |||
611 | /* PLL Functions */ | ||
612 | static int tegra2_pll_clk_wait_for_lock(struct clk *c) | ||
613 | { | ||
614 | udelay(c->u.pll.lock_delay); | ||
615 | |||
616 | return 0; | ||
617 | } | ||
618 | |||
619 | static void tegra2_pll_clk_init(struct clk *c) | ||
620 | { | ||
621 | u32 val = clk_readl(c->reg + PLL_BASE); | ||
622 | |||
623 | c->state = (val & PLL_BASE_ENABLE) ? ON : OFF; | ||
624 | |||
625 | if (c->flags & PLL_FIXED && !(val & PLL_BASE_OVERRIDE)) { | ||
626 | pr_warning("Clock %s has unknown fixed frequency\n", c->name); | ||
627 | c->mul = 1; | ||
628 | c->div = 1; | ||
629 | } else if (val & PLL_BASE_BYPASS) { | ||
630 | c->mul = 1; | ||
631 | c->div = 1; | ||
632 | } else { | ||
633 | c->mul = (val & PLL_BASE_DIVN_MASK) >> PLL_BASE_DIVN_SHIFT; | ||
634 | c->div = (val & PLL_BASE_DIVM_MASK) >> PLL_BASE_DIVM_SHIFT; | ||
635 | if (c->flags & PLLU) | ||
636 | c->div *= (val & PLLU_BASE_POST_DIV) ? 1 : 2; | ||
637 | else | ||
638 | c->div *= (val & PLL_BASE_DIVP_MASK) ? 2 : 1; | ||
639 | } | ||
640 | } | ||
641 | |||
642 | static int tegra2_pll_clk_enable(struct clk *c) | ||
643 | { | ||
644 | u32 val; | ||
645 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
646 | |||
647 | val = clk_readl(c->reg + PLL_BASE); | ||
648 | val &= ~PLL_BASE_BYPASS; | ||
649 | val |= PLL_BASE_ENABLE; | ||
650 | clk_writel(val, c->reg + PLL_BASE); | ||
651 | |||
652 | tegra2_pll_clk_wait_for_lock(c); | ||
653 | |||
654 | return 0; | ||
655 | } | ||
656 | |||
657 | static void tegra2_pll_clk_disable(struct clk *c) | ||
658 | { | ||
659 | u32 val; | ||
660 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
661 | |||
662 | val = clk_readl(c->reg); | ||
663 | val &= ~(PLL_BASE_BYPASS | PLL_BASE_ENABLE); | ||
664 | clk_writel(val, c->reg); | ||
665 | } | ||
666 | |||
667 | static int tegra2_pll_clk_set_rate(struct clk *c, unsigned long rate) | ||
668 | { | ||
669 | u32 val; | ||
670 | unsigned long input_rate; | ||
671 | const struct clk_pll_freq_table *sel; | ||
672 | |||
673 | pr_debug("%s: %s %lu\n", __func__, c->name, rate); | ||
674 | |||
675 | input_rate = clk_get_rate(c->parent); | ||
676 | for (sel = c->u.pll.freq_table; sel->input_rate != 0; sel++) { | ||
677 | if (sel->input_rate == input_rate && sel->output_rate == rate) { | ||
678 | c->mul = sel->n; | ||
679 | c->div = sel->m * sel->p; | ||
680 | |||
681 | val = clk_readl(c->reg + PLL_BASE); | ||
682 | if (c->flags & PLL_FIXED) | ||
683 | val |= PLL_BASE_OVERRIDE; | ||
684 | val &= ~(PLL_BASE_DIVP_MASK | PLL_BASE_DIVN_MASK | | ||
685 | PLL_BASE_DIVM_MASK); | ||
686 | val |= (sel->m << PLL_BASE_DIVM_SHIFT) | | ||
687 | (sel->n << PLL_BASE_DIVN_SHIFT); | ||
688 | BUG_ON(sel->p < 1 || sel->p > 2); | ||
689 | if (c->flags & PLLU) { | ||
690 | if (sel->p == 1) | ||
691 | val |= PLLU_BASE_POST_DIV; | ||
692 | } else { | ||
693 | if (sel->p == 2) | ||
694 | val |= 1 << PLL_BASE_DIVP_SHIFT; | ||
695 | } | ||
696 | clk_writel(val, c->reg + PLL_BASE); | ||
697 | |||
698 | if (c->flags & PLL_HAS_CPCON) { | ||
699 | val = clk_readl(c->reg + PLL_MISC(c)); | ||
700 | val &= ~PLL_MISC_CPCON_MASK; | ||
701 | val |= sel->cpcon << PLL_MISC_CPCON_SHIFT; | ||
702 | clk_writel(val, c->reg + PLL_MISC(c)); | ||
703 | } | ||
704 | |||
705 | if (c->state == ON) | ||
706 | tegra2_pll_clk_enable(c); | ||
707 | |||
708 | return 0; | ||
709 | } | ||
710 | } | ||
711 | return -EINVAL; | ||
712 | } | ||
713 | |||
714 | static struct clk_ops tegra_pll_ops = { | ||
715 | .init = tegra2_pll_clk_init, | ||
716 | .enable = tegra2_pll_clk_enable, | ||
717 | .disable = tegra2_pll_clk_disable, | ||
718 | .set_rate = tegra2_pll_clk_set_rate, | ||
719 | }; | ||
720 | |||
721 | static void tegra2_pllx_clk_init(struct clk *c) | ||
722 | { | ||
723 | tegra2_pll_clk_init(c); | ||
724 | |||
725 | if (tegra_sku_id == 7) | ||
726 | c->max_rate = 750000000; | ||
727 | } | ||
728 | |||
729 | static struct clk_ops tegra_pllx_ops = { | ||
730 | .init = tegra2_pllx_clk_init, | ||
731 | .enable = tegra2_pll_clk_enable, | ||
732 | .disable = tegra2_pll_clk_disable, | ||
733 | .set_rate = tegra2_pll_clk_set_rate, | ||
734 | }; | ||
735 | |||
736 | static int tegra2_plle_clk_enable(struct clk *c) | ||
737 | { | ||
738 | u32 val; | ||
739 | |||
740 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
741 | |||
742 | mdelay(1); | ||
743 | |||
744 | val = clk_readl(c->reg + PLL_BASE); | ||
745 | if (!(val & PLLE_MISC_READY)) | ||
746 | return -EBUSY; | ||
747 | |||
748 | val = clk_readl(c->reg + PLL_BASE); | ||
749 | val |= PLL_BASE_ENABLE | PLL_BASE_BYPASS; | ||
750 | clk_writel(val, c->reg + PLL_BASE); | ||
751 | |||
752 | return 0; | ||
753 | } | ||
754 | |||
755 | static struct clk_ops tegra_plle_ops = { | ||
756 | .init = tegra2_pll_clk_init, | ||
757 | .enable = tegra2_plle_clk_enable, | ||
758 | .set_rate = tegra2_pll_clk_set_rate, | ||
759 | }; | ||
760 | |||
761 | /* Clock divider ops */ | ||
762 | static void tegra2_pll_div_clk_init(struct clk *c) | ||
763 | { | ||
764 | u32 val = clk_readl(c->reg); | ||
765 | u32 divu71; | ||
766 | val >>= c->reg_shift; | ||
767 | c->state = (val & PLL_OUT_CLKEN) ? ON : OFF; | ||
768 | if (!(val & PLL_OUT_RESET_DISABLE)) | ||
769 | c->state = OFF; | ||
770 | |||
771 | if (c->flags & DIV_U71) { | ||
772 | divu71 = (val & PLL_OUT_RATIO_MASK) >> PLL_OUT_RATIO_SHIFT; | ||
773 | c->div = (divu71 + 2); | ||
774 | c->mul = 2; | ||
775 | } else if (c->flags & DIV_2) { | ||
776 | c->div = 2; | ||
777 | c->mul = 1; | ||
778 | } else { | ||
779 | c->div = 1; | ||
780 | c->mul = 1; | ||
781 | } | ||
782 | } | ||
783 | |||
784 | static int tegra2_pll_div_clk_enable(struct clk *c) | ||
785 | { | ||
786 | u32 val; | ||
787 | u32 new_val; | ||
788 | unsigned long flags; | ||
789 | |||
790 | pr_debug("%s: %s\n", __func__, c->name); | ||
791 | if (c->flags & DIV_U71) { | ||
792 | spin_lock_irqsave(&clock_register_lock, flags); | ||
793 | val = clk_readl(c->reg); | ||
794 | new_val = val >> c->reg_shift; | ||
795 | new_val &= 0xFFFF; | ||
796 | |||
797 | new_val |= PLL_OUT_CLKEN | PLL_OUT_RESET_DISABLE; | ||
798 | |||
799 | val &= ~(0xFFFF << c->reg_shift); | ||
800 | val |= new_val << c->reg_shift; | ||
801 | clk_writel(val, c->reg); | ||
802 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
803 | return 0; | ||
804 | } else if (c->flags & DIV_2) { | ||
805 | BUG_ON(!(c->flags & PLLD)); | ||
806 | spin_lock_irqsave(&clock_register_lock, flags); | ||
807 | val = clk_readl(c->reg); | ||
808 | val &= ~PLLD_MISC_DIV_RST; | ||
809 | clk_writel(val, c->reg); | ||
810 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
811 | return 0; | ||
812 | } | ||
813 | return -EINVAL; | ||
814 | } | ||
815 | |||
816 | static void tegra2_pll_div_clk_disable(struct clk *c) | ||
817 | { | ||
818 | u32 val; | ||
819 | u32 new_val; | ||
820 | unsigned long flags; | ||
821 | |||
822 | pr_debug("%s: %s\n", __func__, c->name); | ||
823 | if (c->flags & DIV_U71) { | ||
824 | spin_lock_irqsave(&clock_register_lock, flags); | ||
825 | val = clk_readl(c->reg); | ||
826 | new_val = val >> c->reg_shift; | ||
827 | new_val &= 0xFFFF; | ||
828 | |||
829 | new_val &= ~(PLL_OUT_CLKEN | PLL_OUT_RESET_DISABLE); | ||
830 | |||
831 | val &= ~(0xFFFF << c->reg_shift); | ||
832 | val |= new_val << c->reg_shift; | ||
833 | clk_writel(val, c->reg); | ||
834 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
835 | } else if (c->flags & DIV_2) { | ||
836 | BUG_ON(!(c->flags & PLLD)); | ||
837 | spin_lock_irqsave(&clock_register_lock, flags); | ||
838 | val = clk_readl(c->reg); | ||
839 | val |= PLLD_MISC_DIV_RST; | ||
840 | clk_writel(val, c->reg); | ||
841 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
842 | } | ||
843 | } | ||
844 | |||
845 | static int tegra2_pll_div_clk_set_rate(struct clk *c, unsigned long rate) | ||
846 | { | ||
847 | u32 val; | ||
848 | u32 new_val; | ||
849 | int divider_u71; | ||
850 | unsigned long parent_rate = clk_get_rate(c->parent); | ||
851 | unsigned long flags; | ||
852 | |||
853 | pr_debug("%s: %s %lu\n", __func__, c->name, rate); | ||
854 | if (c->flags & DIV_U71) { | ||
855 | divider_u71 = clk_div71_get_divider(parent_rate, rate); | ||
856 | if (divider_u71 >= 0) { | ||
857 | spin_lock_irqsave(&clock_register_lock, flags); | ||
858 | val = clk_readl(c->reg); | ||
859 | new_val = val >> c->reg_shift; | ||
860 | new_val &= 0xFFFF; | ||
861 | if (c->flags & DIV_U71_FIXED) | ||
862 | new_val |= PLL_OUT_OVERRIDE; | ||
863 | new_val &= ~PLL_OUT_RATIO_MASK; | ||
864 | new_val |= divider_u71 << PLL_OUT_RATIO_SHIFT; | ||
865 | |||
866 | val &= ~(0xFFFF << c->reg_shift); | ||
867 | val |= new_val << c->reg_shift; | ||
868 | clk_writel(val, c->reg); | ||
869 | c->div = divider_u71 + 2; | ||
870 | c->mul = 2; | ||
871 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
872 | return 0; | ||
873 | } | ||
874 | } else if (c->flags & DIV_2) { | ||
875 | if (parent_rate == rate * 2) | ||
876 | return 0; | ||
877 | } | ||
878 | return -EINVAL; | ||
879 | } | ||
880 | |||
881 | static long tegra2_pll_div_clk_round_rate(struct clk *c, unsigned long rate) | ||
882 | { | ||
883 | int divider; | ||
884 | unsigned long parent_rate = clk_get_rate(c->parent); | ||
885 | pr_debug("%s: %s %lu\n", __func__, c->name, rate); | ||
886 | |||
887 | if (c->flags & DIV_U71) { | ||
888 | divider = clk_div71_get_divider(parent_rate, rate); | ||
889 | if (divider < 0) | ||
890 | return divider; | ||
891 | return DIV_ROUND_UP(parent_rate * 2, divider + 2); | ||
892 | } else if (c->flags & DIV_2) { | ||
893 | return DIV_ROUND_UP(parent_rate, 2); | ||
894 | } | ||
895 | return -EINVAL; | ||
896 | } | ||
897 | |||
898 | static struct clk_ops tegra_pll_div_ops = { | ||
899 | .init = tegra2_pll_div_clk_init, | ||
900 | .enable = tegra2_pll_div_clk_enable, | ||
901 | .disable = tegra2_pll_div_clk_disable, | ||
902 | .set_rate = tegra2_pll_div_clk_set_rate, | ||
903 | .round_rate = tegra2_pll_div_clk_round_rate, | ||
904 | }; | ||
905 | |||
906 | /* Periph clk ops */ | ||
907 | |||
908 | static void tegra2_periph_clk_init(struct clk *c) | ||
909 | { | ||
910 | u32 val = clk_readl(c->reg); | ||
911 | const struct clk_mux_sel *mux = NULL; | ||
912 | const struct clk_mux_sel *sel; | ||
913 | u32 shift; | ||
914 | u32 mask; | ||
915 | |||
916 | if (c->flags & MUX_PWM) { | ||
917 | shift = PERIPH_CLK_SOURCE_PWM_SHIFT; | ||
918 | mask = PERIPH_CLK_SOURCE_PWM_MASK; | ||
919 | } else { | ||
920 | shift = PERIPH_CLK_SOURCE_SHIFT; | ||
921 | mask = PERIPH_CLK_SOURCE_MASK; | ||
922 | } | ||
923 | |||
924 | if (c->flags & MUX) { | ||
925 | for (sel = c->inputs; sel->input != NULL; sel++) { | ||
926 | if ((val & mask) >> shift == sel->value) | ||
927 | mux = sel; | ||
928 | } | ||
929 | BUG_ON(!mux); | ||
930 | |||
931 | c->parent = mux->input; | ||
932 | } else { | ||
933 | c->parent = c->inputs[0].input; | ||
934 | } | ||
935 | |||
936 | if (c->flags & DIV_U71) { | ||
937 | u32 divu71 = val & PERIPH_CLK_SOURCE_DIVU71_MASK; | ||
938 | c->div = divu71 + 2; | ||
939 | c->mul = 2; | ||
940 | } else if (c->flags & DIV_U16) { | ||
941 | u32 divu16 = val & PERIPH_CLK_SOURCE_DIVU16_MASK; | ||
942 | c->div = divu16 + 1; | ||
943 | c->mul = 1; | ||
944 | } else { | ||
945 | c->div = 1; | ||
946 | c->mul = 1; | ||
947 | } | ||
948 | |||
949 | c->state = ON; | ||
950 | |||
951 | if (!c->u.periph.clk_num) | ||
952 | return; | ||
953 | |||
954 | if (!(clk_readl(CLK_OUT_ENB + PERIPH_CLK_TO_ENB_REG(c)) & | ||
955 | PERIPH_CLK_TO_ENB_BIT(c))) | ||
956 | c->state = OFF; | ||
957 | |||
958 | if (!(c->flags & PERIPH_NO_RESET)) | ||
959 | if (clk_readl(RST_DEVICES + PERIPH_CLK_TO_ENB_REG(c)) & | ||
960 | PERIPH_CLK_TO_ENB_BIT(c)) | ||
961 | c->state = OFF; | ||
962 | } | ||
963 | |||
964 | static int tegra2_periph_clk_enable(struct clk *c) | ||
965 | { | ||
966 | u32 val; | ||
967 | unsigned long flags; | ||
968 | int refcount; | ||
969 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
970 | |||
971 | if (!c->u.periph.clk_num) | ||
972 | return 0; | ||
973 | |||
974 | spin_lock_irqsave(&clock_register_lock, flags); | ||
975 | |||
976 | refcount = tegra_periph_clk_enable_refcount[c->u.periph.clk_num]++; | ||
977 | |||
978 | if (refcount > 1) | ||
979 | goto out; | ||
980 | |||
981 | clk_writel(PERIPH_CLK_TO_ENB_BIT(c), | ||
982 | CLK_OUT_ENB_SET + PERIPH_CLK_TO_ENB_SET_REG(c)); | ||
983 | if (!(c->flags & PERIPH_NO_RESET) && !(c->flags & PERIPH_MANUAL_RESET)) | ||
984 | clk_writel(PERIPH_CLK_TO_ENB_BIT(c), | ||
985 | RST_DEVICES_CLR + PERIPH_CLK_TO_ENB_SET_REG(c)); | ||
986 | if (c->flags & PERIPH_EMC_ENB) { | ||
987 | /* The EMC peripheral clock has 2 extra enable bits */ | ||
988 | /* FIXME: Do they need to be disabled? */ | ||
989 | val = clk_readl(c->reg); | ||
990 | val |= 0x3 << 24; | ||
991 | clk_writel(val, c->reg); | ||
992 | } | ||
993 | |||
994 | out: | ||
995 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
996 | |||
997 | return 0; | ||
998 | } | ||
999 | |||
1000 | static void tegra2_periph_clk_disable(struct clk *c) | ||
1001 | { | ||
1002 | unsigned long flags; | ||
1003 | |||
1004 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
1005 | |||
1006 | if (!c->u.periph.clk_num) | ||
1007 | return; | ||
1008 | |||
1009 | spin_lock_irqsave(&clock_register_lock, flags); | ||
1010 | |||
1011 | if (c->refcnt) | ||
1012 | tegra_periph_clk_enable_refcount[c->u.periph.clk_num]--; | ||
1013 | |||
1014 | if (tegra_periph_clk_enable_refcount[c->u.periph.clk_num] == 0) | ||
1015 | clk_writel(PERIPH_CLK_TO_ENB_BIT(c), | ||
1016 | CLK_OUT_ENB_CLR + PERIPH_CLK_TO_ENB_SET_REG(c)); | ||
1017 | |||
1018 | spin_unlock_irqrestore(&clock_register_lock, flags); | ||
1019 | } | ||
1020 | |||
1021 | static void tegra2_periph_clk_reset(struct clk *c, bool assert) | ||
1022 | { | ||
1023 | unsigned long base = assert ? RST_DEVICES_SET : RST_DEVICES_CLR; | ||
1024 | |||
1025 | pr_debug("%s %s on clock %s\n", __func__, | ||
1026 | assert ? "assert" : "deassert", c->name); | ||
1027 | |||
1028 | BUG_ON(!c->u.periph.clk_num); | ||
1029 | |||
1030 | if (!(c->flags & PERIPH_NO_RESET)) | ||
1031 | clk_writel(PERIPH_CLK_TO_ENB_BIT(c), | ||
1032 | base + PERIPH_CLK_TO_ENB_SET_REG(c)); | ||
1033 | } | ||
1034 | |||
1035 | static int tegra2_periph_clk_set_parent(struct clk *c, struct clk *p) | ||
1036 | { | ||
1037 | u32 val; | ||
1038 | const struct clk_mux_sel *sel; | ||
1039 | u32 mask, shift; | ||
1040 | |||
1041 | pr_debug("%s: %s %s\n", __func__, c->name, p->name); | ||
1042 | |||
1043 | if (c->flags & MUX_PWM) { | ||
1044 | shift = PERIPH_CLK_SOURCE_PWM_SHIFT; | ||
1045 | mask = PERIPH_CLK_SOURCE_PWM_MASK; | ||
1046 | } else { | ||
1047 | shift = PERIPH_CLK_SOURCE_SHIFT; | ||
1048 | mask = PERIPH_CLK_SOURCE_MASK; | ||
1049 | } | ||
1050 | |||
1051 | for (sel = c->inputs; sel->input != NULL; sel++) { | ||
1052 | if (sel->input == p) { | ||
1053 | val = clk_readl(c->reg); | ||
1054 | val &= ~mask; | ||
1055 | val |= (sel->value) << shift; | ||
1056 | |||
1057 | if (c->refcnt) | ||
1058 | clk_enable(p); | ||
1059 | |||
1060 | clk_writel(val, c->reg); | ||
1061 | |||
1062 | if (c->refcnt && c->parent) | ||
1063 | clk_disable(c->parent); | ||
1064 | |||
1065 | clk_reparent(c, p); | ||
1066 | return 0; | ||
1067 | } | ||
1068 | } | ||
1069 | |||
1070 | return -EINVAL; | ||
1071 | } | ||
1072 | |||
1073 | static int tegra2_periph_clk_set_rate(struct clk *c, unsigned long rate) | ||
1074 | { | ||
1075 | u32 val; | ||
1076 | int divider; | ||
1077 | unsigned long parent_rate = clk_get_rate(c->parent); | ||
1078 | |||
1079 | if (c->flags & DIV_U71) { | ||
1080 | divider = clk_div71_get_divider(parent_rate, rate); | ||
1081 | if (divider >= 0) { | ||
1082 | val = clk_readl(c->reg); | ||
1083 | val &= ~PERIPH_CLK_SOURCE_DIVU71_MASK; | ||
1084 | val |= divider; | ||
1085 | clk_writel(val, c->reg); | ||
1086 | c->div = divider + 2; | ||
1087 | c->mul = 2; | ||
1088 | return 0; | ||
1089 | } | ||
1090 | } else if (c->flags & DIV_U16) { | ||
1091 | divider = clk_div16_get_divider(parent_rate, rate); | ||
1092 | if (divider >= 0) { | ||
1093 | val = clk_readl(c->reg); | ||
1094 | val &= ~PERIPH_CLK_SOURCE_DIVU16_MASK; | ||
1095 | val |= divider; | ||
1096 | clk_writel(val, c->reg); | ||
1097 | c->div = divider + 1; | ||
1098 | c->mul = 1; | ||
1099 | return 0; | ||
1100 | } | ||
1101 | } else if (parent_rate <= rate) { | ||
1102 | c->div = 1; | ||
1103 | c->mul = 1; | ||
1104 | return 0; | ||
1105 | } | ||
1106 | return -EINVAL; | ||
1107 | } | ||
1108 | |||
1109 | static long tegra2_periph_clk_round_rate(struct clk *c, | ||
1110 | unsigned long rate) | ||
1111 | { | ||
1112 | int divider; | ||
1113 | unsigned long parent_rate = clk_get_rate(c->parent); | ||
1114 | pr_debug("%s: %s %lu\n", __func__, c->name, rate); | ||
1115 | |||
1116 | if (c->flags & DIV_U71) { | ||
1117 | divider = clk_div71_get_divider(parent_rate, rate); | ||
1118 | if (divider < 0) | ||
1119 | return divider; | ||
1120 | |||
1121 | return DIV_ROUND_UP(parent_rate * 2, divider + 2); | ||
1122 | } else if (c->flags & DIV_U16) { | ||
1123 | divider = clk_div16_get_divider(parent_rate, rate); | ||
1124 | if (divider < 0) | ||
1125 | return divider; | ||
1126 | return DIV_ROUND_UP(parent_rate, divider + 1); | ||
1127 | } | ||
1128 | return -EINVAL; | ||
1129 | } | ||
1130 | |||
1131 | static struct clk_ops tegra_periph_clk_ops = { | ||
1132 | .init = &tegra2_periph_clk_init, | ||
1133 | .enable = &tegra2_periph_clk_enable, | ||
1134 | .disable = &tegra2_periph_clk_disable, | ||
1135 | .set_parent = &tegra2_periph_clk_set_parent, | ||
1136 | .set_rate = &tegra2_periph_clk_set_rate, | ||
1137 | .round_rate = &tegra2_periph_clk_round_rate, | ||
1138 | .reset = &tegra2_periph_clk_reset, | ||
1139 | }; | ||
1140 | |||
1141 | /* The SDMMC controllers have extra bits in the clock source register that | ||
1142 | * adjust the delay between the clock and data to compenstate for delays | ||
1143 | * on the PCB. */ | ||
1144 | void tegra2_sdmmc_tap_delay(struct clk *c, int delay) | ||
1145 | { | ||
1146 | u32 reg; | ||
1147 | unsigned long flags; | ||
1148 | |||
1149 | spin_lock_irqsave(&c->spinlock, flags); | ||
1150 | |||
1151 | delay = clamp(delay, 0, 15); | ||
1152 | reg = clk_readl(c->reg); | ||
1153 | reg &= ~SDMMC_CLK_INT_FB_DLY_MASK; | ||
1154 | reg |= SDMMC_CLK_INT_FB_SEL; | ||
1155 | reg |= delay << SDMMC_CLK_INT_FB_DLY_SHIFT; | ||
1156 | clk_writel(reg, c->reg); | ||
1157 | |||
1158 | spin_unlock_irqrestore(&c->spinlock, flags); | ||
1159 | } | ||
1160 | |||
1161 | /* External memory controller clock ops */ | ||
1162 | static void tegra2_emc_clk_init(struct clk *c) | ||
1163 | { | ||
1164 | tegra2_periph_clk_init(c); | ||
1165 | c->max_rate = clk_get_rate_locked(c); | ||
1166 | } | ||
1167 | |||
1168 | static long tegra2_emc_clk_round_rate(struct clk *c, unsigned long rate) | ||
1169 | { | ||
1170 | long emc_rate; | ||
1171 | long clk_rate; | ||
1172 | |||
1173 | /* | ||
1174 | * The slowest entry in the EMC clock table that is at least as | ||
1175 | * fast as rate. | ||
1176 | */ | ||
1177 | emc_rate = tegra_emc_round_rate(rate); | ||
1178 | if (emc_rate < 0) | ||
1179 | return c->max_rate; | ||
1180 | |||
1181 | /* | ||
1182 | * The fastest rate the PLL will generate that is at most the | ||
1183 | * requested rate. | ||
1184 | */ | ||
1185 | clk_rate = tegra2_periph_clk_round_rate(c, emc_rate); | ||
1186 | |||
1187 | /* | ||
1188 | * If this fails, and emc_rate > clk_rate, it's because the maximum | ||
1189 | * rate in the EMC tables is larger than the maximum rate of the EMC | ||
1190 | * clock. The EMC clock's max rate is the rate it was running when the | ||
1191 | * kernel booted. Such a mismatch is probably due to using the wrong | ||
1192 | * BCT, i.e. using a Tegra20 BCT with an EMC table written for Tegra25. | ||
1193 | */ | ||
1194 | WARN_ONCE(emc_rate != clk_rate, | ||
1195 | "emc_rate %ld != clk_rate %ld", | ||
1196 | emc_rate, clk_rate); | ||
1197 | |||
1198 | return emc_rate; | ||
1199 | } | ||
1200 | |||
1201 | static int tegra2_emc_clk_set_rate(struct clk *c, unsigned long rate) | ||
1202 | { | ||
1203 | int ret; | ||
1204 | /* | ||
1205 | * The Tegra2 memory controller has an interlock with the clock | ||
1206 | * block that allows memory shadowed registers to be updated, | ||
1207 | * and then transfer them to the main registers at the same | ||
1208 | * time as the clock update without glitches. | ||
1209 | */ | ||
1210 | ret = tegra_emc_set_rate(rate); | ||
1211 | if (ret < 0) | ||
1212 | return ret; | ||
1213 | |||
1214 | ret = tegra2_periph_clk_set_rate(c, rate); | ||
1215 | udelay(1); | ||
1216 | |||
1217 | return ret; | ||
1218 | } | ||
1219 | |||
1220 | static struct clk_ops tegra_emc_clk_ops = { | ||
1221 | .init = &tegra2_emc_clk_init, | ||
1222 | .enable = &tegra2_periph_clk_enable, | ||
1223 | .disable = &tegra2_periph_clk_disable, | ||
1224 | .set_parent = &tegra2_periph_clk_set_parent, | ||
1225 | .set_rate = &tegra2_emc_clk_set_rate, | ||
1226 | .round_rate = &tegra2_emc_clk_round_rate, | ||
1227 | .reset = &tegra2_periph_clk_reset, | ||
1228 | }; | ||
1229 | |||
1230 | /* Clock doubler ops */ | ||
1231 | static void tegra2_clk_double_init(struct clk *c) | ||
1232 | { | ||
1233 | c->mul = 2; | ||
1234 | c->div = 1; | ||
1235 | c->state = ON; | ||
1236 | |||
1237 | if (!c->u.periph.clk_num) | ||
1238 | return; | ||
1239 | |||
1240 | if (!(clk_readl(CLK_OUT_ENB + PERIPH_CLK_TO_ENB_REG(c)) & | ||
1241 | PERIPH_CLK_TO_ENB_BIT(c))) | ||
1242 | c->state = OFF; | ||
1243 | }; | ||
1244 | |||
1245 | static int tegra2_clk_double_set_rate(struct clk *c, unsigned long rate) | ||
1246 | { | ||
1247 | if (rate != 2 * clk_get_rate(c->parent)) | ||
1248 | return -EINVAL; | ||
1249 | c->mul = 2; | ||
1250 | c->div = 1; | ||
1251 | return 0; | ||
1252 | } | ||
1253 | |||
1254 | static struct clk_ops tegra_clk_double_ops = { | ||
1255 | .init = &tegra2_clk_double_init, | ||
1256 | .enable = &tegra2_periph_clk_enable, | ||
1257 | .disable = &tegra2_periph_clk_disable, | ||
1258 | .set_rate = &tegra2_clk_double_set_rate, | ||
1259 | }; | ||
1260 | |||
1261 | /* Audio sync clock ops */ | ||
1262 | static void tegra2_audio_sync_clk_init(struct clk *c) | ||
1263 | { | ||
1264 | int source; | ||
1265 | const struct clk_mux_sel *sel; | ||
1266 | u32 val = clk_readl(c->reg); | ||
1267 | c->state = (val & (1<<4)) ? OFF : ON; | ||
1268 | source = val & 0xf; | ||
1269 | for (sel = c->inputs; sel->input != NULL; sel++) | ||
1270 | if (sel->value == source) | ||
1271 | break; | ||
1272 | BUG_ON(sel->input == NULL); | ||
1273 | c->parent = sel->input; | ||
1274 | } | ||
1275 | |||
1276 | static int tegra2_audio_sync_clk_enable(struct clk *c) | ||
1277 | { | ||
1278 | clk_writel(0, c->reg); | ||
1279 | return 0; | ||
1280 | } | ||
1281 | |||
1282 | static void tegra2_audio_sync_clk_disable(struct clk *c) | ||
1283 | { | ||
1284 | clk_writel(1, c->reg); | ||
1285 | } | ||
1286 | |||
1287 | static int tegra2_audio_sync_clk_set_parent(struct clk *c, struct clk *p) | ||
1288 | { | ||
1289 | u32 val; | ||
1290 | const struct clk_mux_sel *sel; | ||
1291 | for (sel = c->inputs; sel->input != NULL; sel++) { | ||
1292 | if (sel->input == p) { | ||
1293 | val = clk_readl(c->reg); | ||
1294 | val &= ~0xf; | ||
1295 | val |= sel->value; | ||
1296 | |||
1297 | if (c->refcnt) | ||
1298 | clk_enable(p); | ||
1299 | |||
1300 | clk_writel(val, c->reg); | ||
1301 | |||
1302 | if (c->refcnt && c->parent) | ||
1303 | clk_disable(c->parent); | ||
1304 | |||
1305 | clk_reparent(c, p); | ||
1306 | return 0; | ||
1307 | } | ||
1308 | } | ||
1309 | |||
1310 | return -EINVAL; | ||
1311 | } | ||
1312 | |||
1313 | static struct clk_ops tegra_audio_sync_clk_ops = { | ||
1314 | .init = tegra2_audio_sync_clk_init, | ||
1315 | .enable = tegra2_audio_sync_clk_enable, | ||
1316 | .disable = tegra2_audio_sync_clk_disable, | ||
1317 | .set_parent = tegra2_audio_sync_clk_set_parent, | ||
1318 | }; | ||
1319 | |||
1320 | /* cdev1 and cdev2 (dap_mclk1 and dap_mclk2) ops */ | ||
1321 | |||
1322 | static void tegra2_cdev_clk_init(struct clk *c) | ||
1323 | { | ||
1324 | /* We could un-tristate the cdev1 or cdev2 pingroup here; this is | ||
1325 | * currently done in the pinmux code. */ | ||
1326 | c->state = ON; | ||
1327 | |||
1328 | BUG_ON(!c->u.periph.clk_num); | ||
1329 | |||
1330 | if (!(clk_readl(CLK_OUT_ENB + PERIPH_CLK_TO_ENB_REG(c)) & | ||
1331 | PERIPH_CLK_TO_ENB_BIT(c))) | ||
1332 | c->state = OFF; | ||
1333 | } | ||
1334 | |||
1335 | static int tegra2_cdev_clk_enable(struct clk *c) | ||
1336 | { | ||
1337 | BUG_ON(!c->u.periph.clk_num); | ||
1338 | |||
1339 | clk_writel(PERIPH_CLK_TO_ENB_BIT(c), | ||
1340 | CLK_OUT_ENB_SET + PERIPH_CLK_TO_ENB_SET_REG(c)); | ||
1341 | return 0; | ||
1342 | } | ||
1343 | |||
1344 | static void tegra2_cdev_clk_disable(struct clk *c) | ||
1345 | { | ||
1346 | BUG_ON(!c->u.periph.clk_num); | ||
1347 | |||
1348 | clk_writel(PERIPH_CLK_TO_ENB_BIT(c), | ||
1349 | CLK_OUT_ENB_CLR + PERIPH_CLK_TO_ENB_SET_REG(c)); | ||
1350 | } | ||
1351 | |||
1352 | static struct clk_ops tegra_cdev_clk_ops = { | ||
1353 | .init = &tegra2_cdev_clk_init, | ||
1354 | .enable = &tegra2_cdev_clk_enable, | ||
1355 | .disable = &tegra2_cdev_clk_disable, | ||
1356 | }; | ||
1357 | |||
1358 | /* shared bus ops */ | ||
1359 | /* | ||
1360 | * Some clocks may have multiple downstream users that need to request a | ||
1361 | * higher clock rate. Shared bus clocks provide a unique shared_bus_user | ||
1362 | * clock to each user. The frequency of the bus is set to the highest | ||
1363 | * enabled shared_bus_user clock, with a minimum value set by the | ||
1364 | * shared bus. | ||
1365 | */ | ||
1366 | static int tegra_clk_shared_bus_update(struct clk *bus) | ||
1367 | { | ||
1368 | struct clk *c; | ||
1369 | unsigned long rate = bus->min_rate; | ||
1370 | |||
1371 | list_for_each_entry(c, &bus->shared_bus_list, u.shared_bus_user.node) | ||
1372 | if (c->u.shared_bus_user.enabled) | ||
1373 | rate = max(c->u.shared_bus_user.rate, rate); | ||
1374 | |||
1375 | if (rate == clk_get_rate_locked(bus)) | ||
1376 | return 0; | ||
1377 | |||
1378 | return clk_set_rate_locked(bus, rate); | ||
1379 | }; | ||
1380 | |||
1381 | static void tegra_clk_shared_bus_init(struct clk *c) | ||
1382 | { | ||
1383 | unsigned long flags; | ||
1384 | |||
1385 | c->max_rate = c->parent->max_rate; | ||
1386 | c->u.shared_bus_user.rate = c->parent->max_rate; | ||
1387 | c->state = OFF; | ||
1388 | c->set = true; | ||
1389 | |||
1390 | spin_lock_irqsave(&c->parent->spinlock, flags); | ||
1391 | |||
1392 | list_add_tail(&c->u.shared_bus_user.node, | ||
1393 | &c->parent->shared_bus_list); | ||
1394 | |||
1395 | spin_unlock_irqrestore(&c->parent->spinlock, flags); | ||
1396 | } | ||
1397 | |||
1398 | static int tegra_clk_shared_bus_set_rate(struct clk *c, unsigned long rate) | ||
1399 | { | ||
1400 | unsigned long flags; | ||
1401 | int ret; | ||
1402 | long new_rate = rate; | ||
1403 | |||
1404 | new_rate = clk_round_rate(c->parent, new_rate); | ||
1405 | if (new_rate < 0) | ||
1406 | return new_rate; | ||
1407 | |||
1408 | spin_lock_irqsave(&c->parent->spinlock, flags); | ||
1409 | |||
1410 | c->u.shared_bus_user.rate = new_rate; | ||
1411 | ret = tegra_clk_shared_bus_update(c->parent); | ||
1412 | |||
1413 | spin_unlock_irqrestore(&c->parent->spinlock, flags); | ||
1414 | |||
1415 | return ret; | ||
1416 | } | ||
1417 | |||
1418 | static long tegra_clk_shared_bus_round_rate(struct clk *c, unsigned long rate) | ||
1419 | { | ||
1420 | return clk_round_rate(c->parent, rate); | ||
1421 | } | ||
1422 | |||
1423 | static int tegra_clk_shared_bus_enable(struct clk *c) | ||
1424 | { | ||
1425 | unsigned long flags; | ||
1426 | int ret; | ||
1427 | |||
1428 | spin_lock_irqsave(&c->parent->spinlock, flags); | ||
1429 | |||
1430 | c->u.shared_bus_user.enabled = true; | ||
1431 | ret = tegra_clk_shared_bus_update(c->parent); | ||
1432 | |||
1433 | spin_unlock_irqrestore(&c->parent->spinlock, flags); | ||
1434 | |||
1435 | return ret; | ||
1436 | } | ||
1437 | |||
1438 | static void tegra_clk_shared_bus_disable(struct clk *c) | ||
1439 | { | ||
1440 | unsigned long flags; | ||
1441 | int ret; | ||
1442 | |||
1443 | spin_lock_irqsave(&c->parent->spinlock, flags); | ||
1444 | |||
1445 | c->u.shared_bus_user.enabled = false; | ||
1446 | ret = tegra_clk_shared_bus_update(c->parent); | ||
1447 | WARN_ON_ONCE(ret); | ||
1448 | |||
1449 | spin_unlock_irqrestore(&c->parent->spinlock, flags); | ||
1450 | } | ||
1451 | |||
1452 | static struct clk_ops tegra_clk_shared_bus_ops = { | ||
1453 | .init = tegra_clk_shared_bus_init, | ||
1454 | .enable = tegra_clk_shared_bus_enable, | ||
1455 | .disable = tegra_clk_shared_bus_disable, | ||
1456 | .set_rate = tegra_clk_shared_bus_set_rate, | ||
1457 | .round_rate = tegra_clk_shared_bus_round_rate, | ||
1458 | }; | ||
1459 | |||
1460 | |||
1461 | /* Clock definitions */ | ||
1462 | static struct clk tegra_clk_32k = { | ||
1463 | .name = "clk_32k", | ||
1464 | .rate = 32768, | ||
1465 | .ops = NULL, | ||
1466 | .max_rate = 32768, | ||
1467 | }; | ||
1468 | |||
1469 | static struct clk_pll_freq_table tegra_pll_s_freq_table[] = { | ||
1470 | {32768, 12000000, 366, 1, 1, 0}, | ||
1471 | {32768, 13000000, 397, 1, 1, 0}, | ||
1472 | {32768, 19200000, 586, 1, 1, 0}, | ||
1473 | {32768, 26000000, 793, 1, 1, 0}, | ||
1474 | {0, 0, 0, 0, 0, 0}, | ||
1475 | }; | ||
1476 | |||
1477 | static struct clk tegra_pll_s = { | ||
1478 | .name = "pll_s", | ||
1479 | .flags = PLL_ALT_MISC_REG, | ||
1480 | .ops = &tegra_pll_ops, | ||
1481 | .parent = &tegra_clk_32k, | ||
1482 | .max_rate = 26000000, | ||
1483 | .reg = 0xf0, | ||
1484 | .u.pll = { | ||
1485 | .input_min = 32768, | ||
1486 | .input_max = 32768, | ||
1487 | .cf_min = 0, /* FIXME */ | ||
1488 | .cf_max = 0, /* FIXME */ | ||
1489 | .vco_min = 12000000, | ||
1490 | .vco_max = 26000000, | ||
1491 | .freq_table = tegra_pll_s_freq_table, | ||
1492 | .lock_delay = 300, | ||
1493 | }, | ||
1494 | }; | ||
1495 | |||
1496 | static struct clk_mux_sel tegra_clk_m_sel[] = { | ||
1497 | { .input = &tegra_clk_32k, .value = 0}, | ||
1498 | { .input = &tegra_pll_s, .value = 1}, | ||
1499 | { NULL , 0}, | ||
1500 | }; | ||
1501 | |||
1502 | static struct clk tegra_clk_m = { | ||
1503 | .name = "clk_m", | ||
1504 | .flags = ENABLE_ON_INIT, | ||
1505 | .ops = &tegra_clk_m_ops, | ||
1506 | .inputs = tegra_clk_m_sel, | ||
1507 | .reg = 0x1fc, | ||
1508 | .reg_shift = 28, | ||
1509 | .max_rate = 26000000, | ||
1510 | }; | ||
1511 | |||
1512 | static struct clk_pll_freq_table tegra_pll_c_freq_table[] = { | ||
1513 | { 12000000, 600000000, 600, 12, 1, 8 }, | ||
1514 | { 13000000, 600000000, 600, 13, 1, 8 }, | ||
1515 | { 19200000, 600000000, 500, 16, 1, 6 }, | ||
1516 | { 26000000, 600000000, 600, 26, 1, 8 }, | ||
1517 | { 0, 0, 0, 0, 0, 0 }, | ||
1518 | }; | ||
1519 | |||
1520 | static struct clk tegra_pll_c = { | ||
1521 | .name = "pll_c", | ||
1522 | .flags = PLL_HAS_CPCON, | ||
1523 | .ops = &tegra_pll_ops, | ||
1524 | .reg = 0x80, | ||
1525 | .parent = &tegra_clk_m, | ||
1526 | .max_rate = 600000000, | ||
1527 | .u.pll = { | ||
1528 | .input_min = 2000000, | ||
1529 | .input_max = 31000000, | ||
1530 | .cf_min = 1000000, | ||
1531 | .cf_max = 6000000, | ||
1532 | .vco_min = 20000000, | ||
1533 | .vco_max = 1400000000, | ||
1534 | .freq_table = tegra_pll_c_freq_table, | ||
1535 | .lock_delay = 300, | ||
1536 | }, | ||
1537 | }; | ||
1538 | |||
1539 | static struct clk tegra_pll_c_out1 = { | ||
1540 | .name = "pll_c_out1", | ||
1541 | .ops = &tegra_pll_div_ops, | ||
1542 | .flags = DIV_U71, | ||
1543 | .parent = &tegra_pll_c, | ||
1544 | .reg = 0x84, | ||
1545 | .reg_shift = 0, | ||
1546 | .max_rate = 600000000, | ||
1547 | }; | ||
1548 | |||
1549 | static struct clk_pll_freq_table tegra_pll_m_freq_table[] = { | ||
1550 | { 12000000, 666000000, 666, 12, 1, 8}, | ||
1551 | { 13000000, 666000000, 666, 13, 1, 8}, | ||
1552 | { 19200000, 666000000, 555, 16, 1, 8}, | ||
1553 | { 26000000, 666000000, 666, 26, 1, 8}, | ||
1554 | { 12000000, 600000000, 600, 12, 1, 8}, | ||
1555 | { 13000000, 600000000, 600, 13, 1, 8}, | ||
1556 | { 19200000, 600000000, 375, 12, 1, 6}, | ||
1557 | { 26000000, 600000000, 600, 26, 1, 8}, | ||
1558 | { 0, 0, 0, 0, 0, 0 }, | ||
1559 | }; | ||
1560 | |||
1561 | static struct clk tegra_pll_m = { | ||
1562 | .name = "pll_m", | ||
1563 | .flags = PLL_HAS_CPCON, | ||
1564 | .ops = &tegra_pll_ops, | ||
1565 | .reg = 0x90, | ||
1566 | .parent = &tegra_clk_m, | ||
1567 | .max_rate = 800000000, | ||
1568 | .u.pll = { | ||
1569 | .input_min = 2000000, | ||
1570 | .input_max = 31000000, | ||
1571 | .cf_min = 1000000, | ||
1572 | .cf_max = 6000000, | ||
1573 | .vco_min = 20000000, | ||
1574 | .vco_max = 1200000000, | ||
1575 | .freq_table = tegra_pll_m_freq_table, | ||
1576 | .lock_delay = 300, | ||
1577 | }, | ||
1578 | }; | ||
1579 | |||
1580 | static struct clk tegra_pll_m_out1 = { | ||
1581 | .name = "pll_m_out1", | ||
1582 | .ops = &tegra_pll_div_ops, | ||
1583 | .flags = DIV_U71, | ||
1584 | .parent = &tegra_pll_m, | ||
1585 | .reg = 0x94, | ||
1586 | .reg_shift = 0, | ||
1587 | .max_rate = 600000000, | ||
1588 | }; | ||
1589 | |||
1590 | static struct clk_pll_freq_table tegra_pll_p_freq_table[] = { | ||
1591 | { 12000000, 216000000, 432, 12, 2, 8}, | ||
1592 | { 13000000, 216000000, 432, 13, 2, 8}, | ||
1593 | { 19200000, 216000000, 90, 4, 2, 1}, | ||
1594 | { 26000000, 216000000, 432, 26, 2, 8}, | ||
1595 | { 12000000, 432000000, 432, 12, 1, 8}, | ||
1596 | { 13000000, 432000000, 432, 13, 1, 8}, | ||
1597 | { 19200000, 432000000, 90, 4, 1, 1}, | ||
1598 | { 26000000, 432000000, 432, 26, 1, 8}, | ||
1599 | { 0, 0, 0, 0, 0, 0 }, | ||
1600 | }; | ||
1601 | |||
1602 | static struct clk tegra_pll_p = { | ||
1603 | .name = "pll_p", | ||
1604 | .flags = ENABLE_ON_INIT | PLL_FIXED | PLL_HAS_CPCON, | ||
1605 | .ops = &tegra_pll_ops, | ||
1606 | .reg = 0xa0, | ||
1607 | .parent = &tegra_clk_m, | ||
1608 | .max_rate = 432000000, | ||
1609 | .u.pll = { | ||
1610 | .input_min = 2000000, | ||
1611 | .input_max = 31000000, | ||
1612 | .cf_min = 1000000, | ||
1613 | .cf_max = 6000000, | ||
1614 | .vco_min = 20000000, | ||
1615 | .vco_max = 1400000000, | ||
1616 | .freq_table = tegra_pll_p_freq_table, | ||
1617 | .lock_delay = 300, | ||
1618 | }, | ||
1619 | }; | ||
1620 | |||
1621 | static struct clk tegra_pll_p_out1 = { | ||
1622 | .name = "pll_p_out1", | ||
1623 | .ops = &tegra_pll_div_ops, | ||
1624 | .flags = ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, | ||
1625 | .parent = &tegra_pll_p, | ||
1626 | .reg = 0xa4, | ||
1627 | .reg_shift = 0, | ||
1628 | .max_rate = 432000000, | ||
1629 | }; | ||
1630 | |||
1631 | static struct clk tegra_pll_p_out2 = { | ||
1632 | .name = "pll_p_out2", | ||
1633 | .ops = &tegra_pll_div_ops, | ||
1634 | .flags = ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, | ||
1635 | .parent = &tegra_pll_p, | ||
1636 | .reg = 0xa4, | ||
1637 | .reg_shift = 16, | ||
1638 | .max_rate = 432000000, | ||
1639 | }; | ||
1640 | |||
1641 | static struct clk tegra_pll_p_out3 = { | ||
1642 | .name = "pll_p_out3", | ||
1643 | .ops = &tegra_pll_div_ops, | ||
1644 | .flags = ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, | ||
1645 | .parent = &tegra_pll_p, | ||
1646 | .reg = 0xa8, | ||
1647 | .reg_shift = 0, | ||
1648 | .max_rate = 432000000, | ||
1649 | }; | ||
1650 | |||
1651 | static struct clk tegra_pll_p_out4 = { | ||
1652 | .name = "pll_p_out4", | ||
1653 | .ops = &tegra_pll_div_ops, | ||
1654 | .flags = ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, | ||
1655 | .parent = &tegra_pll_p, | ||
1656 | .reg = 0xa8, | ||
1657 | .reg_shift = 16, | ||
1658 | .max_rate = 432000000, | ||
1659 | }; | ||
1660 | |||
1661 | static struct clk_pll_freq_table tegra_pll_a_freq_table[] = { | ||
1662 | { 28800000, 56448000, 49, 25, 1, 1}, | ||
1663 | { 28800000, 73728000, 64, 25, 1, 1}, | ||
1664 | { 28800000, 24000000, 5, 6, 1, 1}, | ||
1665 | { 0, 0, 0, 0, 0, 0 }, | ||
1666 | }; | ||
1667 | |||
1668 | static struct clk tegra_pll_a = { | ||
1669 | .name = "pll_a", | ||
1670 | .flags = PLL_HAS_CPCON, | ||
1671 | .ops = &tegra_pll_ops, | ||
1672 | .reg = 0xb0, | ||
1673 | .parent = &tegra_pll_p_out1, | ||
1674 | .max_rate = 73728000, | ||
1675 | .u.pll = { | ||
1676 | .input_min = 2000000, | ||
1677 | .input_max = 31000000, | ||
1678 | .cf_min = 1000000, | ||
1679 | .cf_max = 6000000, | ||
1680 | .vco_min = 20000000, | ||
1681 | .vco_max = 1400000000, | ||
1682 | .freq_table = tegra_pll_a_freq_table, | ||
1683 | .lock_delay = 300, | ||
1684 | }, | ||
1685 | }; | ||
1686 | |||
1687 | static struct clk tegra_pll_a_out0 = { | ||
1688 | .name = "pll_a_out0", | ||
1689 | .ops = &tegra_pll_div_ops, | ||
1690 | .flags = DIV_U71, | ||
1691 | .parent = &tegra_pll_a, | ||
1692 | .reg = 0xb4, | ||
1693 | .reg_shift = 0, | ||
1694 | .max_rate = 73728000, | ||
1695 | }; | ||
1696 | |||
1697 | static struct clk_pll_freq_table tegra_pll_d_freq_table[] = { | ||
1698 | { 12000000, 216000000, 216, 12, 1, 4}, | ||
1699 | { 13000000, 216000000, 216, 13, 1, 4}, | ||
1700 | { 19200000, 216000000, 135, 12, 1, 3}, | ||
1701 | { 26000000, 216000000, 216, 26, 1, 4}, | ||
1702 | |||
1703 | { 12000000, 594000000, 594, 12, 1, 8}, | ||
1704 | { 13000000, 594000000, 594, 13, 1, 8}, | ||
1705 | { 19200000, 594000000, 495, 16, 1, 8}, | ||
1706 | { 26000000, 594000000, 594, 26, 1, 8}, | ||
1707 | |||
1708 | { 12000000, 1000000000, 1000, 12, 1, 12}, | ||
1709 | { 13000000, 1000000000, 1000, 13, 1, 12}, | ||
1710 | { 19200000, 1000000000, 625, 12, 1, 8}, | ||
1711 | { 26000000, 1000000000, 1000, 26, 1, 12}, | ||
1712 | |||
1713 | { 0, 0, 0, 0, 0, 0 }, | ||
1714 | }; | ||
1715 | |||
1716 | static struct clk tegra_pll_d = { | ||
1717 | .name = "pll_d", | ||
1718 | .flags = PLL_HAS_CPCON | PLLD, | ||
1719 | .ops = &tegra_pll_ops, | ||
1720 | .reg = 0xd0, | ||
1721 | .parent = &tegra_clk_m, | ||
1722 | .max_rate = 1000000000, | ||
1723 | .u.pll = { | ||
1724 | .input_min = 2000000, | ||
1725 | .input_max = 40000000, | ||
1726 | .cf_min = 1000000, | ||
1727 | .cf_max = 6000000, | ||
1728 | .vco_min = 40000000, | ||
1729 | .vco_max = 1000000000, | ||
1730 | .freq_table = tegra_pll_d_freq_table, | ||
1731 | .lock_delay = 1000, | ||
1732 | }, | ||
1733 | }; | ||
1734 | |||
1735 | static struct clk tegra_pll_d_out0 = { | ||
1736 | .name = "pll_d_out0", | ||
1737 | .ops = &tegra_pll_div_ops, | ||
1738 | .flags = DIV_2 | PLLD, | ||
1739 | .parent = &tegra_pll_d, | ||
1740 | .max_rate = 500000000, | ||
1741 | }; | ||
1742 | |||
1743 | static struct clk_pll_freq_table tegra_pll_u_freq_table[] = { | ||
1744 | { 12000000, 480000000, 960, 12, 2, 0}, | ||
1745 | { 13000000, 480000000, 960, 13, 2, 0}, | ||
1746 | { 19200000, 480000000, 200, 4, 2, 0}, | ||
1747 | { 26000000, 480000000, 960, 26, 2, 0}, | ||
1748 | { 0, 0, 0, 0, 0, 0 }, | ||
1749 | }; | ||
1750 | |||
1751 | static struct clk tegra_pll_u = { | ||
1752 | .name = "pll_u", | ||
1753 | .flags = PLLU, | ||
1754 | .ops = &tegra_pll_ops, | ||
1755 | .reg = 0xc0, | ||
1756 | .parent = &tegra_clk_m, | ||
1757 | .max_rate = 480000000, | ||
1758 | .u.pll = { | ||
1759 | .input_min = 2000000, | ||
1760 | .input_max = 40000000, | ||
1761 | .cf_min = 1000000, | ||
1762 | .cf_max = 6000000, | ||
1763 | .vco_min = 480000000, | ||
1764 | .vco_max = 960000000, | ||
1765 | .freq_table = tegra_pll_u_freq_table, | ||
1766 | .lock_delay = 1000, | ||
1767 | }, | ||
1768 | }; | ||
1769 | |||
1770 | static struct clk_pll_freq_table tegra_pll_x_freq_table[] = { | ||
1771 | /* 1 GHz */ | ||
1772 | { 12000000, 1000000000, 1000, 12, 1, 12}, | ||
1773 | { 13000000, 1000000000, 1000, 13, 1, 12}, | ||
1774 | { 19200000, 1000000000, 625, 12, 1, 8}, | ||
1775 | { 26000000, 1000000000, 1000, 26, 1, 12}, | ||
1776 | |||
1777 | /* 912 MHz */ | ||
1778 | { 12000000, 912000000, 912, 12, 1, 12}, | ||
1779 | { 13000000, 912000000, 912, 13, 1, 12}, | ||
1780 | { 19200000, 912000000, 760, 16, 1, 8}, | ||
1781 | { 26000000, 912000000, 912, 26, 1, 12}, | ||
1782 | |||
1783 | /* 816 MHz */ | ||
1784 | { 12000000, 816000000, 816, 12, 1, 12}, | ||
1785 | { 13000000, 816000000, 816, 13, 1, 12}, | ||
1786 | { 19200000, 816000000, 680, 16, 1, 8}, | ||
1787 | { 26000000, 816000000, 816, 26, 1, 12}, | ||
1788 | |||
1789 | /* 760 MHz */ | ||
1790 | { 12000000, 760000000, 760, 12, 1, 12}, | ||
1791 | { 13000000, 760000000, 760, 13, 1, 12}, | ||
1792 | { 19200000, 760000000, 950, 24, 1, 8}, | ||
1793 | { 26000000, 760000000, 760, 26, 1, 12}, | ||
1794 | |||
1795 | /* 750 MHz */ | ||
1796 | { 12000000, 750000000, 750, 12, 1, 12}, | ||
1797 | { 13000000, 750000000, 750, 13, 1, 12}, | ||
1798 | { 19200000, 750000000, 625, 16, 1, 8}, | ||
1799 | { 26000000, 750000000, 750, 26, 1, 12}, | ||
1800 | |||
1801 | /* 608 MHz */ | ||
1802 | { 12000000, 608000000, 608, 12, 1, 12}, | ||
1803 | { 13000000, 608000000, 608, 13, 1, 12}, | ||
1804 | { 19200000, 608000000, 380, 12, 1, 8}, | ||
1805 | { 26000000, 608000000, 608, 26, 1, 12}, | ||
1806 | |||
1807 | /* 456 MHz */ | ||
1808 | { 12000000, 456000000, 456, 12, 1, 12}, | ||
1809 | { 13000000, 456000000, 456, 13, 1, 12}, | ||
1810 | { 19200000, 456000000, 380, 16, 1, 8}, | ||
1811 | { 26000000, 456000000, 456, 26, 1, 12}, | ||
1812 | |||
1813 | /* 312 MHz */ | ||
1814 | { 12000000, 312000000, 312, 12, 1, 12}, | ||
1815 | { 13000000, 312000000, 312, 13, 1, 12}, | ||
1816 | { 19200000, 312000000, 260, 16, 1, 8}, | ||
1817 | { 26000000, 312000000, 312, 26, 1, 12}, | ||
1818 | |||
1819 | { 0, 0, 0, 0, 0, 0 }, | ||
1820 | }; | ||
1821 | |||
1822 | static struct clk tegra_pll_x = { | ||
1823 | .name = "pll_x", | ||
1824 | .flags = PLL_HAS_CPCON | PLL_ALT_MISC_REG, | ||
1825 | .ops = &tegra_pllx_ops, | ||
1826 | .reg = 0xe0, | ||
1827 | .parent = &tegra_clk_m, | ||
1828 | .max_rate = 1000000000, | ||
1829 | .u.pll = { | ||
1830 | .input_min = 2000000, | ||
1831 | .input_max = 31000000, | ||
1832 | .cf_min = 1000000, | ||
1833 | .cf_max = 6000000, | ||
1834 | .vco_min = 20000000, | ||
1835 | .vco_max = 1200000000, | ||
1836 | .freq_table = tegra_pll_x_freq_table, | ||
1837 | .lock_delay = 300, | ||
1838 | }, | ||
1839 | }; | ||
1840 | |||
1841 | static struct clk_pll_freq_table tegra_pll_e_freq_table[] = { | ||
1842 | { 12000000, 100000000, 200, 24, 1, 0 }, | ||
1843 | { 0, 0, 0, 0, 0, 0 }, | ||
1844 | }; | ||
1845 | |||
1846 | static struct clk tegra_pll_e = { | ||
1847 | .name = "pll_e", | ||
1848 | .flags = PLL_ALT_MISC_REG, | ||
1849 | .ops = &tegra_plle_ops, | ||
1850 | .parent = &tegra_clk_m, | ||
1851 | .reg = 0xe8, | ||
1852 | .max_rate = 100000000, | ||
1853 | .u.pll = { | ||
1854 | .input_min = 12000000, | ||
1855 | .input_max = 12000000, | ||
1856 | .freq_table = tegra_pll_e_freq_table, | ||
1857 | }, | ||
1858 | }; | ||
1859 | |||
1860 | static struct clk tegra_clk_d = { | ||
1861 | .name = "clk_d", | ||
1862 | .flags = PERIPH_NO_RESET, | ||
1863 | .ops = &tegra_clk_double_ops, | ||
1864 | .reg = 0x34, | ||
1865 | .reg_shift = 12, | ||
1866 | .parent = &tegra_clk_m, | ||
1867 | .max_rate = 52000000, | ||
1868 | .u.periph = { | ||
1869 | .clk_num = 90, | ||
1870 | }, | ||
1871 | }; | ||
1872 | |||
1873 | /* dap_mclk1, belongs to the cdev1 pingroup. */ | ||
1874 | static struct clk tegra_clk_cdev1 = { | ||
1875 | .name = "cdev1", | ||
1876 | .ops = &tegra_cdev_clk_ops, | ||
1877 | .rate = 26000000, | ||
1878 | .max_rate = 26000000, | ||
1879 | .u.periph = { | ||
1880 | .clk_num = 94, | ||
1881 | }, | ||
1882 | }; | ||
1883 | |||
1884 | /* dap_mclk2, belongs to the cdev2 pingroup. */ | ||
1885 | static struct clk tegra_clk_cdev2 = { | ||
1886 | .name = "cdev2", | ||
1887 | .ops = &tegra_cdev_clk_ops, | ||
1888 | .rate = 26000000, | ||
1889 | .max_rate = 26000000, | ||
1890 | .u.periph = { | ||
1891 | .clk_num = 93, | ||
1892 | }, | ||
1893 | }; | ||
1894 | |||
1895 | /* initialized before peripheral clocks */ | ||
1896 | static struct clk_mux_sel mux_audio_sync_clk[8+1]; | ||
1897 | static const struct audio_sources { | ||
1898 | const char *name; | ||
1899 | int value; | ||
1900 | } mux_audio_sync_clk_sources[] = { | ||
1901 | { .name = "spdif_in", .value = 0 }, | ||
1902 | { .name = "i2s1", .value = 1 }, | ||
1903 | { .name = "i2s2", .value = 2 }, | ||
1904 | { .name = "pll_a_out0", .value = 4 }, | ||
1905 | #if 0 /* FIXME: not implemented */ | ||
1906 | { .name = "ac97", .value = 3 }, | ||
1907 | { .name = "ext_audio_clk2", .value = 5 }, | ||
1908 | { .name = "ext_audio_clk1", .value = 6 }, | ||
1909 | { .name = "ext_vimclk", .value = 7 }, | ||
1910 | #endif | ||
1911 | { NULL, 0 } | ||
1912 | }; | ||
1913 | |||
1914 | static struct clk tegra_clk_audio = { | ||
1915 | .name = "audio", | ||
1916 | .inputs = mux_audio_sync_clk, | ||
1917 | .reg = 0x38, | ||
1918 | .max_rate = 73728000, | ||
1919 | .ops = &tegra_audio_sync_clk_ops | ||
1920 | }; | ||
1921 | |||
1922 | static struct clk tegra_clk_audio_2x = { | ||
1923 | .name = "audio_2x", | ||
1924 | .flags = PERIPH_NO_RESET, | ||
1925 | .max_rate = 48000000, | ||
1926 | .ops = &tegra_clk_double_ops, | ||
1927 | .reg = 0x34, | ||
1928 | .reg_shift = 8, | ||
1929 | .parent = &tegra_clk_audio, | ||
1930 | .u.periph = { | ||
1931 | .clk_num = 89, | ||
1932 | }, | ||
1933 | }; | ||
1934 | |||
1935 | static struct clk_lookup tegra_audio_clk_lookups[] = { | ||
1936 | { .con_id = "audio", .clk = &tegra_clk_audio }, | ||
1937 | { .con_id = "audio_2x", .clk = &tegra_clk_audio_2x } | ||
1938 | }; | ||
1939 | |||
1940 | /* This is called after peripheral clocks are initialized, as the | ||
1941 | * audio_sync clock depends on some of the peripheral clocks. | ||
1942 | */ | ||
1943 | |||
1944 | static void init_audio_sync_clock_mux(void) | ||
1945 | { | ||
1946 | int i; | ||
1947 | struct clk_mux_sel *sel = mux_audio_sync_clk; | ||
1948 | const struct audio_sources *src = mux_audio_sync_clk_sources; | ||
1949 | struct clk_lookup *lookup; | ||
1950 | |||
1951 | for (i = 0; src->name; i++, sel++, src++) { | ||
1952 | sel->input = tegra_get_clock_by_name(src->name); | ||
1953 | if (!sel->input) | ||
1954 | pr_err("%s: could not find clk %s\n", __func__, | ||
1955 | src->name); | ||
1956 | sel->value = src->value; | ||
1957 | } | ||
1958 | |||
1959 | lookup = tegra_audio_clk_lookups; | ||
1960 | for (i = 0; i < ARRAY_SIZE(tegra_audio_clk_lookups); i++, lookup++) { | ||
1961 | clk_init(lookup->clk); | ||
1962 | clkdev_add(lookup); | ||
1963 | } | ||
1964 | } | ||
1965 | |||
1966 | static struct clk_mux_sel mux_cclk[] = { | ||
1967 | { .input = &tegra_clk_m, .value = 0}, | ||
1968 | { .input = &tegra_pll_c, .value = 1}, | ||
1969 | { .input = &tegra_clk_32k, .value = 2}, | ||
1970 | { .input = &tegra_pll_m, .value = 3}, | ||
1971 | { .input = &tegra_pll_p, .value = 4}, | ||
1972 | { .input = &tegra_pll_p_out4, .value = 5}, | ||
1973 | { .input = &tegra_pll_p_out3, .value = 6}, | ||
1974 | { .input = &tegra_clk_d, .value = 7}, | ||
1975 | { .input = &tegra_pll_x, .value = 8}, | ||
1976 | { NULL, 0}, | ||
1977 | }; | ||
1978 | |||
1979 | static struct clk_mux_sel mux_sclk[] = { | ||
1980 | { .input = &tegra_clk_m, .value = 0}, | ||
1981 | { .input = &tegra_pll_c_out1, .value = 1}, | ||
1982 | { .input = &tegra_pll_p_out4, .value = 2}, | ||
1983 | { .input = &tegra_pll_p_out3, .value = 3}, | ||
1984 | { .input = &tegra_pll_p_out2, .value = 4}, | ||
1985 | { .input = &tegra_clk_d, .value = 5}, | ||
1986 | { .input = &tegra_clk_32k, .value = 6}, | ||
1987 | { .input = &tegra_pll_m_out1, .value = 7}, | ||
1988 | { NULL, 0}, | ||
1989 | }; | ||
1990 | |||
1991 | static struct clk tegra_clk_cclk = { | ||
1992 | .name = "cclk", | ||
1993 | .inputs = mux_cclk, | ||
1994 | .reg = 0x20, | ||
1995 | .ops = &tegra_super_ops, | ||
1996 | .max_rate = 1000000000, | ||
1997 | }; | ||
1998 | |||
1999 | static struct clk tegra_clk_sclk = { | ||
2000 | .name = "sclk", | ||
2001 | .inputs = mux_sclk, | ||
2002 | .reg = 0x28, | ||
2003 | .ops = &tegra_super_ops, | ||
2004 | .max_rate = 240000000, | ||
2005 | .min_rate = 120000000, | ||
2006 | }; | ||
2007 | |||
2008 | static struct clk tegra_clk_virtual_cpu = { | ||
2009 | .name = "cpu", | ||
2010 | .parent = &tegra_clk_cclk, | ||
2011 | .ops = &tegra_cpu_ops, | ||
2012 | .max_rate = 1000000000, | ||
2013 | .u.cpu = { | ||
2014 | .main = &tegra_pll_x, | ||
2015 | .backup = &tegra_pll_p, | ||
2016 | }, | ||
2017 | }; | ||
2018 | |||
2019 | static struct clk tegra_clk_cop = { | ||
2020 | .name = "cop", | ||
2021 | .parent = &tegra_clk_sclk, | ||
2022 | .ops = &tegra_cop_ops, | ||
2023 | .max_rate = 240000000, | ||
2024 | }; | ||
2025 | |||
2026 | static struct clk tegra_clk_hclk = { | ||
2027 | .name = "hclk", | ||
2028 | .flags = DIV_BUS, | ||
2029 | .parent = &tegra_clk_sclk, | ||
2030 | .reg = 0x30, | ||
2031 | .reg_shift = 4, | ||
2032 | .ops = &tegra_bus_ops, | ||
2033 | .max_rate = 240000000, | ||
2034 | }; | ||
2035 | |||
2036 | static struct clk tegra_clk_pclk = { | ||
2037 | .name = "pclk", | ||
2038 | .flags = DIV_BUS, | ||
2039 | .parent = &tegra_clk_hclk, | ||
2040 | .reg = 0x30, | ||
2041 | .reg_shift = 0, | ||
2042 | .ops = &tegra_bus_ops, | ||
2043 | .max_rate = 120000000, | ||
2044 | }; | ||
2045 | |||
2046 | static struct clk tegra_clk_blink = { | ||
2047 | .name = "blink", | ||
2048 | .parent = &tegra_clk_32k, | ||
2049 | .reg = 0x40, | ||
2050 | .ops = &tegra_blink_clk_ops, | ||
2051 | .max_rate = 32768, | ||
2052 | }; | ||
2053 | |||
2054 | static struct clk_mux_sel mux_pllm_pllc_pllp_plla[] = { | ||
2055 | { .input = &tegra_pll_m, .value = 0}, | ||
2056 | { .input = &tegra_pll_c, .value = 1}, | ||
2057 | { .input = &tegra_pll_p, .value = 2}, | ||
2058 | { .input = &tegra_pll_a_out0, .value = 3}, | ||
2059 | { NULL, 0}, | ||
2060 | }; | ||
2061 | |||
2062 | static struct clk_mux_sel mux_pllm_pllc_pllp_clkm[] = { | ||
2063 | { .input = &tegra_pll_m, .value = 0}, | ||
2064 | { .input = &tegra_pll_c, .value = 1}, | ||
2065 | { .input = &tegra_pll_p, .value = 2}, | ||
2066 | { .input = &tegra_clk_m, .value = 3}, | ||
2067 | { NULL, 0}, | ||
2068 | }; | ||
2069 | |||
2070 | static struct clk_mux_sel mux_pllp_pllc_pllm_clkm[] = { | ||
2071 | { .input = &tegra_pll_p, .value = 0}, | ||
2072 | { .input = &tegra_pll_c, .value = 1}, | ||
2073 | { .input = &tegra_pll_m, .value = 2}, | ||
2074 | { .input = &tegra_clk_m, .value = 3}, | ||
2075 | { NULL, 0}, | ||
2076 | }; | ||
2077 | |||
2078 | static struct clk_mux_sel mux_pllaout0_audio2x_pllp_clkm[] = { | ||
2079 | {.input = &tegra_pll_a_out0, .value = 0}, | ||
2080 | {.input = &tegra_clk_audio_2x, .value = 1}, | ||
2081 | {.input = &tegra_pll_p, .value = 2}, | ||
2082 | {.input = &tegra_clk_m, .value = 3}, | ||
2083 | { NULL, 0}, | ||
2084 | }; | ||
2085 | |||
2086 | static struct clk_mux_sel mux_pllp_plld_pllc_clkm[] = { | ||
2087 | {.input = &tegra_pll_p, .value = 0}, | ||
2088 | {.input = &tegra_pll_d_out0, .value = 1}, | ||
2089 | {.input = &tegra_pll_c, .value = 2}, | ||
2090 | {.input = &tegra_clk_m, .value = 3}, | ||
2091 | { NULL, 0}, | ||
2092 | }; | ||
2093 | |||
2094 | static struct clk_mux_sel mux_pllp_pllc_audio_clkm_clk32[] = { | ||
2095 | {.input = &tegra_pll_p, .value = 0}, | ||
2096 | {.input = &tegra_pll_c, .value = 1}, | ||
2097 | {.input = &tegra_clk_audio, .value = 2}, | ||
2098 | {.input = &tegra_clk_m, .value = 3}, | ||
2099 | {.input = &tegra_clk_32k, .value = 4}, | ||
2100 | { NULL, 0}, | ||
2101 | }; | ||
2102 | |||
2103 | static struct clk_mux_sel mux_pllp_pllc_pllm[] = { | ||
2104 | {.input = &tegra_pll_p, .value = 0}, | ||
2105 | {.input = &tegra_pll_c, .value = 1}, | ||
2106 | {.input = &tegra_pll_m, .value = 2}, | ||
2107 | { NULL, 0}, | ||
2108 | }; | ||
2109 | |||
2110 | static struct clk_mux_sel mux_clk_m[] = { | ||
2111 | { .input = &tegra_clk_m, .value = 0}, | ||
2112 | { NULL, 0}, | ||
2113 | }; | ||
2114 | |||
2115 | static struct clk_mux_sel mux_pllp_out3[] = { | ||
2116 | { .input = &tegra_pll_p_out3, .value = 0}, | ||
2117 | { NULL, 0}, | ||
2118 | }; | ||
2119 | |||
2120 | static struct clk_mux_sel mux_plld[] = { | ||
2121 | { .input = &tegra_pll_d, .value = 0}, | ||
2122 | { NULL, 0}, | ||
2123 | }; | ||
2124 | |||
2125 | static struct clk_mux_sel mux_clk_32k[] = { | ||
2126 | { .input = &tegra_clk_32k, .value = 0}, | ||
2127 | { NULL, 0}, | ||
2128 | }; | ||
2129 | |||
2130 | static struct clk_mux_sel mux_pclk[] = { | ||
2131 | { .input = &tegra_clk_pclk, .value = 0}, | ||
2132 | { NULL, 0}, | ||
2133 | }; | ||
2134 | |||
2135 | static struct clk tegra_clk_emc = { | ||
2136 | .name = "emc", | ||
2137 | .ops = &tegra_emc_clk_ops, | ||
2138 | .reg = 0x19c, | ||
2139 | .max_rate = 800000000, | ||
2140 | .inputs = mux_pllm_pllc_pllp_clkm, | ||
2141 | .flags = MUX | DIV_U71 | PERIPH_EMC_ENB, | ||
2142 | .u.periph = { | ||
2143 | .clk_num = 57, | ||
2144 | }, | ||
2145 | }; | ||
2146 | |||
2147 | #define PERIPH_CLK(_name, _dev, _con, _clk_num, _reg, _max, _inputs, _flags) \ | ||
2148 | { \ | ||
2149 | .name = _name, \ | ||
2150 | .lookup = { \ | ||
2151 | .dev_id = _dev, \ | ||
2152 | .con_id = _con, \ | ||
2153 | }, \ | ||
2154 | .ops = &tegra_periph_clk_ops, \ | ||
2155 | .reg = _reg, \ | ||
2156 | .inputs = _inputs, \ | ||
2157 | .flags = _flags, \ | ||
2158 | .max_rate = _max, \ | ||
2159 | .u.periph = { \ | ||
2160 | .clk_num = _clk_num, \ | ||
2161 | }, \ | ||
2162 | } | ||
2163 | |||
2164 | #define SHARED_CLK(_name, _dev, _con, _parent) \ | ||
2165 | { \ | ||
2166 | .name = _name, \ | ||
2167 | .lookup = { \ | ||
2168 | .dev_id = _dev, \ | ||
2169 | .con_id = _con, \ | ||
2170 | }, \ | ||
2171 | .ops = &tegra_clk_shared_bus_ops, \ | ||
2172 | .parent = _parent, \ | ||
2173 | } | ||
2174 | |||
2175 | static struct clk tegra_list_clks[] = { | ||
2176 | PERIPH_CLK("apbdma", "tegra-apbdma", NULL, 34, 0, 108000000, mux_pclk, 0), | ||
2177 | PERIPH_CLK("rtc", "rtc-tegra", NULL, 4, 0, 32768, mux_clk_32k, PERIPH_NO_RESET), | ||
2178 | PERIPH_CLK("timer", "timer", NULL, 5, 0, 26000000, mux_clk_m, 0), | ||
2179 | PERIPH_CLK("i2s1", "tegra20-i2s.0", NULL, 11, 0x100, 26000000, mux_pllaout0_audio2x_pllp_clkm, MUX | DIV_U71), | ||
2180 | PERIPH_CLK("i2s2", "tegra20-i2s.1", NULL, 18, 0x104, 26000000, mux_pllaout0_audio2x_pllp_clkm, MUX | DIV_U71), | ||
2181 | PERIPH_CLK("spdif_out", "spdif_out", NULL, 10, 0x108, 100000000, mux_pllaout0_audio2x_pllp_clkm, MUX | DIV_U71), | ||
2182 | PERIPH_CLK("spdif_in", "spdif_in", NULL, 10, 0x10c, 100000000, mux_pllp_pllc_pllm, MUX | DIV_U71), | ||
2183 | PERIPH_CLK("pwm", "tegra-pwm", NULL, 17, 0x110, 432000000, mux_pllp_pllc_audio_clkm_clk32, MUX | DIV_U71 | MUX_PWM), | ||
2184 | PERIPH_CLK("spi", "spi", NULL, 43, 0x114, 40000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2185 | PERIPH_CLK("xio", "xio", NULL, 45, 0x120, 150000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2186 | PERIPH_CLK("twc", "twc", NULL, 16, 0x12c, 150000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2187 | PERIPH_CLK("sbc1", "spi_tegra.0", NULL, 41, 0x134, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2188 | PERIPH_CLK("sbc2", "spi_tegra.1", NULL, 44, 0x118, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2189 | PERIPH_CLK("sbc3", "spi_tegra.2", NULL, 46, 0x11c, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2190 | PERIPH_CLK("sbc4", "spi_tegra.3", NULL, 68, 0x1b4, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2191 | PERIPH_CLK("ide", "ide", NULL, 25, 0x144, 100000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* requires min voltage */ | ||
2192 | PERIPH_CLK("ndflash", "tegra_nand", NULL, 13, 0x160, 164000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* scales with voltage */ | ||
2193 | PERIPH_CLK("vfir", "vfir", NULL, 7, 0x168, 72000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2194 | PERIPH_CLK("sdmmc1", "sdhci-tegra.0", NULL, 14, 0x150, 52000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* scales with voltage */ | ||
2195 | PERIPH_CLK("sdmmc2", "sdhci-tegra.1", NULL, 9, 0x154, 52000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* scales with voltage */ | ||
2196 | PERIPH_CLK("sdmmc3", "sdhci-tegra.2", NULL, 69, 0x1bc, 52000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* scales with voltage */ | ||
2197 | PERIPH_CLK("sdmmc4", "sdhci-tegra.3", NULL, 15, 0x164, 52000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* scales with voltage */ | ||
2198 | PERIPH_CLK("vcp", "tegra-avp", "vcp", 29, 0, 250000000, mux_clk_m, 0), | ||
2199 | PERIPH_CLK("bsea", "tegra-avp", "bsea", 62, 0, 250000000, mux_clk_m, 0), | ||
2200 | PERIPH_CLK("bsev", "tegra-aes", "bsev", 63, 0, 250000000, mux_clk_m, 0), | ||
2201 | PERIPH_CLK("vde", "tegra-avp", "vde", 61, 0x1c8, 250000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* scales with voltage and process_id */ | ||
2202 | PERIPH_CLK("csite", "csite", NULL, 73, 0x1d4, 144000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* max rate ??? */ | ||
2203 | /* FIXME: what is la? */ | ||
2204 | PERIPH_CLK("la", "la", NULL, 76, 0x1f8, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2205 | PERIPH_CLK("owr", "tegra_w1", NULL, 71, 0x1cc, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2206 | PERIPH_CLK("nor", "nor", NULL, 42, 0x1d0, 92000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* requires min voltage */ | ||
2207 | PERIPH_CLK("mipi", "mipi", NULL, 50, 0x174, 60000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* scales with voltage */ | ||
2208 | PERIPH_CLK("i2c1", "tegra-i2c.0", NULL, 12, 0x124, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U16), | ||
2209 | PERIPH_CLK("i2c2", "tegra-i2c.1", NULL, 54, 0x198, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U16), | ||
2210 | PERIPH_CLK("i2c3", "tegra-i2c.2", NULL, 67, 0x1b8, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U16), | ||
2211 | PERIPH_CLK("dvc", "tegra-i2c.3", NULL, 47, 0x128, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U16), | ||
2212 | PERIPH_CLK("i2c1_i2c", "tegra-i2c.0", "i2c", 0, 0, 72000000, mux_pllp_out3, 0), | ||
2213 | PERIPH_CLK("i2c2_i2c", "tegra-i2c.1", "i2c", 0, 0, 72000000, mux_pllp_out3, 0), | ||
2214 | PERIPH_CLK("i2c3_i2c", "tegra-i2c.2", "i2c", 0, 0, 72000000, mux_pllp_out3, 0), | ||
2215 | PERIPH_CLK("dvc_i2c", "tegra-i2c.3", "i2c", 0, 0, 72000000, mux_pllp_out3, 0), | ||
2216 | PERIPH_CLK("uarta", "tegra-uart.0", NULL, 6, 0x178, 600000000, mux_pllp_pllc_pllm_clkm, MUX), | ||
2217 | PERIPH_CLK("uartb", "tegra-uart.1", NULL, 7, 0x17c, 600000000, mux_pllp_pllc_pllm_clkm, MUX), | ||
2218 | PERIPH_CLK("uartc", "tegra-uart.2", NULL, 55, 0x1a0, 600000000, mux_pllp_pllc_pllm_clkm, MUX), | ||
2219 | PERIPH_CLK("uartd", "tegra-uart.3", NULL, 65, 0x1c0, 600000000, mux_pllp_pllc_pllm_clkm, MUX), | ||
2220 | PERIPH_CLK("uarte", "tegra-uart.4", NULL, 66, 0x1c4, 600000000, mux_pllp_pllc_pllm_clkm, MUX), | ||
2221 | PERIPH_CLK("3d", "3d", NULL, 24, 0x158, 300000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | PERIPH_MANUAL_RESET), /* scales with voltage and process_id */ | ||
2222 | PERIPH_CLK("2d", "2d", NULL, 21, 0x15c, 300000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71), /* scales with voltage and process_id */ | ||
2223 | PERIPH_CLK("vi", "tegra_camera", "vi", 20, 0x148, 150000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71), /* scales with voltage and process_id */ | ||
2224 | PERIPH_CLK("vi_sensor", "tegra_camera", "vi_sensor", 20, 0x1a8, 150000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | PERIPH_NO_RESET), /* scales with voltage and process_id */ | ||
2225 | PERIPH_CLK("epp", "epp", NULL, 19, 0x16c, 300000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71), /* scales with voltage and process_id */ | ||
2226 | PERIPH_CLK("mpe", "mpe", NULL, 60, 0x170, 250000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71), /* scales with voltage and process_id */ | ||
2227 | PERIPH_CLK("host1x", "host1x", NULL, 28, 0x180, 166000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71), /* scales with voltage and process_id */ | ||
2228 | PERIPH_CLK("cve", "cve", NULL, 49, 0x140, 250000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71), /* requires min voltage */ | ||
2229 | PERIPH_CLK("tvo", "tvo", NULL, 49, 0x188, 250000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71), /* requires min voltage */ | ||
2230 | PERIPH_CLK("hdmi", "hdmi", NULL, 51, 0x18c, 600000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71), /* requires min voltage */ | ||
2231 | PERIPH_CLK("tvdac", "tvdac", NULL, 53, 0x194, 250000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71), /* requires min voltage */ | ||
2232 | PERIPH_CLK("disp1", "tegradc.0", NULL, 27, 0x138, 600000000, mux_pllp_plld_pllc_clkm, MUX), /* scales with voltage and process_id */ | ||
2233 | PERIPH_CLK("disp2", "tegradc.1", NULL, 26, 0x13c, 600000000, mux_pllp_plld_pllc_clkm, MUX), /* scales with voltage and process_id */ | ||
2234 | PERIPH_CLK("usbd", "fsl-tegra-udc", NULL, 22, 0, 480000000, mux_clk_m, 0), /* requires min voltage */ | ||
2235 | PERIPH_CLK("usb2", "tegra-ehci.1", NULL, 58, 0, 480000000, mux_clk_m, 0), /* requires min voltage */ | ||
2236 | PERIPH_CLK("usb3", "tegra-ehci.2", NULL, 59, 0, 480000000, mux_clk_m, 0), /* requires min voltage */ | ||
2237 | PERIPH_CLK("dsi", "dsi", NULL, 48, 0, 500000000, mux_plld, 0), /* scales with voltage */ | ||
2238 | PERIPH_CLK("csi", "tegra_camera", "csi", 52, 0, 72000000, mux_pllp_out3, 0), | ||
2239 | PERIPH_CLK("isp", "tegra_camera", "isp", 23, 0, 150000000, mux_clk_m, 0), /* same frequency as VI */ | ||
2240 | PERIPH_CLK("csus", "tegra_camera", "csus", 92, 0, 150000000, mux_clk_m, PERIPH_NO_RESET), | ||
2241 | PERIPH_CLK("pex", NULL, "pex", 70, 0, 26000000, mux_clk_m, PERIPH_MANUAL_RESET), | ||
2242 | PERIPH_CLK("afi", NULL, "afi", 72, 0, 26000000, mux_clk_m, PERIPH_MANUAL_RESET), | ||
2243 | PERIPH_CLK("pcie_xclk", NULL, "pcie_xclk", 74, 0, 26000000, mux_clk_m, PERIPH_MANUAL_RESET), | ||
2244 | |||
2245 | SHARED_CLK("avp.sclk", "tegra-avp", "sclk", &tegra_clk_sclk), | ||
2246 | SHARED_CLK("avp.emc", "tegra-avp", "emc", &tegra_clk_emc), | ||
2247 | SHARED_CLK("cpu.emc", "cpu", "emc", &tegra_clk_emc), | ||
2248 | SHARED_CLK("disp1.emc", "tegradc.0", "emc", &tegra_clk_emc), | ||
2249 | SHARED_CLK("disp2.emc", "tegradc.1", "emc", &tegra_clk_emc), | ||
2250 | SHARED_CLK("hdmi.emc", "hdmi", "emc", &tegra_clk_emc), | ||
2251 | SHARED_CLK("host.emc", "tegra_grhost", "emc", &tegra_clk_emc), | ||
2252 | SHARED_CLK("usbd.emc", "fsl-tegra-udc", "emc", &tegra_clk_emc), | ||
2253 | SHARED_CLK("usb1.emc", "tegra-ehci.0", "emc", &tegra_clk_emc), | ||
2254 | SHARED_CLK("usb2.emc", "tegra-ehci.1", "emc", &tegra_clk_emc), | ||
2255 | SHARED_CLK("usb3.emc", "tegra-ehci.2", "emc", &tegra_clk_emc), | ||
2256 | }; | ||
2257 | |||
2258 | #define CLK_DUPLICATE(_name, _dev, _con) \ | ||
2259 | { \ | ||
2260 | .name = _name, \ | ||
2261 | .lookup = { \ | ||
2262 | .dev_id = _dev, \ | ||
2263 | .con_id = _con, \ | ||
2264 | }, \ | ||
2265 | } | ||
2266 | |||
2267 | /* Some clocks may be used by different drivers depending on the board | ||
2268 | * configuration. List those here to register them twice in the clock lookup | ||
2269 | * table under two names. | ||
2270 | */ | ||
2271 | static struct clk_duplicate tegra_clk_duplicates[] = { | ||
2272 | CLK_DUPLICATE("uarta", "serial8250.0", NULL), | ||
2273 | CLK_DUPLICATE("uartb", "serial8250.1", NULL), | ||
2274 | CLK_DUPLICATE("uartc", "serial8250.2", NULL), | ||
2275 | CLK_DUPLICATE("uartd", "serial8250.3", NULL), | ||
2276 | CLK_DUPLICATE("uarte", "serial8250.4", NULL), | ||
2277 | CLK_DUPLICATE("usbd", "utmip-pad", NULL), | ||
2278 | CLK_DUPLICATE("usbd", "tegra-ehci.0", NULL), | ||
2279 | CLK_DUPLICATE("usbd", "tegra-otg", NULL), | ||
2280 | CLK_DUPLICATE("hdmi", "tegradc.0", "hdmi"), | ||
2281 | CLK_DUPLICATE("hdmi", "tegradc.1", "hdmi"), | ||
2282 | CLK_DUPLICATE("host1x", "tegra_grhost", "host1x"), | ||
2283 | CLK_DUPLICATE("2d", "tegra_grhost", "gr2d"), | ||
2284 | CLK_DUPLICATE("3d", "tegra_grhost", "gr3d"), | ||
2285 | CLK_DUPLICATE("epp", "tegra_grhost", "epp"), | ||
2286 | CLK_DUPLICATE("mpe", "tegra_grhost", "mpe"), | ||
2287 | CLK_DUPLICATE("cop", "tegra-avp", "cop"), | ||
2288 | CLK_DUPLICATE("vde", "tegra-aes", "vde"), | ||
2289 | }; | ||
2290 | |||
2291 | #define CLK(dev, con, ck) \ | ||
2292 | { \ | ||
2293 | .dev_id = dev, \ | ||
2294 | .con_id = con, \ | ||
2295 | .clk = ck, \ | ||
2296 | } | ||
2297 | |||
2298 | static struct clk *tegra_ptr_clks[] = { | ||
2299 | &tegra_clk_32k, | ||
2300 | &tegra_pll_s, | ||
2301 | &tegra_clk_m, | ||
2302 | &tegra_pll_m, | ||
2303 | &tegra_pll_m_out1, | ||
2304 | &tegra_pll_c, | ||
2305 | &tegra_pll_c_out1, | ||
2306 | &tegra_pll_p, | ||
2307 | &tegra_pll_p_out1, | ||
2308 | &tegra_pll_p_out2, | ||
2309 | &tegra_pll_p_out3, | ||
2310 | &tegra_pll_p_out4, | ||
2311 | &tegra_pll_a, | ||
2312 | &tegra_pll_a_out0, | ||
2313 | &tegra_pll_d, | ||
2314 | &tegra_pll_d_out0, | ||
2315 | &tegra_pll_u, | ||
2316 | &tegra_pll_x, | ||
2317 | &tegra_pll_e, | ||
2318 | &tegra_clk_cclk, | ||
2319 | &tegra_clk_sclk, | ||
2320 | &tegra_clk_hclk, | ||
2321 | &tegra_clk_pclk, | ||
2322 | &tegra_clk_d, | ||
2323 | &tegra_clk_cdev1, | ||
2324 | &tegra_clk_cdev2, | ||
2325 | &tegra_clk_virtual_cpu, | ||
2326 | &tegra_clk_blink, | ||
2327 | &tegra_clk_cop, | ||
2328 | &tegra_clk_emc, | ||
2329 | }; | ||
2330 | |||
2331 | static void tegra2_init_one_clock(struct clk *c) | ||
2332 | { | ||
2333 | clk_init(c); | ||
2334 | INIT_LIST_HEAD(&c->shared_bus_list); | ||
2335 | if (!c->lookup.dev_id && !c->lookup.con_id) | ||
2336 | c->lookup.con_id = c->name; | ||
2337 | c->lookup.clk = c; | ||
2338 | clkdev_add(&c->lookup); | ||
2339 | } | ||
2340 | |||
2341 | void __init tegra2_init_clocks(void) | ||
2342 | { | ||
2343 | int i; | ||
2344 | struct clk *c; | ||
2345 | |||
2346 | for (i = 0; i < ARRAY_SIZE(tegra_ptr_clks); i++) | ||
2347 | tegra2_init_one_clock(tegra_ptr_clks[i]); | ||
2348 | |||
2349 | for (i = 0; i < ARRAY_SIZE(tegra_list_clks); i++) | ||
2350 | tegra2_init_one_clock(&tegra_list_clks[i]); | ||
2351 | |||
2352 | for (i = 0; i < ARRAY_SIZE(tegra_clk_duplicates); i++) { | ||
2353 | c = tegra_get_clock_by_name(tegra_clk_duplicates[i].name); | ||
2354 | if (!c) { | ||
2355 | pr_err("%s: Unknown duplicate clock %s\n", __func__, | ||
2356 | tegra_clk_duplicates[i].name); | ||
2357 | continue; | ||
2358 | } | ||
2359 | |||
2360 | tegra_clk_duplicates[i].lookup.clk = c; | ||
2361 | clkdev_add(&tegra_clk_duplicates[i].lookup); | ||
2362 | } | ||
2363 | |||
2364 | init_audio_sync_clock_mux(); | ||
2365 | } | ||
2366 | |||
2367 | #ifdef CONFIG_PM | ||
2368 | static u32 clk_rst_suspend[RST_DEVICES_NUM + CLK_OUT_ENB_NUM + | ||
2369 | PERIPH_CLK_SOURCE_NUM + 22]; | ||
2370 | |||
2371 | void tegra_clk_suspend(void) | ||
2372 | { | ||
2373 | unsigned long off, i; | ||
2374 | u32 *ctx = clk_rst_suspend; | ||
2375 | |||
2376 | *ctx++ = clk_readl(OSC_CTRL) & OSC_CTRL_MASK; | ||
2377 | *ctx++ = clk_readl(tegra_pll_c.reg + PLL_BASE); | ||
2378 | *ctx++ = clk_readl(tegra_pll_c.reg + PLL_MISC(&tegra_pll_c)); | ||
2379 | *ctx++ = clk_readl(tegra_pll_a.reg + PLL_BASE); | ||
2380 | *ctx++ = clk_readl(tegra_pll_a.reg + PLL_MISC(&tegra_pll_a)); | ||
2381 | *ctx++ = clk_readl(tegra_pll_s.reg + PLL_BASE); | ||
2382 | *ctx++ = clk_readl(tegra_pll_s.reg + PLL_MISC(&tegra_pll_s)); | ||
2383 | *ctx++ = clk_readl(tegra_pll_d.reg + PLL_BASE); | ||
2384 | *ctx++ = clk_readl(tegra_pll_d.reg + PLL_MISC(&tegra_pll_d)); | ||
2385 | *ctx++ = clk_readl(tegra_pll_u.reg + PLL_BASE); | ||
2386 | *ctx++ = clk_readl(tegra_pll_u.reg + PLL_MISC(&tegra_pll_u)); | ||
2387 | |||
2388 | *ctx++ = clk_readl(tegra_pll_m_out1.reg); | ||
2389 | *ctx++ = clk_readl(tegra_pll_a_out0.reg); | ||
2390 | *ctx++ = clk_readl(tegra_pll_c_out1.reg); | ||
2391 | |||
2392 | *ctx++ = clk_readl(tegra_clk_cclk.reg); | ||
2393 | *ctx++ = clk_readl(tegra_clk_cclk.reg + SUPER_CLK_DIVIDER); | ||
2394 | |||
2395 | *ctx++ = clk_readl(tegra_clk_sclk.reg); | ||
2396 | *ctx++ = clk_readl(tegra_clk_sclk.reg + SUPER_CLK_DIVIDER); | ||
2397 | *ctx++ = clk_readl(tegra_clk_pclk.reg); | ||
2398 | |||
2399 | *ctx++ = clk_readl(tegra_clk_audio.reg); | ||
2400 | |||
2401 | for (off = PERIPH_CLK_SOURCE_I2S1; off <= PERIPH_CLK_SOURCE_OSC; | ||
2402 | off += 4) { | ||
2403 | if (off == PERIPH_CLK_SOURCE_EMC) | ||
2404 | continue; | ||
2405 | *ctx++ = clk_readl(off); | ||
2406 | } | ||
2407 | |||
2408 | off = RST_DEVICES; | ||
2409 | for (i = 0; i < RST_DEVICES_NUM; i++, off += 4) | ||
2410 | *ctx++ = clk_readl(off); | ||
2411 | |||
2412 | off = CLK_OUT_ENB; | ||
2413 | for (i = 0; i < CLK_OUT_ENB_NUM; i++, off += 4) | ||
2414 | *ctx++ = clk_readl(off); | ||
2415 | |||
2416 | *ctx++ = clk_readl(MISC_CLK_ENB); | ||
2417 | *ctx++ = clk_readl(CLK_MASK_ARM); | ||
2418 | |||
2419 | BUG_ON(ctx - clk_rst_suspend != ARRAY_SIZE(clk_rst_suspend)); | ||
2420 | } | ||
2421 | |||
2422 | void tegra_clk_resume(void) | ||
2423 | { | ||
2424 | unsigned long off, i; | ||
2425 | const u32 *ctx = clk_rst_suspend; | ||
2426 | u32 val; | ||
2427 | |||
2428 | val = clk_readl(OSC_CTRL) & ~OSC_CTRL_MASK; | ||
2429 | val |= *ctx++; | ||
2430 | clk_writel(val, OSC_CTRL); | ||
2431 | |||
2432 | clk_writel(*ctx++, tegra_pll_c.reg + PLL_BASE); | ||
2433 | clk_writel(*ctx++, tegra_pll_c.reg + PLL_MISC(&tegra_pll_c)); | ||
2434 | clk_writel(*ctx++, tegra_pll_a.reg + PLL_BASE); | ||
2435 | clk_writel(*ctx++, tegra_pll_a.reg + PLL_MISC(&tegra_pll_a)); | ||
2436 | clk_writel(*ctx++, tegra_pll_s.reg + PLL_BASE); | ||
2437 | clk_writel(*ctx++, tegra_pll_s.reg + PLL_MISC(&tegra_pll_s)); | ||
2438 | clk_writel(*ctx++, tegra_pll_d.reg + PLL_BASE); | ||
2439 | clk_writel(*ctx++, tegra_pll_d.reg + PLL_MISC(&tegra_pll_d)); | ||
2440 | clk_writel(*ctx++, tegra_pll_u.reg + PLL_BASE); | ||
2441 | clk_writel(*ctx++, tegra_pll_u.reg + PLL_MISC(&tegra_pll_u)); | ||
2442 | udelay(1000); | ||
2443 | |||
2444 | clk_writel(*ctx++, tegra_pll_m_out1.reg); | ||
2445 | clk_writel(*ctx++, tegra_pll_a_out0.reg); | ||
2446 | clk_writel(*ctx++, tegra_pll_c_out1.reg); | ||
2447 | |||
2448 | clk_writel(*ctx++, tegra_clk_cclk.reg); | ||
2449 | clk_writel(*ctx++, tegra_clk_cclk.reg + SUPER_CLK_DIVIDER); | ||
2450 | |||
2451 | clk_writel(*ctx++, tegra_clk_sclk.reg); | ||
2452 | clk_writel(*ctx++, tegra_clk_sclk.reg + SUPER_CLK_DIVIDER); | ||
2453 | clk_writel(*ctx++, tegra_clk_pclk.reg); | ||
2454 | |||
2455 | clk_writel(*ctx++, tegra_clk_audio.reg); | ||
2456 | |||
2457 | /* enable all clocks before configuring clock sources */ | ||
2458 | clk_writel(0xbffffff9ul, CLK_OUT_ENB); | ||
2459 | clk_writel(0xfefffff7ul, CLK_OUT_ENB + 4); | ||
2460 | clk_writel(0x77f01bfful, CLK_OUT_ENB + 8); | ||
2461 | wmb(); | ||
2462 | |||
2463 | for (off = PERIPH_CLK_SOURCE_I2S1; off <= PERIPH_CLK_SOURCE_OSC; | ||
2464 | off += 4) { | ||
2465 | if (off == PERIPH_CLK_SOURCE_EMC) | ||
2466 | continue; | ||
2467 | clk_writel(*ctx++, off); | ||
2468 | } | ||
2469 | wmb(); | ||
2470 | |||
2471 | off = RST_DEVICES; | ||
2472 | for (i = 0; i < RST_DEVICES_NUM; i++, off += 4) | ||
2473 | clk_writel(*ctx++, off); | ||
2474 | wmb(); | ||
2475 | |||
2476 | off = CLK_OUT_ENB; | ||
2477 | for (i = 0; i < CLK_OUT_ENB_NUM; i++, off += 4) | ||
2478 | clk_writel(*ctx++, off); | ||
2479 | wmb(); | ||
2480 | |||
2481 | clk_writel(*ctx++, MISC_CLK_ENB); | ||
2482 | clk_writel(*ctx++, CLK_MASK_ARM); | ||
2483 | } | ||
2484 | #endif | ||
diff --git a/arch/arm/mach-tegra/tegra30_clocks.c b/arch/arm/mach-tegra/tegra30_clocks.c index 6674f100e16f..63615dadfbb2 100644 --- a/arch/arm/mach-tegra/tegra30_clocks.c +++ b/arch/arm/mach-tegra/tegra30_clocks.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * arch/arm/mach-tegra/tegra30_clocks.c | 2 | * arch/arm/mach-tegra/tegra30_clocks.c |
3 | * | 3 | * |
4 | * Copyright (c) 2010-2011 NVIDIA CORPORATION. All rights reserved. | 4 | * Copyright (c) 2010-2012 NVIDIA CORPORATION. All rights reserved. |
5 | * | 5 | * |
6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
@@ -365,30 +365,32 @@ static void __iomem *misc_gp_hidrev_base = IO_ADDRESS(TEGRA_APB_MISC_BASE); | |||
365 | static int tegra_periph_clk_enable_refcount[CLK_OUT_ENB_NUM * 32]; | 365 | static int tegra_periph_clk_enable_refcount[CLK_OUT_ENB_NUM * 32]; |
366 | 366 | ||
367 | #define clk_writel(value, reg) \ | 367 | #define clk_writel(value, reg) \ |
368 | __raw_writel(value, (u32)reg_clk_base + (reg)) | 368 | __raw_writel(value, reg_clk_base + (reg)) |
369 | #define clk_readl(reg) \ | 369 | #define clk_readl(reg) \ |
370 | __raw_readl((u32)reg_clk_base + (reg)) | 370 | __raw_readl(reg_clk_base + (reg)) |
371 | #define pmc_writel(value, reg) \ | 371 | #define pmc_writel(value, reg) \ |
372 | __raw_writel(value, (u32)reg_pmc_base + (reg)) | 372 | __raw_writel(value, reg_pmc_base + (reg)) |
373 | #define pmc_readl(reg) \ | 373 | #define pmc_readl(reg) \ |
374 | __raw_readl((u32)reg_pmc_base + (reg)) | 374 | __raw_readl(reg_pmc_base + (reg)) |
375 | #define chipid_readl() \ | 375 | #define chipid_readl() \ |
376 | __raw_readl((u32)misc_gp_hidrev_base + MISC_GP_HIDREV) | 376 | __raw_readl(misc_gp_hidrev_base + MISC_GP_HIDREV) |
377 | 377 | ||
378 | #define clk_writel_delay(value, reg) \ | 378 | #define clk_writel_delay(value, reg) \ |
379 | do { \ | 379 | do { \ |
380 | __raw_writel((value), (u32)reg_clk_base + (reg)); \ | 380 | __raw_writel((value), reg_clk_base + (reg)); \ |
381 | udelay(2); \ | 381 | udelay(2); \ |
382 | } while (0) | 382 | } while (0) |
383 | 383 | ||
384 | 384 | static inline int clk_set_div(struct clk_tegra *c, u32 n) | |
385 | static inline int clk_set_div(struct clk *c, u32 n) | ||
386 | { | 385 | { |
387 | return clk_set_rate(c, (clk_get_rate(c->parent) + n-1) / n); | 386 | struct clk *clk = c->hw.clk; |
387 | |||
388 | return clk_set_rate(clk, | ||
389 | (__clk_get_rate(__clk_get_parent(clk)) + n - 1) / n); | ||
388 | } | 390 | } |
389 | 391 | ||
390 | static inline u32 periph_clk_to_reg( | 392 | static inline u32 periph_clk_to_reg( |
391 | struct clk *c, u32 reg_L, u32 reg_V, int offs) | 393 | struct clk_tegra *c, u32 reg_L, u32 reg_V, int offs) |
392 | { | 394 | { |
393 | u32 reg = c->u.periph.clk_num / 32; | 395 | u32 reg = c->u.periph.clk_num / 32; |
394 | BUG_ON(reg >= RST_DEVICES_NUM); | 396 | BUG_ON(reg >= RST_DEVICES_NUM); |
@@ -470,15 +472,32 @@ static int clk_div16_get_divider(unsigned long parent_rate, unsigned long rate) | |||
470 | return divider_u16 - 1; | 472 | return divider_u16 - 1; |
471 | } | 473 | } |
472 | 474 | ||
475 | static unsigned long tegra30_clk_fixed_recalc_rate(struct clk_hw *hw, | ||
476 | unsigned long parent_rate) | ||
477 | { | ||
478 | return to_clk_tegra(hw)->fixed_rate; | ||
479 | } | ||
480 | |||
481 | struct clk_ops tegra30_clk_32k_ops = { | ||
482 | .recalc_rate = tegra30_clk_fixed_recalc_rate, | ||
483 | }; | ||
484 | |||
473 | /* clk_m functions */ | 485 | /* clk_m functions */ |
474 | static unsigned long tegra30_clk_m_autodetect_rate(struct clk *c) | 486 | static unsigned long tegra30_clk_m_recalc_rate(struct clk_hw *hw, |
487 | unsigned long parent_rate) | ||
488 | { | ||
489 | if (!to_clk_tegra(hw)->fixed_rate) | ||
490 | to_clk_tegra(hw)->fixed_rate = clk_measure_input_freq(); | ||
491 | return to_clk_tegra(hw)->fixed_rate; | ||
492 | } | ||
493 | |||
494 | static void tegra30_clk_m_init(struct clk_hw *hw) | ||
475 | { | 495 | { |
476 | u32 osc_ctrl = clk_readl(OSC_CTRL); | 496 | u32 osc_ctrl = clk_readl(OSC_CTRL); |
477 | u32 auto_clock_control = osc_ctrl & ~OSC_CTRL_OSC_FREQ_MASK; | 497 | u32 auto_clock_control = osc_ctrl & ~OSC_CTRL_OSC_FREQ_MASK; |
478 | u32 pll_ref_div = osc_ctrl & OSC_CTRL_PLL_REF_DIV_MASK; | 498 | u32 pll_ref_div = osc_ctrl & OSC_CTRL_PLL_REF_DIV_MASK; |
479 | 499 | ||
480 | c->rate = clk_measure_input_freq(); | 500 | switch (to_clk_tegra(hw)->fixed_rate) { |
481 | switch (c->rate) { | ||
482 | case 12000000: | 501 | case 12000000: |
483 | auto_clock_control |= OSC_CTRL_OSC_FREQ_12MHZ; | 502 | auto_clock_control |= OSC_CTRL_OSC_FREQ_12MHZ; |
484 | BUG_ON(pll_ref_div != OSC_CTRL_PLL_REF_DIV_1); | 503 | BUG_ON(pll_ref_div != OSC_CTRL_PLL_REF_DIV_1); |
@@ -508,46 +527,44 @@ static unsigned long tegra30_clk_m_autodetect_rate(struct clk *c) | |||
508 | BUG_ON(pll_ref_div != OSC_CTRL_PLL_REF_DIV_4); | 527 | BUG_ON(pll_ref_div != OSC_CTRL_PLL_REF_DIV_4); |
509 | break; | 528 | break; |
510 | default: | 529 | default: |
511 | pr_err("%s: Unexpected clock rate %ld", __func__, c->rate); | 530 | pr_err("%s: Unexpected clock rate %ld", __func__, |
531 | to_clk_tegra(hw)->fixed_rate); | ||
512 | BUG(); | 532 | BUG(); |
513 | } | 533 | } |
514 | clk_writel(auto_clock_control, OSC_CTRL); | 534 | clk_writel(auto_clock_control, OSC_CTRL); |
515 | return c->rate; | ||
516 | } | 535 | } |
517 | 536 | ||
518 | static void tegra30_clk_m_init(struct clk *c) | 537 | struct clk_ops tegra30_clk_m_ops = { |
519 | { | 538 | .init = tegra30_clk_m_init, |
520 | pr_debug("%s on clock %s\n", __func__, c->name); | 539 | .recalc_rate = tegra30_clk_m_recalc_rate, |
521 | tegra30_clk_m_autodetect_rate(c); | 540 | }; |
522 | } | ||
523 | 541 | ||
524 | static int tegra30_clk_m_enable(struct clk *c) | 542 | static unsigned long tegra30_clk_m_div_recalc_rate(struct clk_hw *hw, |
543 | unsigned long parent_rate) | ||
525 | { | 544 | { |
526 | pr_debug("%s on clock %s\n", __func__, c->name); | 545 | struct clk_tegra *c = to_clk_tegra(hw); |
527 | return 0; | 546 | u64 rate = parent_rate; |
528 | } | ||
529 | 547 | ||
530 | static void tegra30_clk_m_disable(struct clk *c) | 548 | if (c->mul != 0 && c->div != 0) { |
531 | { | 549 | rate *= c->mul; |
532 | pr_debug("%s on clock %s\n", __func__, c->name); | 550 | rate += c->div - 1; /* round up */ |
533 | WARN(1, "Attempting to disable main SoC clock\n"); | 551 | do_div(rate, c->div); |
534 | } | 552 | } |
535 | 553 | ||
536 | static struct clk_ops tegra_clk_m_ops = { | 554 | return rate; |
537 | .init = tegra30_clk_m_init, | 555 | } |
538 | .enable = tegra30_clk_m_enable, | ||
539 | .disable = tegra30_clk_m_disable, | ||
540 | }; | ||
541 | 556 | ||
542 | static struct clk_ops tegra_clk_m_div_ops = { | 557 | struct clk_ops tegra_clk_m_div_ops = { |
543 | .enable = tegra30_clk_m_enable, | 558 | .recalc_rate = tegra30_clk_m_div_recalc_rate, |
544 | }; | 559 | }; |
545 | 560 | ||
546 | /* PLL reference divider functions */ | 561 | /* PLL reference divider functions */ |
547 | static void tegra30_pll_ref_init(struct clk *c) | 562 | static unsigned long tegra30_pll_ref_recalc_rate(struct clk_hw *hw, |
563 | unsigned long parent_rate) | ||
548 | { | 564 | { |
565 | struct clk_tegra *c = to_clk_tegra(hw); | ||
566 | unsigned long rate = parent_rate; | ||
549 | u32 pll_ref_div = clk_readl(OSC_CTRL) & OSC_CTRL_PLL_REF_DIV_MASK; | 567 | u32 pll_ref_div = clk_readl(OSC_CTRL) & OSC_CTRL_PLL_REF_DIV_MASK; |
550 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
551 | 568 | ||
552 | switch (pll_ref_div) { | 569 | switch (pll_ref_div) { |
553 | case OSC_CTRL_PLL_REF_DIV_1: | 570 | case OSC_CTRL_PLL_REF_DIV_1: |
@@ -564,13 +581,18 @@ static void tegra30_pll_ref_init(struct clk *c) | |||
564 | BUG(); | 581 | BUG(); |
565 | } | 582 | } |
566 | c->mul = 1; | 583 | c->mul = 1; |
567 | c->state = ON; | 584 | |
585 | if (c->mul != 0 && c->div != 0) { | ||
586 | rate *= c->mul; | ||
587 | rate += c->div - 1; /* round up */ | ||
588 | do_div(rate, c->div); | ||
589 | } | ||
590 | |||
591 | return rate; | ||
568 | } | 592 | } |
569 | 593 | ||
570 | static struct clk_ops tegra_pll_ref_ops = { | 594 | struct clk_ops tegra_pll_ref_ops = { |
571 | .init = tegra30_pll_ref_init, | 595 | .recalc_rate = tegra30_pll_ref_recalc_rate, |
572 | .enable = tegra30_clk_m_enable, | ||
573 | .disable = tegra30_clk_m_disable, | ||
574 | }; | 596 | }; |
575 | 597 | ||
576 | /* super clock functions */ | 598 | /* super clock functions */ |
@@ -581,56 +603,50 @@ static struct clk_ops tegra_pll_ref_ops = { | |||
581 | * only when its parent is a fixed rate PLL, since we can't change PLL rate | 603 | * only when its parent is a fixed rate PLL, since we can't change PLL rate |
582 | * in this case. | 604 | * in this case. |
583 | */ | 605 | */ |
584 | static void tegra30_super_clk_init(struct clk *c) | 606 | static void tegra30_super_clk_init(struct clk_hw *hw) |
585 | { | 607 | { |
586 | u32 val; | 608 | struct clk_tegra *c = to_clk_tegra(hw); |
587 | int source; | 609 | struct clk_tegra *p = |
588 | int shift; | 610 | to_clk_tegra(__clk_get_hw(__clk_get_parent(hw->clk))); |
589 | const struct clk_mux_sel *sel; | ||
590 | val = clk_readl(c->reg + SUPER_CLK_MUX); | ||
591 | c->state = ON; | ||
592 | BUG_ON(((val & SUPER_STATE_MASK) != SUPER_STATE_RUN) && | ||
593 | ((val & SUPER_STATE_MASK) != SUPER_STATE_IDLE)); | ||
594 | shift = ((val & SUPER_STATE_MASK) == SUPER_STATE_IDLE) ? | ||
595 | SUPER_IDLE_SOURCE_SHIFT : SUPER_RUN_SOURCE_SHIFT; | ||
596 | source = (val >> shift) & SUPER_SOURCE_MASK; | ||
597 | if (c->flags & DIV_2) | ||
598 | source |= val & SUPER_LP_DIV2_BYPASS; | ||
599 | for (sel = c->inputs; sel->input != NULL; sel++) { | ||
600 | if (sel->value == source) | ||
601 | break; | ||
602 | } | ||
603 | BUG_ON(sel->input == NULL); | ||
604 | c->parent = sel->input; | ||
605 | 611 | ||
612 | c->state = ON; | ||
606 | if (c->flags & DIV_U71) { | 613 | if (c->flags & DIV_U71) { |
607 | /* Init safe 7.1 divider value (does not affect PLLX path) */ | 614 | /* Init safe 7.1 divider value (does not affect PLLX path) */ |
608 | clk_writel(SUPER_CLOCK_DIV_U71_MIN << SUPER_CLOCK_DIV_U71_SHIFT, | 615 | clk_writel(SUPER_CLOCK_DIV_U71_MIN << SUPER_CLOCK_DIV_U71_SHIFT, |
609 | c->reg + SUPER_CLK_DIVIDER); | 616 | c->reg + SUPER_CLK_DIVIDER); |
610 | c->mul = 2; | 617 | c->mul = 2; |
611 | c->div = 2; | 618 | c->div = 2; |
612 | if (!(c->parent->flags & PLLX)) | 619 | if (!(p->flags & PLLX)) |
613 | c->div += SUPER_CLOCK_DIV_U71_MIN; | 620 | c->div += SUPER_CLOCK_DIV_U71_MIN; |
614 | } else | 621 | } else |
615 | clk_writel(0, c->reg + SUPER_CLK_DIVIDER); | 622 | clk_writel(0, c->reg + SUPER_CLK_DIVIDER); |
616 | } | 623 | } |
617 | 624 | ||
618 | static int tegra30_super_clk_enable(struct clk *c) | 625 | static u8 tegra30_super_clk_get_parent(struct clk_hw *hw) |
619 | { | 626 | { |
620 | return 0; | 627 | struct clk_tegra *c = to_clk_tegra(hw); |
621 | } | 628 | u32 val; |
629 | int source; | ||
630 | int shift; | ||
622 | 631 | ||
623 | static void tegra30_super_clk_disable(struct clk *c) | 632 | val = clk_readl(c->reg + SUPER_CLK_MUX); |
624 | { | 633 | BUG_ON(((val & SUPER_STATE_MASK) != SUPER_STATE_RUN) && |
625 | /* since tegra 3 has 2 CPU super clocks - low power lp-mode clock and | 634 | ((val & SUPER_STATE_MASK) != SUPER_STATE_IDLE)); |
626 | geared up g-mode super clock - mode switch may request to disable | 635 | shift = ((val & SUPER_STATE_MASK) == SUPER_STATE_IDLE) ? |
627 | either of them; accept request with no affect on h/w */ | 636 | SUPER_IDLE_SOURCE_SHIFT : SUPER_RUN_SOURCE_SHIFT; |
637 | source = (val >> shift) & SUPER_SOURCE_MASK; | ||
638 | if (c->flags & DIV_2) | ||
639 | source |= val & SUPER_LP_DIV2_BYPASS; | ||
640 | |||
641 | return source; | ||
628 | } | 642 | } |
629 | 643 | ||
630 | static int tegra30_super_clk_set_parent(struct clk *c, struct clk *p) | 644 | static int tegra30_super_clk_set_parent(struct clk_hw *hw, u8 index) |
631 | { | 645 | { |
646 | struct clk_tegra *c = to_clk_tegra(hw); | ||
647 | struct clk_tegra *p = | ||
648 | to_clk_tegra(__clk_get_hw(clk_get_parent(hw->clk))); | ||
632 | u32 val; | 649 | u32 val; |
633 | const struct clk_mux_sel *sel; | ||
634 | int shift; | 650 | int shift; |
635 | 651 | ||
636 | val = clk_readl(c->reg + SUPER_CLK_MUX); | 652 | val = clk_readl(c->reg + SUPER_CLK_MUX); |
@@ -638,48 +654,36 @@ static int tegra30_super_clk_set_parent(struct clk *c, struct clk *p) | |||
638 | ((val & SUPER_STATE_MASK) != SUPER_STATE_IDLE)); | 654 | ((val & SUPER_STATE_MASK) != SUPER_STATE_IDLE)); |
639 | shift = ((val & SUPER_STATE_MASK) == SUPER_STATE_IDLE) ? | 655 | shift = ((val & SUPER_STATE_MASK) == SUPER_STATE_IDLE) ? |
640 | SUPER_IDLE_SOURCE_SHIFT : SUPER_RUN_SOURCE_SHIFT; | 656 | SUPER_IDLE_SOURCE_SHIFT : SUPER_RUN_SOURCE_SHIFT; |
641 | for (sel = c->inputs; sel->input != NULL; sel++) { | ||
642 | if (sel->input == p) { | ||
643 | /* For LP mode super-clock switch between PLLX direct | ||
644 | and divided-by-2 outputs is allowed only when other | ||
645 | than PLLX clock source is current parent */ | ||
646 | if ((c->flags & DIV_2) && (p->flags & PLLX) && | ||
647 | ((sel->value ^ val) & SUPER_LP_DIV2_BYPASS)) { | ||
648 | if (c->parent->flags & PLLX) | ||
649 | return -EINVAL; | ||
650 | val ^= SUPER_LP_DIV2_BYPASS; | ||
651 | clk_writel_delay(val, c->reg); | ||
652 | } | ||
653 | val &= ~(SUPER_SOURCE_MASK << shift); | ||
654 | val |= (sel->value & SUPER_SOURCE_MASK) << shift; | ||
655 | |||
656 | /* 7.1 divider for CPU super-clock does not affect | ||
657 | PLLX path */ | ||
658 | if (c->flags & DIV_U71) { | ||
659 | u32 div = 0; | ||
660 | if (!(p->flags & PLLX)) { | ||
661 | div = clk_readl(c->reg + | ||
662 | SUPER_CLK_DIVIDER); | ||
663 | div &= SUPER_CLOCK_DIV_U71_MASK; | ||
664 | div >>= SUPER_CLOCK_DIV_U71_SHIFT; | ||
665 | } | ||
666 | c->div = div + 2; | ||
667 | c->mul = 2; | ||
668 | } | ||
669 | 657 | ||
670 | if (c->refcnt) | 658 | /* For LP mode super-clock switch between PLLX direct |
671 | clk_enable(p); | 659 | and divided-by-2 outputs is allowed only when other |
672 | 660 | than PLLX clock source is current parent */ | |
673 | clk_writel_delay(val, c->reg); | 661 | if ((c->flags & DIV_2) && (p->flags & PLLX) && |
674 | 662 | ((index ^ val) & SUPER_LP_DIV2_BYPASS)) { | |
675 | if (c->refcnt && c->parent) | 663 | if (p->flags & PLLX) |
676 | clk_disable(c->parent); | 664 | return -EINVAL; |
665 | val ^= SUPER_LP_DIV2_BYPASS; | ||
666 | clk_writel_delay(val, c->reg); | ||
667 | } | ||
668 | val &= ~(SUPER_SOURCE_MASK << shift); | ||
669 | val |= (index & SUPER_SOURCE_MASK) << shift; | ||
677 | 670 | ||
678 | clk_reparent(c, p); | 671 | /* 7.1 divider for CPU super-clock does not affect |
679 | return 0; | 672 | PLLX path */ |
673 | if (c->flags & DIV_U71) { | ||
674 | u32 div = 0; | ||
675 | if (!(p->flags & PLLX)) { | ||
676 | div = clk_readl(c->reg + | ||
677 | SUPER_CLK_DIVIDER); | ||
678 | div &= SUPER_CLOCK_DIV_U71_MASK; | ||
679 | div >>= SUPER_CLOCK_DIV_U71_SHIFT; | ||
680 | } | 680 | } |
681 | c->div = div + 2; | ||
682 | c->mul = 2; | ||
681 | } | 683 | } |
682 | return -EINVAL; | 684 | clk_writel_delay(val, c->reg); |
685 | |||
686 | return 0; | ||
683 | } | 687 | } |
684 | 688 | ||
685 | /* | 689 | /* |
@@ -691,10 +695,15 @@ static int tegra30_super_clk_set_parent(struct clk *c, struct clk *p) | |||
691 | * rate of this PLL can't be changed, and it has many other children. In | 695 | * rate of this PLL can't be changed, and it has many other children. In |
692 | * this case use 7.1 fractional divider to adjust the super clock rate. | 696 | * this case use 7.1 fractional divider to adjust the super clock rate. |
693 | */ | 697 | */ |
694 | static int tegra30_super_clk_set_rate(struct clk *c, unsigned long rate) | 698 | static int tegra30_super_clk_set_rate(struct clk_hw *hw, unsigned long rate, |
699 | unsigned long parent_rate) | ||
695 | { | 700 | { |
696 | if ((c->flags & DIV_U71) && (c->parent->flags & PLL_FIXED)) { | 701 | struct clk_tegra *c = to_clk_tegra(hw); |
697 | int div = clk_div71_get_divider(c->parent->u.pll.fixed_rate, | 702 | struct clk *parent = __clk_get_parent(hw->clk); |
703 | struct clk_tegra *cparent = to_clk_tegra(__clk_get_hw(parent)); | ||
704 | |||
705 | if ((c->flags & DIV_U71) && (cparent->flags & PLL_FIXED)) { | ||
706 | int div = clk_div71_get_divider(parent_rate, | ||
698 | rate, c->flags, ROUND_DIVIDER_DOWN); | 707 | rate, c->flags, ROUND_DIVIDER_DOWN); |
699 | div = max(div, SUPER_CLOCK_DIV_U71_MIN); | 708 | div = max(div, SUPER_CLOCK_DIV_U71_MIN); |
700 | 709 | ||
@@ -704,55 +713,86 @@ static int tegra30_super_clk_set_rate(struct clk *c, unsigned long rate) | |||
704 | c->mul = 2; | 713 | c->mul = 2; |
705 | return 0; | 714 | return 0; |
706 | } | 715 | } |
707 | return clk_set_rate(c->parent, rate); | 716 | return 0; |
717 | } | ||
718 | |||
719 | static unsigned long tegra30_super_clk_recalc_rate(struct clk_hw *hw, | ||
720 | unsigned long parent_rate) | ||
721 | { | ||
722 | struct clk_tegra *c = to_clk_tegra(hw); | ||
723 | u64 rate = parent_rate; | ||
724 | |||
725 | if (c->mul != 0 && c->div != 0) { | ||
726 | rate *= c->mul; | ||
727 | rate += c->div - 1; /* round up */ | ||
728 | do_div(rate, c->div); | ||
729 | } | ||
730 | |||
731 | return rate; | ||
732 | } | ||
733 | |||
734 | static long tegra30_super_clk_round_rate(struct clk_hw *hw, unsigned long rate, | ||
735 | unsigned long *prate) | ||
736 | { | ||
737 | struct clk_tegra *c = to_clk_tegra(hw); | ||
738 | struct clk *parent = __clk_get_parent(hw->clk); | ||
739 | struct clk_tegra *cparent = to_clk_tegra(__clk_get_hw(parent)); | ||
740 | int mul = 2; | ||
741 | int div; | ||
742 | |||
743 | if ((c->flags & DIV_U71) && (cparent->flags & PLL_FIXED)) { | ||
744 | div = clk_div71_get_divider(*prate, | ||
745 | rate, c->flags, ROUND_DIVIDER_DOWN); | ||
746 | div = max(div, SUPER_CLOCK_DIV_U71_MIN) + 2; | ||
747 | rate = *prate * mul; | ||
748 | rate += div - 1; /* round up */ | ||
749 | do_div(rate, c->div); | ||
750 | |||
751 | return rate; | ||
752 | } | ||
753 | return *prate; | ||
708 | } | 754 | } |
709 | 755 | ||
710 | static struct clk_ops tegra_super_ops = { | 756 | struct clk_ops tegra30_super_ops = { |
711 | .init = tegra30_super_clk_init, | 757 | .init = tegra30_super_clk_init, |
712 | .enable = tegra30_super_clk_enable, | 758 | .set_parent = tegra30_super_clk_set_parent, |
713 | .disable = tegra30_super_clk_disable, | 759 | .get_parent = tegra30_super_clk_get_parent, |
714 | .set_parent = tegra30_super_clk_set_parent, | 760 | .recalc_rate = tegra30_super_clk_recalc_rate, |
715 | .set_rate = tegra30_super_clk_set_rate, | 761 | .round_rate = tegra30_super_clk_round_rate, |
762 | .set_rate = tegra30_super_clk_set_rate, | ||
716 | }; | 763 | }; |
717 | 764 | ||
718 | static int tegra30_twd_clk_set_rate(struct clk *c, unsigned long rate) | 765 | static unsigned long tegra30_twd_clk_recalc_rate(struct clk_hw *hw, |
766 | unsigned long parent_rate) | ||
719 | { | 767 | { |
720 | /* The input value 'rate' is the clock rate of the CPU complex. */ | 768 | struct clk_tegra *c = to_clk_tegra(hw); |
721 | c->rate = (rate * c->mul) / c->div; | 769 | u64 rate = parent_rate; |
722 | return 0; | 770 | |
771 | if (c->mul != 0 && c->div != 0) { | ||
772 | rate *= c->mul; | ||
773 | rate += c->div - 1; /* round up */ | ||
774 | do_div(rate, c->div); | ||
775 | } | ||
776 | |||
777 | return rate; | ||
723 | } | 778 | } |
724 | 779 | ||
725 | static struct clk_ops tegra30_twd_ops = { | 780 | struct clk_ops tegra30_twd_ops = { |
726 | .set_rate = tegra30_twd_clk_set_rate, | 781 | .recalc_rate = tegra30_twd_clk_recalc_rate, |
727 | }; | 782 | }; |
728 | 783 | ||
729 | /* Blink output functions */ | 784 | /* Blink output functions */ |
730 | 785 | static int tegra30_blink_clk_is_enabled(struct clk_hw *hw) | |
731 | static void tegra30_blink_clk_init(struct clk *c) | ||
732 | { | 786 | { |
787 | struct clk_tegra *c = to_clk_tegra(hw); | ||
733 | u32 val; | 788 | u32 val; |
734 | 789 | ||
735 | val = pmc_readl(PMC_CTRL); | 790 | val = pmc_readl(PMC_CTRL); |
736 | c->state = (val & PMC_CTRL_BLINK_ENB) ? ON : OFF; | 791 | c->state = (val & PMC_CTRL_BLINK_ENB) ? ON : OFF; |
737 | c->mul = 1; | 792 | return c->state; |
738 | val = pmc_readl(c->reg); | ||
739 | |||
740 | if (val & PMC_BLINK_TIMER_ENB) { | ||
741 | unsigned int on_off; | ||
742 | |||
743 | on_off = (val >> PMC_BLINK_TIMER_DATA_ON_SHIFT) & | ||
744 | PMC_BLINK_TIMER_DATA_ON_MASK; | ||
745 | val >>= PMC_BLINK_TIMER_DATA_OFF_SHIFT; | ||
746 | val &= PMC_BLINK_TIMER_DATA_OFF_MASK; | ||
747 | on_off += val; | ||
748 | /* each tick in the blink timer is 4 32KHz clocks */ | ||
749 | c->div = on_off * 4; | ||
750 | } else { | ||
751 | c->div = 1; | ||
752 | } | ||
753 | } | 793 | } |
754 | 794 | ||
755 | static int tegra30_blink_clk_enable(struct clk *c) | 795 | static int tegra30_blink_clk_enable(struct clk_hw *hw) |
756 | { | 796 | { |
757 | u32 val; | 797 | u32 val; |
758 | 798 | ||
@@ -765,7 +805,7 @@ static int tegra30_blink_clk_enable(struct clk *c) | |||
765 | return 0; | 805 | return 0; |
766 | } | 806 | } |
767 | 807 | ||
768 | static void tegra30_blink_clk_disable(struct clk *c) | 808 | static void tegra30_blink_clk_disable(struct clk_hw *hw) |
769 | { | 809 | { |
770 | u32 val; | 810 | u32 val; |
771 | 811 | ||
@@ -776,9 +816,11 @@ static void tegra30_blink_clk_disable(struct clk *c) | |||
776 | pmc_writel(val & ~PMC_DPD_PADS_ORIDE_BLINK_ENB, PMC_DPD_PADS_ORIDE); | 816 | pmc_writel(val & ~PMC_DPD_PADS_ORIDE_BLINK_ENB, PMC_DPD_PADS_ORIDE); |
777 | } | 817 | } |
778 | 818 | ||
779 | static int tegra30_blink_clk_set_rate(struct clk *c, unsigned long rate) | 819 | static int tegra30_blink_clk_set_rate(struct clk_hw *hw, unsigned long rate, |
820 | unsigned long parent_rate) | ||
780 | { | 821 | { |
781 | unsigned long parent_rate = clk_get_rate(c->parent); | 822 | struct clk_tegra *c = to_clk_tegra(hw); |
823 | |||
782 | if (rate >= parent_rate) { | 824 | if (rate >= parent_rate) { |
783 | c->div = 1; | 825 | c->div = 1; |
784 | pmc_writel(0, c->reg); | 826 | pmc_writel(0, c->reg); |
@@ -801,41 +843,77 @@ static int tegra30_blink_clk_set_rate(struct clk *c, unsigned long rate) | |||
801 | return 0; | 843 | return 0; |
802 | } | 844 | } |
803 | 845 | ||
804 | static struct clk_ops tegra_blink_clk_ops = { | 846 | static unsigned long tegra30_blink_clk_recalc_rate(struct clk_hw *hw, |
805 | .init = &tegra30_blink_clk_init, | 847 | unsigned long parent_rate) |
806 | .enable = &tegra30_blink_clk_enable, | 848 | { |
807 | .disable = &tegra30_blink_clk_disable, | 849 | struct clk_tegra *c = to_clk_tegra(hw); |
808 | .set_rate = &tegra30_blink_clk_set_rate, | 850 | u64 rate = parent_rate; |
809 | }; | 851 | u32 val; |
852 | u32 mul; | ||
853 | u32 div; | ||
854 | u32 on_off; | ||
810 | 855 | ||
811 | /* PLL Functions */ | 856 | mul = 1; |
812 | static int tegra30_pll_clk_wait_for_lock(struct clk *c, u32 lock_reg, | 857 | val = pmc_readl(c->reg); |
813 | u32 lock_bit) | 858 | |
859 | if (val & PMC_BLINK_TIMER_ENB) { | ||
860 | on_off = (val >> PMC_BLINK_TIMER_DATA_ON_SHIFT) & | ||
861 | PMC_BLINK_TIMER_DATA_ON_MASK; | ||
862 | val >>= PMC_BLINK_TIMER_DATA_OFF_SHIFT; | ||
863 | val &= PMC_BLINK_TIMER_DATA_OFF_MASK; | ||
864 | on_off += val; | ||
865 | /* each tick in the blink timer is 4 32KHz clocks */ | ||
866 | div = on_off * 4; | ||
867 | } else { | ||
868 | div = 1; | ||
869 | } | ||
870 | |||
871 | if (mul != 0 && div != 0) { | ||
872 | rate *= mul; | ||
873 | rate += div - 1; /* round up */ | ||
874 | do_div(rate, div); | ||
875 | } | ||
876 | return rate; | ||
877 | } | ||
878 | |||
879 | static long tegra30_blink_clk_round_rate(struct clk_hw *hw, unsigned long rate, | ||
880 | unsigned long *prate) | ||
814 | { | 881 | { |
815 | #if USE_PLL_LOCK_BITS | 882 | int div; |
816 | int i; | 883 | int mul; |
817 | for (i = 0; i < c->u.pll.lock_delay; i++) { | 884 | long round_rate = *prate; |
818 | if (clk_readl(lock_reg) & lock_bit) { | 885 | |
819 | udelay(PLL_POST_LOCK_DELAY); | 886 | mul = 1; |
820 | return 0; | 887 | |
821 | } | 888 | if (rate >= *prate) { |
822 | udelay(2); /* timeout = 2 * lock time */ | 889 | div = 1; |
890 | } else { | ||
891 | div = DIV_ROUND_UP(*prate / 8, rate); | ||
892 | div *= 8; | ||
823 | } | 893 | } |
824 | pr_err("Timed out waiting for lock bit on pll %s", c->name); | ||
825 | return -1; | ||
826 | #endif | ||
827 | udelay(c->u.pll.lock_delay); | ||
828 | 894 | ||
829 | return 0; | 895 | round_rate *= mul; |
896 | round_rate += div - 1; | ||
897 | do_div(round_rate, div); | ||
898 | |||
899 | return round_rate; | ||
830 | } | 900 | } |
831 | 901 | ||
902 | struct clk_ops tegra30_blink_clk_ops = { | ||
903 | .is_enabled = tegra30_blink_clk_is_enabled, | ||
904 | .enable = tegra30_blink_clk_enable, | ||
905 | .disable = tegra30_blink_clk_disable, | ||
906 | .recalc_rate = tegra30_blink_clk_recalc_rate, | ||
907 | .round_rate = tegra30_blink_clk_round_rate, | ||
908 | .set_rate = tegra30_blink_clk_set_rate, | ||
909 | }; | ||
832 | 910 | ||
833 | static void tegra30_utmi_param_configure(struct clk *c) | 911 | static void tegra30_utmi_param_configure(struct clk_hw *hw) |
834 | { | 912 | { |
913 | unsigned long main_rate = | ||
914 | __clk_get_rate(__clk_get_parent(__clk_get_parent(hw->clk))); | ||
835 | u32 reg; | 915 | u32 reg; |
836 | int i; | 916 | int i; |
837 | unsigned long main_rate = | ||
838 | clk_get_rate(c->parent->parent); | ||
839 | 917 | ||
840 | for (i = 0; i < ARRAY_SIZE(utmi_parameters); i++) { | 918 | for (i = 0; i < ARRAY_SIZE(utmi_parameters); i++) { |
841 | if (main_rate == utmi_parameters[i].osc_frequency) | 919 | if (main_rate == utmi_parameters[i].osc_frequency) |
@@ -886,50 +964,52 @@ static void tegra30_utmi_param_configure(struct clk *c) | |||
886 | clk_writel(reg, UTMIP_PLL_CFG1); | 964 | clk_writel(reg, UTMIP_PLL_CFG1); |
887 | } | 965 | } |
888 | 966 | ||
889 | static void tegra30_pll_clk_init(struct clk *c) | 967 | /* PLL Functions */ |
968 | static int tegra30_pll_clk_wait_for_lock(struct clk_tegra *c, u32 lock_reg, | ||
969 | u32 lock_bit) | ||
970 | { | ||
971 | int ret = 0; | ||
972 | |||
973 | #if USE_PLL_LOCK_BITS | ||
974 | int i; | ||
975 | for (i = 0; i < c->u.pll.lock_delay; i++) { | ||
976 | if (clk_readl(lock_reg) & lock_bit) { | ||
977 | udelay(PLL_POST_LOCK_DELAY); | ||
978 | return 0; | ||
979 | } | ||
980 | udelay(2); /* timeout = 2 * lock time */ | ||
981 | } | ||
982 | pr_err("Timed out waiting for lock bit on pll %s", | ||
983 | __clk_get_name(hw->clk)); | ||
984 | ret = -1; | ||
985 | #else | ||
986 | udelay(c->u.pll.lock_delay); | ||
987 | #endif | ||
988 | return ret; | ||
989 | } | ||
990 | |||
991 | static int tegra30_pll_clk_is_enabled(struct clk_hw *hw) | ||
890 | { | 992 | { |
993 | struct clk_tegra *c = to_clk_tegra(hw); | ||
891 | u32 val = clk_readl(c->reg + PLL_BASE); | 994 | u32 val = clk_readl(c->reg + PLL_BASE); |
892 | 995 | ||
893 | c->state = (val & PLL_BASE_ENABLE) ? ON : OFF; | 996 | c->state = (val & PLL_BASE_ENABLE) ? ON : OFF; |
997 | return c->state; | ||
998 | } | ||
894 | 999 | ||
895 | if (c->flags & PLL_FIXED && !(val & PLL_BASE_OVERRIDE)) { | 1000 | static void tegra30_pll_clk_init(struct clk_hw *hw) |
896 | const struct clk_pll_freq_table *sel; | 1001 | { |
897 | unsigned long input_rate = clk_get_rate(c->parent); | 1002 | struct clk_tegra *c = to_clk_tegra(hw); |
898 | for (sel = c->u.pll.freq_table; sel->input_rate != 0; sel++) { | ||
899 | if (sel->input_rate == input_rate && | ||
900 | sel->output_rate == c->u.pll.fixed_rate) { | ||
901 | c->mul = sel->n; | ||
902 | c->div = sel->m * sel->p; | ||
903 | return; | ||
904 | } | ||
905 | } | ||
906 | pr_err("Clock %s has unknown fixed frequency\n", c->name); | ||
907 | BUG(); | ||
908 | } else if (val & PLL_BASE_BYPASS) { | ||
909 | c->mul = 1; | ||
910 | c->div = 1; | ||
911 | } else { | ||
912 | c->mul = (val & PLL_BASE_DIVN_MASK) >> PLL_BASE_DIVN_SHIFT; | ||
913 | c->div = (val & PLL_BASE_DIVM_MASK) >> PLL_BASE_DIVM_SHIFT; | ||
914 | if (c->flags & PLLU) | ||
915 | c->div *= (val & PLLU_BASE_POST_DIV) ? 1 : 2; | ||
916 | else | ||
917 | c->div *= (0x1 << ((val & PLL_BASE_DIVP_MASK) >> | ||
918 | PLL_BASE_DIVP_SHIFT)); | ||
919 | if (c->flags & PLL_FIXED) { | ||
920 | unsigned long rate = clk_get_rate_locked(c); | ||
921 | BUG_ON(rate != c->u.pll.fixed_rate); | ||
922 | } | ||
923 | } | ||
924 | 1003 | ||
925 | if (c->flags & PLLU) | 1004 | if (c->flags & PLLU) |
926 | tegra30_utmi_param_configure(c); | 1005 | tegra30_utmi_param_configure(hw); |
927 | } | 1006 | } |
928 | 1007 | ||
929 | static int tegra30_pll_clk_enable(struct clk *c) | 1008 | static int tegra30_pll_clk_enable(struct clk_hw *hw) |
930 | { | 1009 | { |
1010 | struct clk_tegra *c = to_clk_tegra(hw); | ||
931 | u32 val; | 1011 | u32 val; |
932 | pr_debug("%s on clock %s\n", __func__, c->name); | 1012 | pr_debug("%s on clock %s\n", __func__, __clk_get_name(hw->clk)); |
933 | 1013 | ||
934 | #if USE_PLL_LOCK_BITS | 1014 | #if USE_PLL_LOCK_BITS |
935 | val = clk_readl(c->reg + PLL_MISC(c)); | 1015 | val = clk_readl(c->reg + PLL_MISC(c)); |
@@ -952,10 +1032,11 @@ static int tegra30_pll_clk_enable(struct clk *c) | |||
952 | return 0; | 1032 | return 0; |
953 | } | 1033 | } |
954 | 1034 | ||
955 | static void tegra30_pll_clk_disable(struct clk *c) | 1035 | static void tegra30_pll_clk_disable(struct clk_hw *hw) |
956 | { | 1036 | { |
1037 | struct clk_tegra *c = to_clk_tegra(hw); | ||
957 | u32 val; | 1038 | u32 val; |
958 | pr_debug("%s on clock %s\n", __func__, c->name); | 1039 | pr_debug("%s on clock %s\n", __func__, __clk_get_name(hw->clk)); |
959 | 1040 | ||
960 | val = clk_readl(c->reg); | 1041 | val = clk_readl(c->reg); |
961 | val &= ~(PLL_BASE_BYPASS | PLL_BASE_ENABLE); | 1042 | val &= ~(PLL_BASE_BYPASS | PLL_BASE_ENABLE); |
@@ -968,36 +1049,36 @@ static void tegra30_pll_clk_disable(struct clk *c) | |||
968 | } | 1049 | } |
969 | } | 1050 | } |
970 | 1051 | ||
971 | static int tegra30_pll_clk_set_rate(struct clk *c, unsigned long rate) | 1052 | static int tegra30_pll_clk_set_rate(struct clk_hw *hw, unsigned long rate, |
1053 | unsigned long parent_rate) | ||
972 | { | 1054 | { |
1055 | struct clk_tegra *c = to_clk_tegra(hw); | ||
973 | u32 val, p_div, old_base; | 1056 | u32 val, p_div, old_base; |
974 | unsigned long input_rate; | 1057 | unsigned long input_rate; |
975 | const struct clk_pll_freq_table *sel; | 1058 | const struct clk_pll_freq_table *sel; |
976 | struct clk_pll_freq_table cfg; | 1059 | struct clk_pll_freq_table cfg; |
977 | 1060 | ||
978 | pr_debug("%s: %s %lu\n", __func__, c->name, rate); | ||
979 | |||
980 | if (c->flags & PLL_FIXED) { | 1061 | if (c->flags & PLL_FIXED) { |
981 | int ret = 0; | 1062 | int ret = 0; |
982 | if (rate != c->u.pll.fixed_rate) { | 1063 | if (rate != c->u.pll.fixed_rate) { |
983 | pr_err("%s: Can not change %s fixed rate %lu to %lu\n", | 1064 | pr_err("%s: Can not change %s fixed rate %lu to %lu\n", |
984 | __func__, c->name, c->u.pll.fixed_rate, rate); | 1065 | __func__, __clk_get_name(hw->clk), |
1066 | c->u.pll.fixed_rate, rate); | ||
985 | ret = -EINVAL; | 1067 | ret = -EINVAL; |
986 | } | 1068 | } |
987 | return ret; | 1069 | return ret; |
988 | } | 1070 | } |
989 | 1071 | ||
990 | if (c->flags & PLLM) { | 1072 | if (c->flags & PLLM) { |
991 | if (rate != clk_get_rate_locked(c)) { | 1073 | if (rate != __clk_get_rate(hw->clk)) { |
992 | pr_err("%s: Can not change memory %s rate in flight\n", | 1074 | pr_err("%s: Can not change memory %s rate in flight\n", |
993 | __func__, c->name); | 1075 | __func__, __clk_get_name(hw->clk)); |
994 | return -EINVAL; | 1076 | return -EINVAL; |
995 | } | 1077 | } |
996 | return 0; | ||
997 | } | 1078 | } |
998 | 1079 | ||
999 | p_div = 0; | 1080 | p_div = 0; |
1000 | input_rate = clk_get_rate(c->parent); | 1081 | input_rate = parent_rate; |
1001 | 1082 | ||
1002 | /* Check if the target rate is tabulated */ | 1083 | /* Check if the target rate is tabulated */ |
1003 | for (sel = c->u.pll.freq_table; sel->input_rate != 0; sel++) { | 1084 | for (sel = c->u.pll.freq_table; sel->input_rate != 0; sel++) { |
@@ -1055,7 +1136,7 @@ static int tegra30_pll_clk_set_rate(struct clk *c, unsigned long rate) | |||
1055 | (p_div > (PLL_BASE_DIVP_MASK >> PLL_BASE_DIVP_SHIFT)) || | 1136 | (p_div > (PLL_BASE_DIVP_MASK >> PLL_BASE_DIVP_SHIFT)) || |
1056 | (cfg.output_rate > c->u.pll.vco_max)) { | 1137 | (cfg.output_rate > c->u.pll.vco_max)) { |
1057 | pr_err("%s: Failed to set %s out-of-table rate %lu\n", | 1138 | pr_err("%s: Failed to set %s out-of-table rate %lu\n", |
1058 | __func__, c->name, rate); | 1139 | __func__, __clk_get_name(hw->clk), rate); |
1059 | return -EINVAL; | 1140 | return -EINVAL; |
1060 | } | 1141 | } |
1061 | p_div <<= PLL_BASE_DIVP_SHIFT; | 1142 | p_div <<= PLL_BASE_DIVP_SHIFT; |
@@ -1073,7 +1154,7 @@ static int tegra30_pll_clk_set_rate(struct clk *c, unsigned long rate) | |||
1073 | return 0; | 1154 | return 0; |
1074 | 1155 | ||
1075 | if (c->state == ON) { | 1156 | if (c->state == ON) { |
1076 | tegra30_pll_clk_disable(c); | 1157 | tegra30_pll_clk_disable(hw); |
1077 | val &= ~(PLL_BASE_BYPASS | PLL_BASE_ENABLE); | 1158 | val &= ~(PLL_BASE_BYPASS | PLL_BASE_ENABLE); |
1078 | } | 1159 | } |
1079 | clk_writel(val, c->reg + PLL_BASE); | 1160 | clk_writel(val, c->reg + PLL_BASE); |
@@ -1095,21 +1176,149 @@ static int tegra30_pll_clk_set_rate(struct clk *c, unsigned long rate) | |||
1095 | } | 1176 | } |
1096 | 1177 | ||
1097 | if (c->state == ON) | 1178 | if (c->state == ON) |
1098 | tegra30_pll_clk_enable(c); | 1179 | tegra30_pll_clk_enable(hw); |
1180 | |||
1181 | c->u.pll.fixed_rate = rate; | ||
1099 | 1182 | ||
1100 | return 0; | 1183 | return 0; |
1101 | } | 1184 | } |
1102 | 1185 | ||
1103 | static struct clk_ops tegra_pll_ops = { | 1186 | static long tegra30_pll_round_rate(struct clk_hw *hw, unsigned long rate, |
1104 | .init = tegra30_pll_clk_init, | 1187 | unsigned long *prate) |
1105 | .enable = tegra30_pll_clk_enable, | 1188 | { |
1106 | .disable = tegra30_pll_clk_disable, | 1189 | struct clk_tegra *c = to_clk_tegra(hw); |
1107 | .set_rate = tegra30_pll_clk_set_rate, | 1190 | unsigned long input_rate = *prate; |
1191 | unsigned long output_rate = *prate; | ||
1192 | const struct clk_pll_freq_table *sel; | ||
1193 | struct clk_pll_freq_table cfg; | ||
1194 | int mul; | ||
1195 | int div; | ||
1196 | u32 p_div; | ||
1197 | u32 val; | ||
1198 | |||
1199 | if (c->flags & PLL_FIXED) | ||
1200 | return c->u.pll.fixed_rate; | ||
1201 | |||
1202 | if (c->flags & PLLM) | ||
1203 | return __clk_get_rate(hw->clk); | ||
1204 | |||
1205 | p_div = 0; | ||
1206 | /* Check if the target rate is tabulated */ | ||
1207 | for (sel = c->u.pll.freq_table; sel->input_rate != 0; sel++) { | ||
1208 | if (sel->input_rate == input_rate && sel->output_rate == rate) { | ||
1209 | if (c->flags & PLLU) { | ||
1210 | BUG_ON(sel->p < 1 || sel->p > 2); | ||
1211 | if (sel->p == 1) | ||
1212 | p_div = PLLU_BASE_POST_DIV; | ||
1213 | } else { | ||
1214 | BUG_ON(sel->p < 1); | ||
1215 | for (val = sel->p; val > 1; val >>= 1) | ||
1216 | p_div++; | ||
1217 | p_div <<= PLL_BASE_DIVP_SHIFT; | ||
1218 | } | ||
1219 | break; | ||
1220 | } | ||
1221 | } | ||
1222 | |||
1223 | if (sel->input_rate == 0) { | ||
1224 | unsigned long cfreq; | ||
1225 | BUG_ON(c->flags & PLLU); | ||
1226 | sel = &cfg; | ||
1227 | |||
1228 | switch (input_rate) { | ||
1229 | case 12000000: | ||
1230 | case 26000000: | ||
1231 | cfreq = (rate <= 1000000 * 1000) ? 1000000 : 2000000; | ||
1232 | break; | ||
1233 | case 13000000: | ||
1234 | cfreq = (rate <= 1000000 * 1000) ? 1000000 : 2600000; | ||
1235 | break; | ||
1236 | case 16800000: | ||
1237 | case 19200000: | ||
1238 | cfreq = (rate <= 1200000 * 1000) ? 1200000 : 2400000; | ||
1239 | break; | ||
1240 | default: | ||
1241 | pr_err("%s: Unexpected reference rate %lu\n", | ||
1242 | __func__, input_rate); | ||
1243 | BUG(); | ||
1244 | } | ||
1245 | |||
1246 | /* Raise VCO to guarantee 0.5% accuracy */ | ||
1247 | for (cfg.output_rate = rate; cfg.output_rate < 200 * cfreq; | ||
1248 | cfg.output_rate <<= 1) | ||
1249 | p_div++; | ||
1250 | |||
1251 | cfg.p = 0x1 << p_div; | ||
1252 | cfg.m = input_rate / cfreq; | ||
1253 | cfg.n = cfg.output_rate / cfreq; | ||
1254 | } | ||
1255 | |||
1256 | mul = sel->n; | ||
1257 | div = sel->m * sel->p; | ||
1258 | |||
1259 | output_rate *= mul; | ||
1260 | output_rate += div - 1; /* round up */ | ||
1261 | do_div(output_rate, div); | ||
1262 | |||
1263 | return output_rate; | ||
1264 | } | ||
1265 | |||
1266 | static unsigned long tegra30_pll_recalc_rate(struct clk_hw *hw, | ||
1267 | unsigned long parent_rate) | ||
1268 | { | ||
1269 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1270 | u64 rate = parent_rate; | ||
1271 | u32 val = clk_readl(c->reg + PLL_BASE); | ||
1272 | |||
1273 | if (c->flags & PLL_FIXED && !(val & PLL_BASE_OVERRIDE)) { | ||
1274 | const struct clk_pll_freq_table *sel; | ||
1275 | for (sel = c->u.pll.freq_table; sel->input_rate != 0; sel++) { | ||
1276 | if (sel->input_rate == parent_rate && | ||
1277 | sel->output_rate == c->u.pll.fixed_rate) { | ||
1278 | c->mul = sel->n; | ||
1279 | c->div = sel->m * sel->p; | ||
1280 | break; | ||
1281 | } | ||
1282 | } | ||
1283 | pr_err("Clock %s has unknown fixed frequency\n", | ||
1284 | __clk_get_name(hw->clk)); | ||
1285 | BUG(); | ||
1286 | } else if (val & PLL_BASE_BYPASS) { | ||
1287 | c->mul = 1; | ||
1288 | c->div = 1; | ||
1289 | } else { | ||
1290 | c->mul = (val & PLL_BASE_DIVN_MASK) >> PLL_BASE_DIVN_SHIFT; | ||
1291 | c->div = (val & PLL_BASE_DIVM_MASK) >> PLL_BASE_DIVM_SHIFT; | ||
1292 | if (c->flags & PLLU) | ||
1293 | c->div *= (val & PLLU_BASE_POST_DIV) ? 1 : 2; | ||
1294 | else | ||
1295 | c->div *= (0x1 << ((val & PLL_BASE_DIVP_MASK) >> | ||
1296 | PLL_BASE_DIVP_SHIFT)); | ||
1297 | } | ||
1298 | |||
1299 | if (c->mul != 0 && c->div != 0) { | ||
1300 | rate *= c->mul; | ||
1301 | rate += c->div - 1; /* round up */ | ||
1302 | do_div(rate, c->div); | ||
1303 | } | ||
1304 | |||
1305 | return rate; | ||
1306 | } | ||
1307 | |||
1308 | struct clk_ops tegra30_pll_ops = { | ||
1309 | .is_enabled = tegra30_pll_clk_is_enabled, | ||
1310 | .init = tegra30_pll_clk_init, | ||
1311 | .enable = tegra30_pll_clk_enable, | ||
1312 | .disable = tegra30_pll_clk_disable, | ||
1313 | .recalc_rate = tegra30_pll_recalc_rate, | ||
1314 | .round_rate = tegra30_pll_round_rate, | ||
1315 | .set_rate = tegra30_pll_clk_set_rate, | ||
1108 | }; | 1316 | }; |
1109 | 1317 | ||
1110 | static int | 1318 | int tegra30_plld_clk_cfg_ex(struct clk_hw *hw, |
1111 | tegra30_plld_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting) | 1319 | enum tegra_clk_ex_param p, u32 setting) |
1112 | { | 1320 | { |
1321 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1113 | u32 val, mask, reg; | 1322 | u32 val, mask, reg; |
1114 | 1323 | ||
1115 | switch (p) { | 1324 | switch (p) { |
@@ -1141,41 +1350,27 @@ tegra30_plld_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting) | |||
1141 | return 0; | 1350 | return 0; |
1142 | } | 1351 | } |
1143 | 1352 | ||
1144 | static struct clk_ops tegra_plld_ops = { | 1353 | static int tegra30_plle_clk_is_enabled(struct clk_hw *hw) |
1145 | .init = tegra30_pll_clk_init, | ||
1146 | .enable = tegra30_pll_clk_enable, | ||
1147 | .disable = tegra30_pll_clk_disable, | ||
1148 | .set_rate = tegra30_pll_clk_set_rate, | ||
1149 | .clk_cfg_ex = tegra30_plld_clk_cfg_ex, | ||
1150 | }; | ||
1151 | |||
1152 | static void tegra30_plle_clk_init(struct clk *c) | ||
1153 | { | 1354 | { |
1355 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1154 | u32 val; | 1356 | u32 val; |
1155 | 1357 | ||
1156 | val = clk_readl(PLLE_AUX); | ||
1157 | c->parent = (val & PLLE_AUX_PLLP_SEL) ? | ||
1158 | tegra_get_clock_by_name("pll_p") : | ||
1159 | tegra_get_clock_by_name("pll_ref"); | ||
1160 | |||
1161 | val = clk_readl(c->reg + PLL_BASE); | 1358 | val = clk_readl(c->reg + PLL_BASE); |
1162 | c->state = (val & PLLE_BASE_ENABLE) ? ON : OFF; | 1359 | c->state = (val & PLLE_BASE_ENABLE) ? ON : OFF; |
1163 | c->mul = (val & PLLE_BASE_DIVN_MASK) >> PLLE_BASE_DIVN_SHIFT; | 1360 | return c->state; |
1164 | c->div = (val & PLLE_BASE_DIVM_MASK) >> PLLE_BASE_DIVM_SHIFT; | ||
1165 | c->div *= (val & PLLE_BASE_DIVP_MASK) >> PLLE_BASE_DIVP_SHIFT; | ||
1166 | } | 1361 | } |
1167 | 1362 | ||
1168 | static void tegra30_plle_clk_disable(struct clk *c) | 1363 | static void tegra30_plle_clk_disable(struct clk_hw *hw) |
1169 | { | 1364 | { |
1365 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1170 | u32 val; | 1366 | u32 val; |
1171 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
1172 | 1367 | ||
1173 | val = clk_readl(c->reg + PLL_BASE); | 1368 | val = clk_readl(c->reg + PLL_BASE); |
1174 | val &= ~(PLLE_BASE_CML_ENABLE | PLLE_BASE_ENABLE); | 1369 | val &= ~(PLLE_BASE_CML_ENABLE | PLLE_BASE_ENABLE); |
1175 | clk_writel(val, c->reg + PLL_BASE); | 1370 | clk_writel(val, c->reg + PLL_BASE); |
1176 | } | 1371 | } |
1177 | 1372 | ||
1178 | static void tegra30_plle_training(struct clk *c) | 1373 | static void tegra30_plle_training(struct clk_tegra *c) |
1179 | { | 1374 | { |
1180 | u32 val; | 1375 | u32 val; |
1181 | 1376 | ||
@@ -1198,12 +1393,15 @@ static void tegra30_plle_training(struct clk *c) | |||
1198 | } while (!(val & PLLE_MISC_READY)); | 1393 | } while (!(val & PLLE_MISC_READY)); |
1199 | } | 1394 | } |
1200 | 1395 | ||
1201 | static int tegra30_plle_configure(struct clk *c, bool force_training) | 1396 | static int tegra30_plle_configure(struct clk_hw *hw, bool force_training) |
1202 | { | 1397 | { |
1203 | u32 val; | 1398 | struct clk_tegra *c = to_clk_tegra(hw); |
1399 | struct clk *parent = __clk_get_parent(hw->clk); | ||
1204 | const struct clk_pll_freq_table *sel; | 1400 | const struct clk_pll_freq_table *sel; |
1401 | u32 val; | ||
1402 | |||
1205 | unsigned long rate = c->u.pll.fixed_rate; | 1403 | unsigned long rate = c->u.pll.fixed_rate; |
1206 | unsigned long input_rate = clk_get_rate(c->parent); | 1404 | unsigned long input_rate = __clk_get_rate(parent); |
1207 | 1405 | ||
1208 | for (sel = c->u.pll.freq_table; sel->input_rate != 0; sel++) { | 1406 | for (sel = c->u.pll.freq_table; sel->input_rate != 0; sel++) { |
1209 | if (sel->input_rate == input_rate && sel->output_rate == rate) | 1407 | if (sel->input_rate == input_rate && sel->output_rate == rate) |
@@ -1214,7 +1412,7 @@ static int tegra30_plle_configure(struct clk *c, bool force_training) | |||
1214 | return -ENOSYS; | 1412 | return -ENOSYS; |
1215 | 1413 | ||
1216 | /* disable PLLE, clear setup fiels */ | 1414 | /* disable PLLE, clear setup fiels */ |
1217 | tegra30_plle_clk_disable(c); | 1415 | tegra30_plle_clk_disable(hw); |
1218 | 1416 | ||
1219 | val = clk_readl(c->reg + PLL_MISC(c)); | 1417 | val = clk_readl(c->reg + PLL_MISC(c)); |
1220 | val &= ~(PLLE_MISC_LOCK_ENABLE | PLLE_MISC_SETUP_MASK); | 1418 | val &= ~(PLLE_MISC_LOCK_ENABLE | PLLE_MISC_SETUP_MASK); |
@@ -1252,52 +1450,64 @@ static int tegra30_plle_configure(struct clk *c, bool force_training) | |||
1252 | return 0; | 1450 | return 0; |
1253 | } | 1451 | } |
1254 | 1452 | ||
1255 | static int tegra30_plle_clk_enable(struct clk *c) | 1453 | static int tegra30_plle_clk_enable(struct clk_hw *hw) |
1256 | { | 1454 | { |
1257 | pr_debug("%s on clock %s\n", __func__, c->name); | 1455 | struct clk_tegra *c = to_clk_tegra(hw); |
1258 | return tegra30_plle_configure(c, !c->set); | 1456 | |
1457 | return tegra30_plle_configure(hw, !c->set); | ||
1259 | } | 1458 | } |
1260 | 1459 | ||
1261 | static struct clk_ops tegra_plle_ops = { | 1460 | static unsigned long tegra30_plle_clk_recalc_rate(struct clk_hw *hw, |
1262 | .init = tegra30_plle_clk_init, | 1461 | unsigned long parent_rate) |
1263 | .enable = tegra30_plle_clk_enable, | 1462 | { |
1264 | .disable = tegra30_plle_clk_disable, | 1463 | struct clk_tegra *c = to_clk_tegra(hw); |
1464 | unsigned long rate = parent_rate; | ||
1465 | u32 val; | ||
1466 | |||
1467 | val = clk_readl(c->reg + PLL_BASE); | ||
1468 | c->mul = (val & PLLE_BASE_DIVN_MASK) >> PLLE_BASE_DIVN_SHIFT; | ||
1469 | c->div = (val & PLLE_BASE_DIVM_MASK) >> PLLE_BASE_DIVM_SHIFT; | ||
1470 | c->div *= (val & PLLE_BASE_DIVP_MASK) >> PLLE_BASE_DIVP_SHIFT; | ||
1471 | |||
1472 | if (c->mul != 0 && c->div != 0) { | ||
1473 | rate *= c->mul; | ||
1474 | rate += c->div - 1; /* round up */ | ||
1475 | do_div(rate, c->div); | ||
1476 | } | ||
1477 | return rate; | ||
1478 | } | ||
1479 | |||
1480 | struct clk_ops tegra30_plle_ops = { | ||
1481 | .is_enabled = tegra30_plle_clk_is_enabled, | ||
1482 | .enable = tegra30_plle_clk_enable, | ||
1483 | .disable = tegra30_plle_clk_disable, | ||
1484 | .recalc_rate = tegra30_plle_clk_recalc_rate, | ||
1265 | }; | 1485 | }; |
1266 | 1486 | ||
1267 | /* Clock divider ops */ | 1487 | /* Clock divider ops */ |
1268 | static void tegra30_pll_div_clk_init(struct clk *c) | 1488 | static int tegra30_pll_div_clk_is_enabled(struct clk_hw *hw) |
1269 | { | 1489 | { |
1490 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1491 | |||
1270 | if (c->flags & DIV_U71) { | 1492 | if (c->flags & DIV_U71) { |
1271 | u32 divu71; | ||
1272 | u32 val = clk_readl(c->reg); | 1493 | u32 val = clk_readl(c->reg); |
1273 | val >>= c->reg_shift; | 1494 | val >>= c->reg_shift; |
1274 | c->state = (val & PLL_OUT_CLKEN) ? ON : OFF; | 1495 | c->state = (val & PLL_OUT_CLKEN) ? ON : OFF; |
1275 | if (!(val & PLL_OUT_RESET_DISABLE)) | 1496 | if (!(val & PLL_OUT_RESET_DISABLE)) |
1276 | c->state = OFF; | 1497 | c->state = OFF; |
1277 | |||
1278 | divu71 = (val & PLL_OUT_RATIO_MASK) >> PLL_OUT_RATIO_SHIFT; | ||
1279 | c->div = (divu71 + 2); | ||
1280 | c->mul = 2; | ||
1281 | } else if (c->flags & DIV_2) { | ||
1282 | c->state = ON; | ||
1283 | if (c->flags & (PLLD | PLLX)) { | ||
1284 | c->div = 2; | ||
1285 | c->mul = 1; | ||
1286 | } else | ||
1287 | BUG(); | ||
1288 | } else { | 1498 | } else { |
1289 | c->state = ON; | 1499 | c->state = ON; |
1290 | c->div = 1; | ||
1291 | c->mul = 1; | ||
1292 | } | 1500 | } |
1501 | return c->state; | ||
1293 | } | 1502 | } |
1294 | 1503 | ||
1295 | static int tegra30_pll_div_clk_enable(struct clk *c) | 1504 | static int tegra30_pll_div_clk_enable(struct clk_hw *hw) |
1296 | { | 1505 | { |
1506 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1297 | u32 val; | 1507 | u32 val; |
1298 | u32 new_val; | 1508 | u32 new_val; |
1299 | 1509 | ||
1300 | pr_debug("%s: %s\n", __func__, c->name); | 1510 | pr_debug("%s: %s\n", __func__, __clk_get_name(hw->clk)); |
1301 | if (c->flags & DIV_U71) { | 1511 | if (c->flags & DIV_U71) { |
1302 | val = clk_readl(c->reg); | 1512 | val = clk_readl(c->reg); |
1303 | new_val = val >> c->reg_shift; | 1513 | new_val = val >> c->reg_shift; |
@@ -1315,12 +1525,13 @@ static int tegra30_pll_div_clk_enable(struct clk *c) | |||
1315 | return -EINVAL; | 1525 | return -EINVAL; |
1316 | } | 1526 | } |
1317 | 1527 | ||
1318 | static void tegra30_pll_div_clk_disable(struct clk *c) | 1528 | static void tegra30_pll_div_clk_disable(struct clk_hw *hw) |
1319 | { | 1529 | { |
1530 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1320 | u32 val; | 1531 | u32 val; |
1321 | u32 new_val; | 1532 | u32 new_val; |
1322 | 1533 | ||
1323 | pr_debug("%s: %s\n", __func__, c->name); | 1534 | pr_debug("%s: %s\n", __func__, __clk_get_name(hw->clk)); |
1324 | if (c->flags & DIV_U71) { | 1535 | if (c->flags & DIV_U71) { |
1325 | val = clk_readl(c->reg); | 1536 | val = clk_readl(c->reg); |
1326 | new_val = val >> c->reg_shift; | 1537 | new_val = val >> c->reg_shift; |
@@ -1334,14 +1545,14 @@ static void tegra30_pll_div_clk_disable(struct clk *c) | |||
1334 | } | 1545 | } |
1335 | } | 1546 | } |
1336 | 1547 | ||
1337 | static int tegra30_pll_div_clk_set_rate(struct clk *c, unsigned long rate) | 1548 | static int tegra30_pll_div_clk_set_rate(struct clk_hw *hw, unsigned long rate, |
1549 | unsigned long parent_rate) | ||
1338 | { | 1550 | { |
1551 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1339 | u32 val; | 1552 | u32 val; |
1340 | u32 new_val; | 1553 | u32 new_val; |
1341 | int divider_u71; | 1554 | int divider_u71; |
1342 | unsigned long parent_rate = clk_get_rate(c->parent); | ||
1343 | 1555 | ||
1344 | pr_debug("%s: %s %lu\n", __func__, c->name, rate); | ||
1345 | if (c->flags & DIV_U71) { | 1556 | if (c->flags & DIV_U71) { |
1346 | divider_u71 = clk_div71_get_divider( | 1557 | divider_u71 = clk_div71_get_divider( |
1347 | parent_rate, rate, c->flags, ROUND_DIVIDER_UP); | 1558 | parent_rate, rate, c->flags, ROUND_DIVIDER_UP); |
@@ -1359,19 +1570,59 @@ static int tegra30_pll_div_clk_set_rate(struct clk *c, unsigned long rate) | |||
1359 | clk_writel_delay(val, c->reg); | 1570 | clk_writel_delay(val, c->reg); |
1360 | c->div = divider_u71 + 2; | 1571 | c->div = divider_u71 + 2; |
1361 | c->mul = 2; | 1572 | c->mul = 2; |
1573 | c->fixed_rate = rate; | ||
1362 | return 0; | 1574 | return 0; |
1363 | } | 1575 | } |
1364 | } else if (c->flags & DIV_2) | 1576 | } else if (c->flags & DIV_2) { |
1365 | return clk_set_rate(c->parent, rate * 2); | 1577 | c->fixed_rate = rate; |
1578 | return 0; | ||
1579 | } | ||
1366 | 1580 | ||
1367 | return -EINVAL; | 1581 | return -EINVAL; |
1368 | } | 1582 | } |
1369 | 1583 | ||
1370 | static long tegra30_pll_div_clk_round_rate(struct clk *c, unsigned long rate) | 1584 | static unsigned long tegra30_pll_div_clk_recalc_rate(struct clk_hw *hw, |
1585 | unsigned long parent_rate) | ||
1586 | { | ||
1587 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1588 | u64 rate = parent_rate; | ||
1589 | |||
1590 | if (c->flags & DIV_U71) { | ||
1591 | u32 divu71; | ||
1592 | u32 val = clk_readl(c->reg); | ||
1593 | val >>= c->reg_shift; | ||
1594 | |||
1595 | divu71 = (val & PLL_OUT_RATIO_MASK) >> PLL_OUT_RATIO_SHIFT; | ||
1596 | c->div = (divu71 + 2); | ||
1597 | c->mul = 2; | ||
1598 | } else if (c->flags & DIV_2) { | ||
1599 | if (c->flags & (PLLD | PLLX)) { | ||
1600 | c->div = 2; | ||
1601 | c->mul = 1; | ||
1602 | } else | ||
1603 | BUG(); | ||
1604 | } else { | ||
1605 | c->div = 1; | ||
1606 | c->mul = 1; | ||
1607 | } | ||
1608 | if (c->mul != 0 && c->div != 0) { | ||
1609 | rate *= c->mul; | ||
1610 | rate += c->div - 1; /* round up */ | ||
1611 | do_div(rate, c->div); | ||
1612 | } | ||
1613 | |||
1614 | return rate; | ||
1615 | } | ||
1616 | |||
1617 | static long tegra30_pll_div_clk_round_rate(struct clk_hw *hw, | ||
1618 | unsigned long rate, unsigned long *prate) | ||
1371 | { | 1619 | { |
1620 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1621 | unsigned long parent_rate = __clk_get_rate(__clk_get_parent(hw->clk)); | ||
1372 | int divider; | 1622 | int divider; |
1373 | unsigned long parent_rate = clk_get_rate(c->parent); | 1623 | |
1374 | pr_debug("%s: %s %lu\n", __func__, c->name, rate); | 1624 | if (prate) |
1625 | parent_rate = *prate; | ||
1375 | 1626 | ||
1376 | if (c->flags & DIV_U71) { | 1627 | if (c->flags & DIV_U71) { |
1377 | divider = clk_div71_get_divider( | 1628 | divider = clk_div71_get_divider( |
@@ -1379,23 +1630,25 @@ static long tegra30_pll_div_clk_round_rate(struct clk *c, unsigned long rate) | |||
1379 | if (divider < 0) | 1630 | if (divider < 0) |
1380 | return divider; | 1631 | return divider; |
1381 | return DIV_ROUND_UP(parent_rate * 2, divider + 2); | 1632 | return DIV_ROUND_UP(parent_rate * 2, divider + 2); |
1382 | } else if (c->flags & DIV_2) | 1633 | } else if (c->flags & DIV_2) { |
1383 | /* no rounding - fixed DIV_2 dividers pass rate to parent PLL */ | 1634 | *prate = rate * 2; |
1384 | return rate; | 1635 | return rate; |
1636 | } | ||
1385 | 1637 | ||
1386 | return -EINVAL; | 1638 | return -EINVAL; |
1387 | } | 1639 | } |
1388 | 1640 | ||
1389 | static struct clk_ops tegra_pll_div_ops = { | 1641 | struct clk_ops tegra30_pll_div_ops = { |
1390 | .init = tegra30_pll_div_clk_init, | 1642 | .is_enabled = tegra30_pll_div_clk_is_enabled, |
1391 | .enable = tegra30_pll_div_clk_enable, | 1643 | .enable = tegra30_pll_div_clk_enable, |
1392 | .disable = tegra30_pll_div_clk_disable, | 1644 | .disable = tegra30_pll_div_clk_disable, |
1393 | .set_rate = tegra30_pll_div_clk_set_rate, | 1645 | .set_rate = tegra30_pll_div_clk_set_rate, |
1394 | .round_rate = tegra30_pll_div_clk_round_rate, | 1646 | .recalc_rate = tegra30_pll_div_clk_recalc_rate, |
1647 | .round_rate = tegra30_pll_div_clk_round_rate, | ||
1395 | }; | 1648 | }; |
1396 | 1649 | ||
1397 | /* Periph clk ops */ | 1650 | /* Periph clk ops */ |
1398 | static inline u32 periph_clk_source_mask(struct clk *c) | 1651 | static inline u32 periph_clk_source_mask(struct clk_tegra *c) |
1399 | { | 1652 | { |
1400 | if (c->flags & MUX8) | 1653 | if (c->flags & MUX8) |
1401 | return 7 << 29; | 1654 | return 7 << 29; |
@@ -1409,7 +1662,7 @@ static inline u32 periph_clk_source_mask(struct clk *c) | |||
1409 | return 3 << 30; | 1662 | return 3 << 30; |
1410 | } | 1663 | } |
1411 | 1664 | ||
1412 | static inline u32 periph_clk_source_shift(struct clk *c) | 1665 | static inline u32 periph_clk_source_shift(struct clk_tegra *c) |
1413 | { | 1666 | { |
1414 | if (c->flags & MUX8) | 1667 | if (c->flags & MUX8) |
1415 | return 29; | 1668 | return 29; |
@@ -1423,47 +1676,9 @@ static inline u32 periph_clk_source_shift(struct clk *c) | |||
1423 | return 30; | 1676 | return 30; |
1424 | } | 1677 | } |
1425 | 1678 | ||
1426 | static void tegra30_periph_clk_init(struct clk *c) | 1679 | static int tegra30_periph_clk_is_enabled(struct clk_hw *hw) |
1427 | { | 1680 | { |
1428 | u32 val = clk_readl(c->reg); | 1681 | struct clk_tegra *c = to_clk_tegra(hw); |
1429 | const struct clk_mux_sel *mux = 0; | ||
1430 | const struct clk_mux_sel *sel; | ||
1431 | if (c->flags & MUX) { | ||
1432 | for (sel = c->inputs; sel->input != NULL; sel++) { | ||
1433 | if (((val & periph_clk_source_mask(c)) >> | ||
1434 | periph_clk_source_shift(c)) == sel->value) | ||
1435 | mux = sel; | ||
1436 | } | ||
1437 | BUG_ON(!mux); | ||
1438 | |||
1439 | c->parent = mux->input; | ||
1440 | } else { | ||
1441 | c->parent = c->inputs[0].input; | ||
1442 | } | ||
1443 | |||
1444 | if (c->flags & DIV_U71) { | ||
1445 | u32 divu71 = val & PERIPH_CLK_SOURCE_DIVU71_MASK; | ||
1446 | if ((c->flags & DIV_U71_UART) && | ||
1447 | (!(val & PERIPH_CLK_UART_DIV_ENB))) { | ||
1448 | divu71 = 0; | ||
1449 | } | ||
1450 | if (c->flags & DIV_U71_IDLE) { | ||
1451 | val &= ~(PERIPH_CLK_SOURCE_DIVU71_MASK << | ||
1452 | PERIPH_CLK_SOURCE_DIVIDLE_SHIFT); | ||
1453 | val |= (PERIPH_CLK_SOURCE_DIVIDLE_VAL << | ||
1454 | PERIPH_CLK_SOURCE_DIVIDLE_SHIFT); | ||
1455 | clk_writel(val, c->reg); | ||
1456 | } | ||
1457 | c->div = divu71 + 2; | ||
1458 | c->mul = 2; | ||
1459 | } else if (c->flags & DIV_U16) { | ||
1460 | u32 divu16 = val & PERIPH_CLK_SOURCE_DIVU16_MASK; | ||
1461 | c->div = divu16 + 1; | ||
1462 | c->mul = 1; | ||
1463 | } else { | ||
1464 | c->div = 1; | ||
1465 | c->mul = 1; | ||
1466 | } | ||
1467 | 1682 | ||
1468 | c->state = ON; | 1683 | c->state = ON; |
1469 | if (!(clk_readl(PERIPH_CLK_TO_ENB_REG(c)) & PERIPH_CLK_TO_BIT(c))) | 1684 | if (!(clk_readl(PERIPH_CLK_TO_ENB_REG(c)) & PERIPH_CLK_TO_BIT(c))) |
@@ -1471,11 +1686,12 @@ static void tegra30_periph_clk_init(struct clk *c) | |||
1471 | if (!(c->flags & PERIPH_NO_RESET)) | 1686 | if (!(c->flags & PERIPH_NO_RESET)) |
1472 | if (clk_readl(PERIPH_CLK_TO_RST_REG(c)) & PERIPH_CLK_TO_BIT(c)) | 1687 | if (clk_readl(PERIPH_CLK_TO_RST_REG(c)) & PERIPH_CLK_TO_BIT(c)) |
1473 | c->state = OFF; | 1688 | c->state = OFF; |
1689 | return c->state; | ||
1474 | } | 1690 | } |
1475 | 1691 | ||
1476 | static int tegra30_periph_clk_enable(struct clk *c) | 1692 | static int tegra30_periph_clk_enable(struct clk_hw *hw) |
1477 | { | 1693 | { |
1478 | pr_debug("%s on clock %s\n", __func__, c->name); | 1694 | struct clk_tegra *c = to_clk_tegra(hw); |
1479 | 1695 | ||
1480 | tegra_periph_clk_enable_refcount[c->u.periph.clk_num]++; | 1696 | tegra_periph_clk_enable_refcount[c->u.periph.clk_num]++; |
1481 | if (tegra_periph_clk_enable_refcount[c->u.periph.clk_num] > 1) | 1697 | if (tegra_periph_clk_enable_refcount[c->u.periph.clk_num] > 1) |
@@ -1494,31 +1710,29 @@ static int tegra30_periph_clk_enable(struct clk *c) | |||
1494 | return 0; | 1710 | return 0; |
1495 | } | 1711 | } |
1496 | 1712 | ||
1497 | static void tegra30_periph_clk_disable(struct clk *c) | 1713 | static void tegra30_periph_clk_disable(struct clk_hw *hw) |
1498 | { | 1714 | { |
1715 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1499 | unsigned long val; | 1716 | unsigned long val; |
1500 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
1501 | 1717 | ||
1502 | if (c->refcnt) | 1718 | tegra_periph_clk_enable_refcount[c->u.periph.clk_num]--; |
1503 | tegra_periph_clk_enable_refcount[c->u.periph.clk_num]--; | ||
1504 | 1719 | ||
1505 | if (tegra_periph_clk_enable_refcount[c->u.periph.clk_num] == 0) { | 1720 | if (tegra_periph_clk_enable_refcount[c->u.periph.clk_num] > 0) |
1506 | /* If peripheral is in the APB bus then read the APB bus to | 1721 | return; |
1507 | * flush the write operation in apb bus. This will avoid the | ||
1508 | * peripheral access after disabling clock*/ | ||
1509 | if (c->flags & PERIPH_ON_APB) | ||
1510 | val = chipid_readl(); | ||
1511 | 1722 | ||
1512 | clk_writel_delay( | 1723 | /* If peripheral is in the APB bus then read the APB bus to |
1513 | PERIPH_CLK_TO_BIT(c), PERIPH_CLK_TO_ENB_CLR_REG(c)); | 1724 | * flush the write operation in apb bus. This will avoid the |
1514 | } | 1725 | * peripheral access after disabling clock*/ |
1726 | if (c->flags & PERIPH_ON_APB) | ||
1727 | val = chipid_readl(); | ||
1728 | |||
1729 | clk_writel_delay(PERIPH_CLK_TO_BIT(c), PERIPH_CLK_TO_ENB_CLR_REG(c)); | ||
1515 | } | 1730 | } |
1516 | 1731 | ||
1517 | static void tegra30_periph_clk_reset(struct clk *c, bool assert) | 1732 | void tegra30_periph_clk_reset(struct clk_hw *hw, bool assert) |
1518 | { | 1733 | { |
1734 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1519 | unsigned long val; | 1735 | unsigned long val; |
1520 | pr_debug("%s %s on clock %s\n", __func__, | ||
1521 | assert ? "assert" : "deassert", c->name); | ||
1522 | 1736 | ||
1523 | if (!(c->flags & PERIPH_NO_RESET)) { | 1737 | if (!(c->flags & PERIPH_NO_RESET)) { |
1524 | if (assert) { | 1738 | if (assert) { |
@@ -1537,42 +1751,40 @@ static void tegra30_periph_clk_reset(struct clk *c, bool assert) | |||
1537 | } | 1751 | } |
1538 | } | 1752 | } |
1539 | 1753 | ||
1540 | static int tegra30_periph_clk_set_parent(struct clk *c, struct clk *p) | 1754 | static int tegra30_periph_clk_set_parent(struct clk_hw *hw, u8 index) |
1541 | { | 1755 | { |
1756 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1542 | u32 val; | 1757 | u32 val; |
1543 | const struct clk_mux_sel *sel; | ||
1544 | pr_debug("%s: %s %s\n", __func__, c->name, p->name); | ||
1545 | 1758 | ||
1546 | if (!(c->flags & MUX)) | 1759 | if (!(c->flags & MUX)) |
1547 | return (p == c->parent) ? 0 : (-EINVAL); | 1760 | return (index == 0) ? 0 : (-EINVAL); |
1548 | 1761 | ||
1549 | for (sel = c->inputs; sel->input != NULL; sel++) { | 1762 | val = clk_readl(c->reg); |
1550 | if (sel->input == p) { | 1763 | val &= ~periph_clk_source_mask(c); |
1551 | val = clk_readl(c->reg); | 1764 | val |= (index << periph_clk_source_shift(c)); |
1552 | val &= ~periph_clk_source_mask(c); | 1765 | clk_writel_delay(val, c->reg); |
1553 | val |= (sel->value << periph_clk_source_shift(c)); | 1766 | return 0; |
1554 | 1767 | } | |
1555 | if (c->refcnt) | ||
1556 | clk_enable(p); | ||
1557 | |||
1558 | clk_writel_delay(val, c->reg); | ||
1559 | 1768 | ||
1560 | if (c->refcnt && c->parent) | 1769 | static u8 tegra30_periph_clk_get_parent(struct clk_hw *hw) |
1561 | clk_disable(c->parent); | 1770 | { |
1771 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1772 | u32 val = clk_readl(c->reg); | ||
1773 | int source = (val & periph_clk_source_mask(c)) >> | ||
1774 | periph_clk_source_shift(c); | ||
1562 | 1775 | ||
1563 | clk_reparent(c, p); | 1776 | if (!(c->flags & MUX)) |
1564 | return 0; | 1777 | return 0; |
1565 | } | ||
1566 | } | ||
1567 | 1778 | ||
1568 | return -EINVAL; | 1779 | return source; |
1569 | } | 1780 | } |
1570 | 1781 | ||
1571 | static int tegra30_periph_clk_set_rate(struct clk *c, unsigned long rate) | 1782 | static int tegra30_periph_clk_set_rate(struct clk_hw *hw, unsigned long rate, |
1783 | unsigned long parent_rate) | ||
1572 | { | 1784 | { |
1785 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1573 | u32 val; | 1786 | u32 val; |
1574 | int divider; | 1787 | int divider; |
1575 | unsigned long parent_rate = clk_get_rate(c->parent); | ||
1576 | 1788 | ||
1577 | if (c->flags & DIV_U71) { | 1789 | if (c->flags & DIV_U71) { |
1578 | divider = clk_div71_get_divider( | 1790 | divider = clk_div71_get_divider( |
@@ -1611,12 +1823,15 @@ static int tegra30_periph_clk_set_rate(struct clk *c, unsigned long rate) | |||
1611 | return -EINVAL; | 1823 | return -EINVAL; |
1612 | } | 1824 | } |
1613 | 1825 | ||
1614 | static long tegra30_periph_clk_round_rate(struct clk *c, | 1826 | static long tegra30_periph_clk_round_rate(struct clk_hw *hw, unsigned long rate, |
1615 | unsigned long rate) | 1827 | unsigned long *prate) |
1616 | { | 1828 | { |
1829 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1830 | unsigned long parent_rate = __clk_get_rate(__clk_get_parent(hw->clk)); | ||
1617 | int divider; | 1831 | int divider; |
1618 | unsigned long parent_rate = clk_get_rate(c->parent); | 1832 | |
1619 | pr_debug("%s: %s %lu\n", __func__, c->name, rate); | 1833 | if (prate) |
1834 | parent_rate = *prate; | ||
1620 | 1835 | ||
1621 | if (c->flags & DIV_U71) { | 1836 | if (c->flags & DIV_U71) { |
1622 | divider = clk_div71_get_divider( | 1837 | divider = clk_div71_get_divider( |
@@ -1634,21 +1849,85 @@ static long tegra30_periph_clk_round_rate(struct clk *c, | |||
1634 | return -EINVAL; | 1849 | return -EINVAL; |
1635 | } | 1850 | } |
1636 | 1851 | ||
1637 | static struct clk_ops tegra_periph_clk_ops = { | 1852 | static unsigned long tegra30_periph_clk_recalc_rate(struct clk_hw *hw, |
1638 | .init = &tegra30_periph_clk_init, | 1853 | unsigned long parent_rate) |
1854 | { | ||
1855 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1856 | u64 rate = parent_rate; | ||
1857 | u32 val = clk_readl(c->reg); | ||
1858 | |||
1859 | if (c->flags & DIV_U71) { | ||
1860 | u32 divu71 = val & PERIPH_CLK_SOURCE_DIVU71_MASK; | ||
1861 | if ((c->flags & DIV_U71_UART) && | ||
1862 | (!(val & PERIPH_CLK_UART_DIV_ENB))) { | ||
1863 | divu71 = 0; | ||
1864 | } | ||
1865 | if (c->flags & DIV_U71_IDLE) { | ||
1866 | val &= ~(PERIPH_CLK_SOURCE_DIVU71_MASK << | ||
1867 | PERIPH_CLK_SOURCE_DIVIDLE_SHIFT); | ||
1868 | val |= (PERIPH_CLK_SOURCE_DIVIDLE_VAL << | ||
1869 | PERIPH_CLK_SOURCE_DIVIDLE_SHIFT); | ||
1870 | clk_writel(val, c->reg); | ||
1871 | } | ||
1872 | c->div = divu71 + 2; | ||
1873 | c->mul = 2; | ||
1874 | } else if (c->flags & DIV_U16) { | ||
1875 | u32 divu16 = val & PERIPH_CLK_SOURCE_DIVU16_MASK; | ||
1876 | c->div = divu16 + 1; | ||
1877 | c->mul = 1; | ||
1878 | } else { | ||
1879 | c->div = 1; | ||
1880 | c->mul = 1; | ||
1881 | } | ||
1882 | |||
1883 | if (c->mul != 0 && c->div != 0) { | ||
1884 | rate *= c->mul; | ||
1885 | rate += c->div - 1; /* round up */ | ||
1886 | do_div(rate, c->div); | ||
1887 | } | ||
1888 | return rate; | ||
1889 | } | ||
1890 | |||
1891 | struct clk_ops tegra30_periph_clk_ops = { | ||
1892 | .is_enabled = tegra30_periph_clk_is_enabled, | ||
1893 | .enable = tegra30_periph_clk_enable, | ||
1894 | .disable = tegra30_periph_clk_disable, | ||
1895 | .set_parent = tegra30_periph_clk_set_parent, | ||
1896 | .get_parent = tegra30_periph_clk_get_parent, | ||
1897 | .set_rate = tegra30_periph_clk_set_rate, | ||
1898 | .round_rate = tegra30_periph_clk_round_rate, | ||
1899 | .recalc_rate = tegra30_periph_clk_recalc_rate, | ||
1900 | }; | ||
1901 | |||
1902 | static int tegra30_dsib_clk_set_parent(struct clk_hw *hw, u8 index) | ||
1903 | { | ||
1904 | struct clk *d = clk_get_sys(NULL, "pll_d"); | ||
1905 | /* The DSIB parent selection bit is in PLLD base | ||
1906 | register - can not do direct r-m-w, must be | ||
1907 | protected by PLLD lock */ | ||
1908 | tegra_clk_cfg_ex( | ||
1909 | d, TEGRA_CLK_PLLD_MIPI_MUX_SEL, index); | ||
1910 | |||
1911 | return 0; | ||
1912 | } | ||
1913 | |||
1914 | struct clk_ops tegra30_dsib_clk_ops = { | ||
1915 | .is_enabled = tegra30_periph_clk_is_enabled, | ||
1639 | .enable = &tegra30_periph_clk_enable, | 1916 | .enable = &tegra30_periph_clk_enable, |
1640 | .disable = &tegra30_periph_clk_disable, | 1917 | .disable = &tegra30_periph_clk_disable, |
1641 | .set_parent = &tegra30_periph_clk_set_parent, | 1918 | .set_parent = &tegra30_dsib_clk_set_parent, |
1919 | .get_parent = &tegra30_periph_clk_get_parent, | ||
1642 | .set_rate = &tegra30_periph_clk_set_rate, | 1920 | .set_rate = &tegra30_periph_clk_set_rate, |
1643 | .round_rate = &tegra30_periph_clk_round_rate, | 1921 | .round_rate = &tegra30_periph_clk_round_rate, |
1644 | .reset = &tegra30_periph_clk_reset, | 1922 | .recalc_rate = &tegra30_periph_clk_recalc_rate, |
1645 | }; | 1923 | }; |
1646 | 1924 | ||
1647 | |||
1648 | /* Periph extended clock configuration ops */ | 1925 | /* Periph extended clock configuration ops */ |
1649 | static int | 1926 | int tegra30_vi_clk_cfg_ex(struct clk_hw *hw, |
1650 | tegra30_vi_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting) | 1927 | enum tegra_clk_ex_param p, u32 setting) |
1651 | { | 1928 | { |
1929 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1930 | |||
1652 | if (p == TEGRA_CLK_VI_INP_SEL) { | 1931 | if (p == TEGRA_CLK_VI_INP_SEL) { |
1653 | u32 val = clk_readl(c->reg); | 1932 | u32 val = clk_readl(c->reg); |
1654 | val &= ~PERIPH_CLK_VI_SEL_EX_MASK; | 1933 | val &= ~PERIPH_CLK_VI_SEL_EX_MASK; |
@@ -1660,20 +1939,11 @@ tegra30_vi_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting) | |||
1660 | return -EINVAL; | 1939 | return -EINVAL; |
1661 | } | 1940 | } |
1662 | 1941 | ||
1663 | static struct clk_ops tegra_vi_clk_ops = { | 1942 | int tegra30_nand_clk_cfg_ex(struct clk_hw *hw, |
1664 | .init = &tegra30_periph_clk_init, | 1943 | enum tegra_clk_ex_param p, u32 setting) |
1665 | .enable = &tegra30_periph_clk_enable, | ||
1666 | .disable = &tegra30_periph_clk_disable, | ||
1667 | .set_parent = &tegra30_periph_clk_set_parent, | ||
1668 | .set_rate = &tegra30_periph_clk_set_rate, | ||
1669 | .round_rate = &tegra30_periph_clk_round_rate, | ||
1670 | .clk_cfg_ex = &tegra30_vi_clk_cfg_ex, | ||
1671 | .reset = &tegra30_periph_clk_reset, | ||
1672 | }; | ||
1673 | |||
1674 | static int | ||
1675 | tegra30_nand_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting) | ||
1676 | { | 1944 | { |
1945 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1946 | |||
1677 | if (p == TEGRA_CLK_NAND_PAD_DIV2_ENB) { | 1947 | if (p == TEGRA_CLK_NAND_PAD_DIV2_ENB) { |
1678 | u32 val = clk_readl(c->reg); | 1948 | u32 val = clk_readl(c->reg); |
1679 | if (setting) | 1949 | if (setting) |
@@ -1686,21 +1956,11 @@ tegra30_nand_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting) | |||
1686 | return -EINVAL; | 1956 | return -EINVAL; |
1687 | } | 1957 | } |
1688 | 1958 | ||
1689 | static struct clk_ops tegra_nand_clk_ops = { | 1959 | int tegra30_dtv_clk_cfg_ex(struct clk_hw *hw, |
1690 | .init = &tegra30_periph_clk_init, | 1960 | enum tegra_clk_ex_param p, u32 setting) |
1691 | .enable = &tegra30_periph_clk_enable, | ||
1692 | .disable = &tegra30_periph_clk_disable, | ||
1693 | .set_parent = &tegra30_periph_clk_set_parent, | ||
1694 | .set_rate = &tegra30_periph_clk_set_rate, | ||
1695 | .round_rate = &tegra30_periph_clk_round_rate, | ||
1696 | .clk_cfg_ex = &tegra30_nand_clk_cfg_ex, | ||
1697 | .reset = &tegra30_periph_clk_reset, | ||
1698 | }; | ||
1699 | |||
1700 | |||
1701 | static int | ||
1702 | tegra30_dtv_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting) | ||
1703 | { | 1961 | { |
1962 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1963 | |||
1704 | if (p == TEGRA_CLK_DTV_INVERT) { | 1964 | if (p == TEGRA_CLK_DTV_INVERT) { |
1705 | u32 val = clk_readl(c->reg); | 1965 | u32 val = clk_readl(c->reg); |
1706 | if (setting) | 1966 | if (setting) |
@@ -1713,91 +1973,27 @@ tegra30_dtv_clk_cfg_ex(struct clk *c, enum tegra_clk_ex_param p, u32 setting) | |||
1713 | return -EINVAL; | 1973 | return -EINVAL; |
1714 | } | 1974 | } |
1715 | 1975 | ||
1716 | static struct clk_ops tegra_dtv_clk_ops = { | ||
1717 | .init = &tegra30_periph_clk_init, | ||
1718 | .enable = &tegra30_periph_clk_enable, | ||
1719 | .disable = &tegra30_periph_clk_disable, | ||
1720 | .set_parent = &tegra30_periph_clk_set_parent, | ||
1721 | .set_rate = &tegra30_periph_clk_set_rate, | ||
1722 | .round_rate = &tegra30_periph_clk_round_rate, | ||
1723 | .clk_cfg_ex = &tegra30_dtv_clk_cfg_ex, | ||
1724 | .reset = &tegra30_periph_clk_reset, | ||
1725 | }; | ||
1726 | |||
1727 | static int tegra30_dsib_clk_set_parent(struct clk *c, struct clk *p) | ||
1728 | { | ||
1729 | const struct clk_mux_sel *sel; | ||
1730 | struct clk *d = tegra_get_clock_by_name("pll_d"); | ||
1731 | |||
1732 | pr_debug("%s: %s %s\n", __func__, c->name, p->name); | ||
1733 | |||
1734 | for (sel = c->inputs; sel->input != NULL; sel++) { | ||
1735 | if (sel->input == p) { | ||
1736 | if (c->refcnt) | ||
1737 | clk_enable(p); | ||
1738 | |||
1739 | /* The DSIB parent selection bit is in PLLD base | ||
1740 | register - can not do direct r-m-w, must be | ||
1741 | protected by PLLD lock */ | ||
1742 | tegra_clk_cfg_ex( | ||
1743 | d, TEGRA_CLK_PLLD_MIPI_MUX_SEL, sel->value); | ||
1744 | |||
1745 | if (c->refcnt && c->parent) | ||
1746 | clk_disable(c->parent); | ||
1747 | |||
1748 | clk_reparent(c, p); | ||
1749 | return 0; | ||
1750 | } | ||
1751 | } | ||
1752 | |||
1753 | return -EINVAL; | ||
1754 | } | ||
1755 | |||
1756 | static struct clk_ops tegra_dsib_clk_ops = { | ||
1757 | .init = &tegra30_periph_clk_init, | ||
1758 | .enable = &tegra30_periph_clk_enable, | ||
1759 | .disable = &tegra30_periph_clk_disable, | ||
1760 | .set_parent = &tegra30_dsib_clk_set_parent, | ||
1761 | .set_rate = &tegra30_periph_clk_set_rate, | ||
1762 | .round_rate = &tegra30_periph_clk_round_rate, | ||
1763 | .reset = &tegra30_periph_clk_reset, | ||
1764 | }; | ||
1765 | |||
1766 | /* pciex clock support only reset function */ | ||
1767 | static struct clk_ops tegra_pciex_clk_ops = { | ||
1768 | .reset = tegra30_periph_clk_reset, | ||
1769 | }; | ||
1770 | |||
1771 | /* Output clock ops */ | 1976 | /* Output clock ops */ |
1772 | 1977 | ||
1773 | static DEFINE_SPINLOCK(clk_out_lock); | 1978 | static DEFINE_SPINLOCK(clk_out_lock); |
1774 | 1979 | ||
1775 | static void tegra30_clk_out_init(struct clk *c) | 1980 | static int tegra30_clk_out_is_enabled(struct clk_hw *hw) |
1776 | { | 1981 | { |
1777 | const struct clk_mux_sel *mux = 0; | 1982 | struct clk_tegra *c = to_clk_tegra(hw); |
1778 | const struct clk_mux_sel *sel; | ||
1779 | u32 val = pmc_readl(c->reg); | 1983 | u32 val = pmc_readl(c->reg); |
1780 | 1984 | ||
1781 | c->state = (val & (0x1 << c->u.periph.clk_num)) ? ON : OFF; | 1985 | c->state = (val & (0x1 << c->u.periph.clk_num)) ? ON : OFF; |
1782 | c->mul = 1; | 1986 | c->mul = 1; |
1783 | c->div = 1; | 1987 | c->div = 1; |
1784 | 1988 | return c->state; | |
1785 | for (sel = c->inputs; sel->input != NULL; sel++) { | ||
1786 | if (((val & periph_clk_source_mask(c)) >> | ||
1787 | periph_clk_source_shift(c)) == sel->value) | ||
1788 | mux = sel; | ||
1789 | } | ||
1790 | BUG_ON(!mux); | ||
1791 | c->parent = mux->input; | ||
1792 | } | 1989 | } |
1793 | 1990 | ||
1794 | static int tegra30_clk_out_enable(struct clk *c) | 1991 | static int tegra30_clk_out_enable(struct clk_hw *hw) |
1795 | { | 1992 | { |
1993 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1796 | u32 val; | 1994 | u32 val; |
1797 | unsigned long flags; | 1995 | unsigned long flags; |
1798 | 1996 | ||
1799 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
1800 | |||
1801 | spin_lock_irqsave(&clk_out_lock, flags); | 1997 | spin_lock_irqsave(&clk_out_lock, flags); |
1802 | val = pmc_readl(c->reg); | 1998 | val = pmc_readl(c->reg); |
1803 | val |= (0x1 << c->u.periph.clk_num); | 1999 | val |= (0x1 << c->u.periph.clk_num); |
@@ -1807,13 +2003,12 @@ static int tegra30_clk_out_enable(struct clk *c) | |||
1807 | return 0; | 2003 | return 0; |
1808 | } | 2004 | } |
1809 | 2005 | ||
1810 | static void tegra30_clk_out_disable(struct clk *c) | 2006 | static void tegra30_clk_out_disable(struct clk_hw *hw) |
1811 | { | 2007 | { |
2008 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1812 | u32 val; | 2009 | u32 val; |
1813 | unsigned long flags; | 2010 | unsigned long flags; |
1814 | 2011 | ||
1815 | pr_debug("%s on clock %s\n", __func__, c->name); | ||
1816 | |||
1817 | spin_lock_irqsave(&clk_out_lock, flags); | 2012 | spin_lock_irqsave(&clk_out_lock, flags); |
1818 | val = pmc_readl(c->reg); | 2013 | val = pmc_readl(c->reg); |
1819 | val &= ~(0x1 << c->u.periph.clk_num); | 2014 | val &= ~(0x1 << c->u.periph.clk_num); |
@@ -1821,59 +2016,59 @@ static void tegra30_clk_out_disable(struct clk *c) | |||
1821 | spin_unlock_irqrestore(&clk_out_lock, flags); | 2016 | spin_unlock_irqrestore(&clk_out_lock, flags); |
1822 | } | 2017 | } |
1823 | 2018 | ||
1824 | static int tegra30_clk_out_set_parent(struct clk *c, struct clk *p) | 2019 | static int tegra30_clk_out_set_parent(struct clk_hw *hw, u8 index) |
1825 | { | 2020 | { |
2021 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1826 | u32 val; | 2022 | u32 val; |
1827 | unsigned long flags; | 2023 | unsigned long flags; |
1828 | const struct clk_mux_sel *sel; | ||
1829 | 2024 | ||
1830 | pr_debug("%s: %s %s\n", __func__, c->name, p->name); | 2025 | spin_lock_irqsave(&clk_out_lock, flags); |
1831 | 2026 | val = pmc_readl(c->reg); | |
1832 | for (sel = c->inputs; sel->input != NULL; sel++) { | 2027 | val &= ~periph_clk_source_mask(c); |
1833 | if (sel->input == p) { | 2028 | val |= (index << periph_clk_source_shift(c)); |
1834 | if (c->refcnt) | 2029 | pmc_writel(val, c->reg); |
1835 | clk_enable(p); | 2030 | spin_unlock_irqrestore(&clk_out_lock, flags); |
1836 | 2031 | ||
1837 | spin_lock_irqsave(&clk_out_lock, flags); | 2032 | return 0; |
1838 | val = pmc_readl(c->reg); | 2033 | } |
1839 | val &= ~periph_clk_source_mask(c); | ||
1840 | val |= (sel->value << periph_clk_source_shift(c)); | ||
1841 | pmc_writel(val, c->reg); | ||
1842 | spin_unlock_irqrestore(&clk_out_lock, flags); | ||
1843 | 2034 | ||
1844 | if (c->refcnt && c->parent) | 2035 | static u8 tegra30_clk_out_get_parent(struct clk_hw *hw) |
1845 | clk_disable(c->parent); | 2036 | { |
2037 | struct clk_tegra *c = to_clk_tegra(hw); | ||
2038 | u32 val = pmc_readl(c->reg); | ||
2039 | int source; | ||
1846 | 2040 | ||
1847 | clk_reparent(c, p); | 2041 | source = (val & periph_clk_source_mask(c)) >> |
1848 | return 0; | 2042 | periph_clk_source_shift(c); |
1849 | } | 2043 | return source; |
1850 | } | ||
1851 | return -EINVAL; | ||
1852 | } | 2044 | } |
1853 | 2045 | ||
1854 | static struct clk_ops tegra_clk_out_ops = { | 2046 | struct clk_ops tegra_clk_out_ops = { |
1855 | .init = &tegra30_clk_out_init, | 2047 | .is_enabled = tegra30_clk_out_is_enabled, |
1856 | .enable = &tegra30_clk_out_enable, | 2048 | .enable = tegra30_clk_out_enable, |
1857 | .disable = &tegra30_clk_out_disable, | 2049 | .disable = tegra30_clk_out_disable, |
1858 | .set_parent = &tegra30_clk_out_set_parent, | 2050 | .set_parent = tegra30_clk_out_set_parent, |
2051 | .get_parent = tegra30_clk_out_get_parent, | ||
2052 | .recalc_rate = tegra30_clk_fixed_recalc_rate, | ||
1859 | }; | 2053 | }; |
1860 | 2054 | ||
1861 | |||
1862 | /* Clock doubler ops */ | 2055 | /* Clock doubler ops */ |
1863 | static void tegra30_clk_double_init(struct clk *c) | 2056 | static int tegra30_clk_double_is_enabled(struct clk_hw *hw) |
1864 | { | 2057 | { |
1865 | u32 val = clk_readl(c->reg); | 2058 | struct clk_tegra *c = to_clk_tegra(hw); |
1866 | c->mul = val & (0x1 << c->reg_shift) ? 1 : 2; | 2059 | |
1867 | c->div = 1; | ||
1868 | c->state = ON; | 2060 | c->state = ON; |
1869 | if (!(clk_readl(PERIPH_CLK_TO_ENB_REG(c)) & PERIPH_CLK_TO_BIT(c))) | 2061 | if (!(clk_readl(PERIPH_CLK_TO_ENB_REG(c)) & PERIPH_CLK_TO_BIT(c))) |
1870 | c->state = OFF; | 2062 | c->state = OFF; |
2063 | return c->state; | ||
1871 | }; | 2064 | }; |
1872 | 2065 | ||
1873 | static int tegra30_clk_double_set_rate(struct clk *c, unsigned long rate) | 2066 | static int tegra30_clk_double_set_rate(struct clk_hw *hw, unsigned long rate, |
2067 | unsigned long parent_rate) | ||
1874 | { | 2068 | { |
2069 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1875 | u32 val; | 2070 | u32 val; |
1876 | unsigned long parent_rate = clk_get_rate(c->parent); | 2071 | |
1877 | if (rate == parent_rate) { | 2072 | if (rate == parent_rate) { |
1878 | val = clk_readl(c->reg) | (0x1 << c->reg_shift); | 2073 | val = clk_readl(c->reg) | (0x1 << c->reg_shift); |
1879 | clk_writel(val, c->reg); | 2074 | clk_writel(val, c->reg); |
@@ -1890,1215 +2085,139 @@ static int tegra30_clk_double_set_rate(struct clk *c, unsigned long rate) | |||
1890 | return -EINVAL; | 2085 | return -EINVAL; |
1891 | } | 2086 | } |
1892 | 2087 | ||
1893 | static struct clk_ops tegra_clk_double_ops = { | 2088 | static unsigned long tegra30_clk_double_recalc_rate(struct clk_hw *hw, |
1894 | .init = &tegra30_clk_double_init, | 2089 | unsigned long parent_rate) |
1895 | .enable = &tegra30_periph_clk_enable, | 2090 | { |
1896 | .disable = &tegra30_periph_clk_disable, | 2091 | struct clk_tegra *c = to_clk_tegra(hw); |
1897 | .set_rate = &tegra30_clk_double_set_rate, | 2092 | u64 rate = parent_rate; |
1898 | }; | ||
1899 | 2093 | ||
1900 | /* Audio sync clock ops */ | 2094 | u32 val = clk_readl(c->reg); |
1901 | static int tegra30_sync_source_set_rate(struct clk *c, unsigned long rate) | 2095 | c->mul = val & (0x1 << c->reg_shift) ? 1 : 2; |
2096 | c->div = 1; | ||
2097 | |||
2098 | if (c->mul != 0 && c->div != 0) { | ||
2099 | rate *= c->mul; | ||
2100 | rate += c->div - 1; /* round up */ | ||
2101 | do_div(rate, c->div); | ||
2102 | } | ||
2103 | |||
2104 | return rate; | ||
2105 | } | ||
2106 | |||
2107 | static long tegra30_clk_double_round_rate(struct clk_hw *hw, unsigned long rate, | ||
2108 | unsigned long *prate) | ||
1902 | { | 2109 | { |
1903 | c->rate = rate; | 2110 | unsigned long output_rate = *prate; |
1904 | return 0; | 2111 | |
2112 | do_div(output_rate, 2); | ||
2113 | return output_rate; | ||
1905 | } | 2114 | } |
1906 | 2115 | ||
1907 | static struct clk_ops tegra_sync_source_ops = { | 2116 | struct clk_ops tegra30_clk_double_ops = { |
1908 | .set_rate = &tegra30_sync_source_set_rate, | 2117 | .is_enabled = tegra30_clk_double_is_enabled, |
2118 | .enable = tegra30_periph_clk_enable, | ||
2119 | .disable = tegra30_periph_clk_disable, | ||
2120 | .recalc_rate = tegra30_clk_double_recalc_rate, | ||
2121 | .round_rate = tegra30_clk_double_round_rate, | ||
2122 | .set_rate = tegra30_clk_double_set_rate, | ||
1909 | }; | 2123 | }; |
1910 | 2124 | ||
1911 | static void tegra30_audio_sync_clk_init(struct clk *c) | 2125 | /* Audio sync clock ops */ |
2126 | struct clk_ops tegra_sync_source_ops = { | ||
2127 | .recalc_rate = tegra30_clk_fixed_recalc_rate, | ||
2128 | }; | ||
2129 | |||
2130 | static int tegra30_audio_sync_clk_is_enabled(struct clk_hw *hw) | ||
1912 | { | 2131 | { |
1913 | int source; | 2132 | struct clk_tegra *c = to_clk_tegra(hw); |
1914 | const struct clk_mux_sel *sel; | ||
1915 | u32 val = clk_readl(c->reg); | 2133 | u32 val = clk_readl(c->reg); |
1916 | c->state = (val & AUDIO_SYNC_DISABLE_BIT) ? OFF : ON; | 2134 | c->state = (val & AUDIO_SYNC_DISABLE_BIT) ? OFF : ON; |
1917 | source = val & AUDIO_SYNC_SOURCE_MASK; | 2135 | return c->state; |
1918 | for (sel = c->inputs; sel->input != NULL; sel++) | ||
1919 | if (sel->value == source) | ||
1920 | break; | ||
1921 | BUG_ON(sel->input == NULL); | ||
1922 | c->parent = sel->input; | ||
1923 | } | 2136 | } |
1924 | 2137 | ||
1925 | static int tegra30_audio_sync_clk_enable(struct clk *c) | 2138 | static int tegra30_audio_sync_clk_enable(struct clk_hw *hw) |
1926 | { | 2139 | { |
2140 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1927 | u32 val = clk_readl(c->reg); | 2141 | u32 val = clk_readl(c->reg); |
1928 | clk_writel((val & (~AUDIO_SYNC_DISABLE_BIT)), c->reg); | 2142 | clk_writel((val & (~AUDIO_SYNC_DISABLE_BIT)), c->reg); |
1929 | return 0; | 2143 | return 0; |
1930 | } | 2144 | } |
1931 | 2145 | ||
1932 | static void tegra30_audio_sync_clk_disable(struct clk *c) | 2146 | static void tegra30_audio_sync_clk_disable(struct clk_hw *hw) |
1933 | { | 2147 | { |
2148 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1934 | u32 val = clk_readl(c->reg); | 2149 | u32 val = clk_readl(c->reg); |
1935 | clk_writel((val | AUDIO_SYNC_DISABLE_BIT), c->reg); | 2150 | clk_writel((val | AUDIO_SYNC_DISABLE_BIT), c->reg); |
1936 | } | 2151 | } |
1937 | 2152 | ||
1938 | static int tegra30_audio_sync_clk_set_parent(struct clk *c, struct clk *p) | 2153 | static int tegra30_audio_sync_clk_set_parent(struct clk_hw *hw, u8 index) |
1939 | { | 2154 | { |
2155 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1940 | u32 val; | 2156 | u32 val; |
1941 | const struct clk_mux_sel *sel; | ||
1942 | for (sel = c->inputs; sel->input != NULL; sel++) { | ||
1943 | if (sel->input == p) { | ||
1944 | val = clk_readl(c->reg); | ||
1945 | val &= ~AUDIO_SYNC_SOURCE_MASK; | ||
1946 | val |= sel->value; | ||
1947 | |||
1948 | if (c->refcnt) | ||
1949 | clk_enable(p); | ||
1950 | 2157 | ||
1951 | clk_writel(val, c->reg); | 2158 | val = clk_readl(c->reg); |
2159 | val &= ~AUDIO_SYNC_SOURCE_MASK; | ||
2160 | val |= index; | ||
1952 | 2161 | ||
1953 | if (c->refcnt && c->parent) | 2162 | clk_writel(val, c->reg); |
1954 | clk_disable(c->parent); | 2163 | return 0; |
2164 | } | ||
1955 | 2165 | ||
1956 | clk_reparent(c, p); | 2166 | static u8 tegra30_audio_sync_clk_get_parent(struct clk_hw *hw) |
1957 | return 0; | 2167 | { |
1958 | } | 2168 | struct clk_tegra *c = to_clk_tegra(hw); |
1959 | } | 2169 | u32 val = clk_readl(c->reg); |
2170 | int source; | ||
1960 | 2171 | ||
1961 | return -EINVAL; | 2172 | source = val & AUDIO_SYNC_SOURCE_MASK; |
2173 | return source; | ||
1962 | } | 2174 | } |
1963 | 2175 | ||
1964 | static struct clk_ops tegra_audio_sync_clk_ops = { | 2176 | struct clk_ops tegra30_audio_sync_clk_ops = { |
1965 | .init = tegra30_audio_sync_clk_init, | 2177 | .is_enabled = tegra30_audio_sync_clk_is_enabled, |
1966 | .enable = tegra30_audio_sync_clk_enable, | 2178 | .enable = tegra30_audio_sync_clk_enable, |
1967 | .disable = tegra30_audio_sync_clk_disable, | 2179 | .disable = tegra30_audio_sync_clk_disable, |
1968 | .set_parent = tegra30_audio_sync_clk_set_parent, | 2180 | .set_parent = tegra30_audio_sync_clk_set_parent, |
2181 | .get_parent = tegra30_audio_sync_clk_get_parent, | ||
2182 | .recalc_rate = tegra30_clk_fixed_recalc_rate, | ||
1969 | }; | 2183 | }; |
1970 | 2184 | ||
1971 | /* cml0 (pcie), and cml1 (sata) clock ops */ | 2185 | /* cml0 (pcie), and cml1 (sata) clock ops */ |
1972 | static void tegra30_cml_clk_init(struct clk *c) | 2186 | static int tegra30_cml_clk_is_enabled(struct clk_hw *hw) |
1973 | { | 2187 | { |
2188 | struct clk_tegra *c = to_clk_tegra(hw); | ||
1974 | u32 val = clk_readl(c->reg); | 2189 | u32 val = clk_readl(c->reg); |
1975 | c->state = val & (0x1 << c->u.periph.clk_num) ? ON : OFF; | 2190 | c->state = val & (0x1 << c->u.periph.clk_num) ? ON : OFF; |
2191 | return c->state; | ||
1976 | } | 2192 | } |
1977 | 2193 | ||
1978 | static int tegra30_cml_clk_enable(struct clk *c) | 2194 | static int tegra30_cml_clk_enable(struct clk_hw *hw) |
1979 | { | 2195 | { |
2196 | struct clk_tegra *c = to_clk_tegra(hw); | ||
2197 | |||
1980 | u32 val = clk_readl(c->reg); | 2198 | u32 val = clk_readl(c->reg); |
1981 | val |= (0x1 << c->u.periph.clk_num); | 2199 | val |= (0x1 << c->u.periph.clk_num); |
1982 | clk_writel(val, c->reg); | 2200 | clk_writel(val, c->reg); |
2201 | |||
1983 | return 0; | 2202 | return 0; |
1984 | } | 2203 | } |
1985 | 2204 | ||
1986 | static void tegra30_cml_clk_disable(struct clk *c) | 2205 | static void tegra30_cml_clk_disable(struct clk_hw *hw) |
1987 | { | 2206 | { |
2207 | struct clk_tegra *c = to_clk_tegra(hw); | ||
2208 | |||
1988 | u32 val = clk_readl(c->reg); | 2209 | u32 val = clk_readl(c->reg); |
1989 | val &= ~(0x1 << c->u.periph.clk_num); | 2210 | val &= ~(0x1 << c->u.periph.clk_num); |
1990 | clk_writel(val, c->reg); | 2211 | clk_writel(val, c->reg); |
1991 | } | 2212 | } |
1992 | 2213 | ||
1993 | static struct clk_ops tegra_cml_clk_ops = { | 2214 | struct clk_ops tegra_cml_clk_ops = { |
1994 | .init = &tegra30_cml_clk_init, | 2215 | .is_enabled = tegra30_cml_clk_is_enabled, |
1995 | .enable = &tegra30_cml_clk_enable, | 2216 | .enable = tegra30_cml_clk_enable, |
1996 | .disable = &tegra30_cml_clk_disable, | 2217 | .disable = tegra30_cml_clk_disable, |
1997 | }; | 2218 | .recalc_rate = tegra30_clk_fixed_recalc_rate, |
1998 | |||
1999 | /* Clock definitions */ | ||
2000 | static struct clk tegra_clk_32k = { | ||
2001 | .name = "clk_32k", | ||
2002 | .rate = 32768, | ||
2003 | .ops = NULL, | ||
2004 | .max_rate = 32768, | ||
2005 | }; | ||
2006 | |||
2007 | static struct clk tegra_clk_m = { | ||
2008 | .name = "clk_m", | ||
2009 | .flags = ENABLE_ON_INIT, | ||
2010 | .ops = &tegra_clk_m_ops, | ||
2011 | .reg = 0x1fc, | ||
2012 | .reg_shift = 28, | ||
2013 | .max_rate = 48000000, | ||
2014 | }; | ||
2015 | |||
2016 | static struct clk tegra_clk_m_div2 = { | ||
2017 | .name = "clk_m_div2", | ||
2018 | .ops = &tegra_clk_m_div_ops, | ||
2019 | .parent = &tegra_clk_m, | ||
2020 | .mul = 1, | ||
2021 | .div = 2, | ||
2022 | .state = ON, | ||
2023 | .max_rate = 24000000, | ||
2024 | }; | ||
2025 | |||
2026 | static struct clk tegra_clk_m_div4 = { | ||
2027 | .name = "clk_m_div4", | ||
2028 | .ops = &tegra_clk_m_div_ops, | ||
2029 | .parent = &tegra_clk_m, | ||
2030 | .mul = 1, | ||
2031 | .div = 4, | ||
2032 | .state = ON, | ||
2033 | .max_rate = 12000000, | ||
2034 | }; | ||
2035 | |||
2036 | static struct clk tegra_pll_ref = { | ||
2037 | .name = "pll_ref", | ||
2038 | .flags = ENABLE_ON_INIT, | ||
2039 | .ops = &tegra_pll_ref_ops, | ||
2040 | .parent = &tegra_clk_m, | ||
2041 | .max_rate = 26000000, | ||
2042 | }; | ||
2043 | |||
2044 | static struct clk_pll_freq_table tegra_pll_c_freq_table[] = { | ||
2045 | { 12000000, 1040000000, 520, 6, 1, 8}, | ||
2046 | { 13000000, 1040000000, 480, 6, 1, 8}, | ||
2047 | { 16800000, 1040000000, 495, 8, 1, 8}, /* actual: 1039.5 MHz */ | ||
2048 | { 19200000, 1040000000, 325, 6, 1, 6}, | ||
2049 | { 26000000, 1040000000, 520, 13, 1, 8}, | ||
2050 | |||
2051 | { 12000000, 832000000, 416, 6, 1, 8}, | ||
2052 | { 13000000, 832000000, 832, 13, 1, 8}, | ||
2053 | { 16800000, 832000000, 396, 8, 1, 8}, /* actual: 831.6 MHz */ | ||
2054 | { 19200000, 832000000, 260, 6, 1, 8}, | ||
2055 | { 26000000, 832000000, 416, 13, 1, 8}, | ||
2056 | |||
2057 | { 12000000, 624000000, 624, 12, 1, 8}, | ||
2058 | { 13000000, 624000000, 624, 13, 1, 8}, | ||
2059 | { 16800000, 600000000, 520, 14, 1, 8}, | ||
2060 | { 19200000, 624000000, 520, 16, 1, 8}, | ||
2061 | { 26000000, 624000000, 624, 26, 1, 8}, | ||
2062 | |||
2063 | { 12000000, 600000000, 600, 12, 1, 8}, | ||
2064 | { 13000000, 600000000, 600, 13, 1, 8}, | ||
2065 | { 16800000, 600000000, 500, 14, 1, 8}, | ||
2066 | { 19200000, 600000000, 375, 12, 1, 6}, | ||
2067 | { 26000000, 600000000, 600, 26, 1, 8}, | ||
2068 | |||
2069 | { 12000000, 520000000, 520, 12, 1, 8}, | ||
2070 | { 13000000, 520000000, 520, 13, 1, 8}, | ||
2071 | { 16800000, 520000000, 495, 16, 1, 8}, /* actual: 519.75 MHz */ | ||
2072 | { 19200000, 520000000, 325, 12, 1, 6}, | ||
2073 | { 26000000, 520000000, 520, 26, 1, 8}, | ||
2074 | |||
2075 | { 12000000, 416000000, 416, 12, 1, 8}, | ||
2076 | { 13000000, 416000000, 416, 13, 1, 8}, | ||
2077 | { 16800000, 416000000, 396, 16, 1, 8}, /* actual: 415.8 MHz */ | ||
2078 | { 19200000, 416000000, 260, 12, 1, 6}, | ||
2079 | { 26000000, 416000000, 416, 26, 1, 8}, | ||
2080 | { 0, 0, 0, 0, 0, 0 }, | ||
2081 | }; | ||
2082 | |||
2083 | static struct clk tegra_pll_c = { | ||
2084 | .name = "pll_c", | ||
2085 | .flags = PLL_HAS_CPCON, | ||
2086 | .ops = &tegra_pll_ops, | ||
2087 | .reg = 0x80, | ||
2088 | .parent = &tegra_pll_ref, | ||
2089 | .max_rate = 1400000000, | ||
2090 | .u.pll = { | ||
2091 | .input_min = 2000000, | ||
2092 | .input_max = 31000000, | ||
2093 | .cf_min = 1000000, | ||
2094 | .cf_max = 6000000, | ||
2095 | .vco_min = 20000000, | ||
2096 | .vco_max = 1400000000, | ||
2097 | .freq_table = tegra_pll_c_freq_table, | ||
2098 | .lock_delay = 300, | ||
2099 | }, | ||
2100 | }; | ||
2101 | |||
2102 | static struct clk tegra_pll_c_out1 = { | ||
2103 | .name = "pll_c_out1", | ||
2104 | .ops = &tegra_pll_div_ops, | ||
2105 | .flags = DIV_U71, | ||
2106 | .parent = &tegra_pll_c, | ||
2107 | .reg = 0x84, | ||
2108 | .reg_shift = 0, | ||
2109 | .max_rate = 700000000, | ||
2110 | }; | ||
2111 | |||
2112 | static struct clk_pll_freq_table tegra_pll_m_freq_table[] = { | ||
2113 | { 12000000, 666000000, 666, 12, 1, 8}, | ||
2114 | { 13000000, 666000000, 666, 13, 1, 8}, | ||
2115 | { 16800000, 666000000, 555, 14, 1, 8}, | ||
2116 | { 19200000, 666000000, 555, 16, 1, 8}, | ||
2117 | { 26000000, 666000000, 666, 26, 1, 8}, | ||
2118 | { 12000000, 600000000, 600, 12, 1, 8}, | ||
2119 | { 13000000, 600000000, 600, 13, 1, 8}, | ||
2120 | { 16800000, 600000000, 500, 14, 1, 8}, | ||
2121 | { 19200000, 600000000, 375, 12, 1, 6}, | ||
2122 | { 26000000, 600000000, 600, 26, 1, 8}, | ||
2123 | { 0, 0, 0, 0, 0, 0 }, | ||
2124 | }; | ||
2125 | |||
2126 | static struct clk tegra_pll_m = { | ||
2127 | .name = "pll_m", | ||
2128 | .flags = PLL_HAS_CPCON | PLLM, | ||
2129 | .ops = &tegra_pll_ops, | ||
2130 | .reg = 0x90, | ||
2131 | .parent = &tegra_pll_ref, | ||
2132 | .max_rate = 800000000, | ||
2133 | .u.pll = { | ||
2134 | .input_min = 2000000, | ||
2135 | .input_max = 31000000, | ||
2136 | .cf_min = 1000000, | ||
2137 | .cf_max = 6000000, | ||
2138 | .vco_min = 20000000, | ||
2139 | .vco_max = 1200000000, | ||
2140 | .freq_table = tegra_pll_m_freq_table, | ||
2141 | .lock_delay = 300, | ||
2142 | }, | ||
2143 | }; | ||
2144 | |||
2145 | static struct clk tegra_pll_m_out1 = { | ||
2146 | .name = "pll_m_out1", | ||
2147 | .ops = &tegra_pll_div_ops, | ||
2148 | .flags = DIV_U71, | ||
2149 | .parent = &tegra_pll_m, | ||
2150 | .reg = 0x94, | ||
2151 | .reg_shift = 0, | ||
2152 | .max_rate = 600000000, | ||
2153 | }; | ||
2154 | |||
2155 | static struct clk_pll_freq_table tegra_pll_p_freq_table[] = { | ||
2156 | { 12000000, 216000000, 432, 12, 2, 8}, | ||
2157 | { 13000000, 216000000, 432, 13, 2, 8}, | ||
2158 | { 16800000, 216000000, 360, 14, 2, 8}, | ||
2159 | { 19200000, 216000000, 360, 16, 2, 8}, | ||
2160 | { 26000000, 216000000, 432, 26, 2, 8}, | ||
2161 | { 0, 0, 0, 0, 0, 0 }, | ||
2162 | }; | ||
2163 | |||
2164 | static struct clk tegra_pll_p = { | ||
2165 | .name = "pll_p", | ||
2166 | .flags = ENABLE_ON_INIT | PLL_FIXED | PLL_HAS_CPCON, | ||
2167 | .ops = &tegra_pll_ops, | ||
2168 | .reg = 0xa0, | ||
2169 | .parent = &tegra_pll_ref, | ||
2170 | .max_rate = 432000000, | ||
2171 | .u.pll = { | ||
2172 | .input_min = 2000000, | ||
2173 | .input_max = 31000000, | ||
2174 | .cf_min = 1000000, | ||
2175 | .cf_max = 6000000, | ||
2176 | .vco_min = 20000000, | ||
2177 | .vco_max = 1400000000, | ||
2178 | .freq_table = tegra_pll_p_freq_table, | ||
2179 | .lock_delay = 300, | ||
2180 | .fixed_rate = 408000000, | ||
2181 | }, | ||
2182 | }; | ||
2183 | |||
2184 | static struct clk tegra_pll_p_out1 = { | ||
2185 | .name = "pll_p_out1", | ||
2186 | .ops = &tegra_pll_div_ops, | ||
2187 | .flags = ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, | ||
2188 | .parent = &tegra_pll_p, | ||
2189 | .reg = 0xa4, | ||
2190 | .reg_shift = 0, | ||
2191 | .max_rate = 432000000, | ||
2192 | }; | ||
2193 | |||
2194 | static struct clk tegra_pll_p_out2 = { | ||
2195 | .name = "pll_p_out2", | ||
2196 | .ops = &tegra_pll_div_ops, | ||
2197 | .flags = ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, | ||
2198 | .parent = &tegra_pll_p, | ||
2199 | .reg = 0xa4, | ||
2200 | .reg_shift = 16, | ||
2201 | .max_rate = 432000000, | ||
2202 | }; | ||
2203 | |||
2204 | static struct clk tegra_pll_p_out3 = { | ||
2205 | .name = "pll_p_out3", | ||
2206 | .ops = &tegra_pll_div_ops, | ||
2207 | .flags = ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, | ||
2208 | .parent = &tegra_pll_p, | ||
2209 | .reg = 0xa8, | ||
2210 | .reg_shift = 0, | ||
2211 | .max_rate = 432000000, | ||
2212 | }; | ||
2213 | |||
2214 | static struct clk tegra_pll_p_out4 = { | ||
2215 | .name = "pll_p_out4", | ||
2216 | .ops = &tegra_pll_div_ops, | ||
2217 | .flags = ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, | ||
2218 | .parent = &tegra_pll_p, | ||
2219 | .reg = 0xa8, | ||
2220 | .reg_shift = 16, | ||
2221 | .max_rate = 432000000, | ||
2222 | }; | ||
2223 | |||
2224 | static struct clk_pll_freq_table tegra_pll_a_freq_table[] = { | ||
2225 | { 9600000, 564480000, 294, 5, 1, 4}, | ||
2226 | { 9600000, 552960000, 288, 5, 1, 4}, | ||
2227 | { 9600000, 24000000, 5, 2, 1, 1}, | ||
2228 | |||
2229 | { 28800000, 56448000, 49, 25, 1, 1}, | ||
2230 | { 28800000, 73728000, 64, 25, 1, 1}, | ||
2231 | { 28800000, 24000000, 5, 6, 1, 1}, | ||
2232 | { 0, 0, 0, 0, 0, 0 }, | ||
2233 | }; | ||
2234 | |||
2235 | static struct clk tegra_pll_a = { | ||
2236 | .name = "pll_a", | ||
2237 | .flags = PLL_HAS_CPCON, | ||
2238 | .ops = &tegra_pll_ops, | ||
2239 | .reg = 0xb0, | ||
2240 | .parent = &tegra_pll_p_out1, | ||
2241 | .max_rate = 700000000, | ||
2242 | .u.pll = { | ||
2243 | .input_min = 2000000, | ||
2244 | .input_max = 31000000, | ||
2245 | .cf_min = 1000000, | ||
2246 | .cf_max = 6000000, | ||
2247 | .vco_min = 20000000, | ||
2248 | .vco_max = 1400000000, | ||
2249 | .freq_table = tegra_pll_a_freq_table, | ||
2250 | .lock_delay = 300, | ||
2251 | }, | ||
2252 | }; | ||
2253 | |||
2254 | static struct clk tegra_pll_a_out0 = { | ||
2255 | .name = "pll_a_out0", | ||
2256 | .ops = &tegra_pll_div_ops, | ||
2257 | .flags = DIV_U71, | ||
2258 | .parent = &tegra_pll_a, | ||
2259 | .reg = 0xb4, | ||
2260 | .reg_shift = 0, | ||
2261 | .max_rate = 100000000, | ||
2262 | }; | ||
2263 | |||
2264 | static struct clk_pll_freq_table tegra_pll_d_freq_table[] = { | ||
2265 | { 12000000, 216000000, 216, 12, 1, 4}, | ||
2266 | { 13000000, 216000000, 216, 13, 1, 4}, | ||
2267 | { 16800000, 216000000, 180, 14, 1, 4}, | ||
2268 | { 19200000, 216000000, 180, 16, 1, 4}, | ||
2269 | { 26000000, 216000000, 216, 26, 1, 4}, | ||
2270 | |||
2271 | { 12000000, 594000000, 594, 12, 1, 8}, | ||
2272 | { 13000000, 594000000, 594, 13, 1, 8}, | ||
2273 | { 16800000, 594000000, 495, 14, 1, 8}, | ||
2274 | { 19200000, 594000000, 495, 16, 1, 8}, | ||
2275 | { 26000000, 594000000, 594, 26, 1, 8}, | ||
2276 | |||
2277 | { 12000000, 1000000000, 1000, 12, 1, 12}, | ||
2278 | { 13000000, 1000000000, 1000, 13, 1, 12}, | ||
2279 | { 19200000, 1000000000, 625, 12, 1, 8}, | ||
2280 | { 26000000, 1000000000, 1000, 26, 1, 12}, | ||
2281 | |||
2282 | { 0, 0, 0, 0, 0, 0 }, | ||
2283 | }; | ||
2284 | |||
2285 | static struct clk tegra_pll_d = { | ||
2286 | .name = "pll_d", | ||
2287 | .flags = PLL_HAS_CPCON | PLLD, | ||
2288 | .ops = &tegra_plld_ops, | ||
2289 | .reg = 0xd0, | ||
2290 | .parent = &tegra_pll_ref, | ||
2291 | .max_rate = 1000000000, | ||
2292 | .u.pll = { | ||
2293 | .input_min = 2000000, | ||
2294 | .input_max = 40000000, | ||
2295 | .cf_min = 1000000, | ||
2296 | .cf_max = 6000000, | ||
2297 | .vco_min = 40000000, | ||
2298 | .vco_max = 1000000000, | ||
2299 | .freq_table = tegra_pll_d_freq_table, | ||
2300 | .lock_delay = 1000, | ||
2301 | }, | ||
2302 | }; | ||
2303 | |||
2304 | static struct clk tegra_pll_d_out0 = { | ||
2305 | .name = "pll_d_out0", | ||
2306 | .ops = &tegra_pll_div_ops, | ||
2307 | .flags = DIV_2 | PLLD, | ||
2308 | .parent = &tegra_pll_d, | ||
2309 | .max_rate = 500000000, | ||
2310 | }; | ||
2311 | |||
2312 | static struct clk tegra_pll_d2 = { | ||
2313 | .name = "pll_d2", | ||
2314 | .flags = PLL_HAS_CPCON | PLL_ALT_MISC_REG | PLLD, | ||
2315 | .ops = &tegra_plld_ops, | ||
2316 | .reg = 0x4b8, | ||
2317 | .parent = &tegra_pll_ref, | ||
2318 | .max_rate = 1000000000, | ||
2319 | .u.pll = { | ||
2320 | .input_min = 2000000, | ||
2321 | .input_max = 40000000, | ||
2322 | .cf_min = 1000000, | ||
2323 | .cf_max = 6000000, | ||
2324 | .vco_min = 40000000, | ||
2325 | .vco_max = 1000000000, | ||
2326 | .freq_table = tegra_pll_d_freq_table, | ||
2327 | .lock_delay = 1000, | ||
2328 | }, | ||
2329 | }; | ||
2330 | |||
2331 | static struct clk tegra_pll_d2_out0 = { | ||
2332 | .name = "pll_d2_out0", | ||
2333 | .ops = &tegra_pll_div_ops, | ||
2334 | .flags = DIV_2 | PLLD, | ||
2335 | .parent = &tegra_pll_d2, | ||
2336 | .max_rate = 500000000, | ||
2337 | }; | ||
2338 | |||
2339 | static struct clk_pll_freq_table tegra_pll_u_freq_table[] = { | ||
2340 | { 12000000, 480000000, 960, 12, 2, 12}, | ||
2341 | { 13000000, 480000000, 960, 13, 2, 12}, | ||
2342 | { 16800000, 480000000, 400, 7, 2, 5}, | ||
2343 | { 19200000, 480000000, 200, 4, 2, 3}, | ||
2344 | { 26000000, 480000000, 960, 26, 2, 12}, | ||
2345 | { 0, 0, 0, 0, 0, 0 }, | ||
2346 | }; | ||
2347 | |||
2348 | static struct clk tegra_pll_u = { | ||
2349 | .name = "pll_u", | ||
2350 | .flags = PLL_HAS_CPCON | PLLU, | ||
2351 | .ops = &tegra_pll_ops, | ||
2352 | .reg = 0xc0, | ||
2353 | .parent = &tegra_pll_ref, | ||
2354 | .max_rate = 480000000, | ||
2355 | .u.pll = { | ||
2356 | .input_min = 2000000, | ||
2357 | .input_max = 40000000, | ||
2358 | .cf_min = 1000000, | ||
2359 | .cf_max = 6000000, | ||
2360 | .vco_min = 480000000, | ||
2361 | .vco_max = 960000000, | ||
2362 | .freq_table = tegra_pll_u_freq_table, | ||
2363 | .lock_delay = 1000, | ||
2364 | }, | ||
2365 | }; | ||
2366 | |||
2367 | static struct clk_pll_freq_table tegra_pll_x_freq_table[] = { | ||
2368 | /* 1.7 GHz */ | ||
2369 | { 12000000, 1700000000, 850, 6, 1, 8}, | ||
2370 | { 13000000, 1700000000, 915, 7, 1, 8}, /* actual: 1699.2 MHz */ | ||
2371 | { 16800000, 1700000000, 708, 7, 1, 8}, /* actual: 1699.2 MHz */ | ||
2372 | { 19200000, 1700000000, 885, 10, 1, 8}, /* actual: 1699.2 MHz */ | ||
2373 | { 26000000, 1700000000, 850, 13, 1, 8}, | ||
2374 | |||
2375 | /* 1.6 GHz */ | ||
2376 | { 12000000, 1600000000, 800, 6, 1, 8}, | ||
2377 | { 13000000, 1600000000, 738, 6, 1, 8}, /* actual: 1599.0 MHz */ | ||
2378 | { 16800000, 1600000000, 857, 9, 1, 8}, /* actual: 1599.7 MHz */ | ||
2379 | { 19200000, 1600000000, 500, 6, 1, 8}, | ||
2380 | { 26000000, 1600000000, 800, 13, 1, 8}, | ||
2381 | |||
2382 | /* 1.5 GHz */ | ||
2383 | { 12000000, 1500000000, 750, 6, 1, 8}, | ||
2384 | { 13000000, 1500000000, 923, 8, 1, 8}, /* actual: 1499.8 MHz */ | ||
2385 | { 16800000, 1500000000, 625, 7, 1, 8}, | ||
2386 | { 19200000, 1500000000, 625, 8, 1, 8}, | ||
2387 | { 26000000, 1500000000, 750, 13, 1, 8}, | ||
2388 | |||
2389 | /* 1.4 GHz */ | ||
2390 | { 12000000, 1400000000, 700, 6, 1, 8}, | ||
2391 | { 13000000, 1400000000, 969, 9, 1, 8}, /* actual: 1399.7 MHz */ | ||
2392 | { 16800000, 1400000000, 1000, 12, 1, 8}, | ||
2393 | { 19200000, 1400000000, 875, 12, 1, 8}, | ||
2394 | { 26000000, 1400000000, 700, 13, 1, 8}, | ||
2395 | |||
2396 | /* 1.3 GHz */ | ||
2397 | { 12000000, 1300000000, 975, 9, 1, 8}, | ||
2398 | { 13000000, 1300000000, 1000, 10, 1, 8}, | ||
2399 | { 16800000, 1300000000, 928, 12, 1, 8}, /* actual: 1299.2 MHz */ | ||
2400 | { 19200000, 1300000000, 812, 12, 1, 8}, /* actual: 1299.2 MHz */ | ||
2401 | { 26000000, 1300000000, 650, 13, 1, 8}, | ||
2402 | |||
2403 | /* 1.2 GHz */ | ||
2404 | { 12000000, 1200000000, 1000, 10, 1, 8}, | ||
2405 | { 13000000, 1200000000, 923, 10, 1, 8}, /* actual: 1199.9 MHz */ | ||
2406 | { 16800000, 1200000000, 1000, 14, 1, 8}, | ||
2407 | { 19200000, 1200000000, 1000, 16, 1, 8}, | ||
2408 | { 26000000, 1200000000, 600, 13, 1, 8}, | ||
2409 | |||
2410 | /* 1.1 GHz */ | ||
2411 | { 12000000, 1100000000, 825, 9, 1, 8}, | ||
2412 | { 13000000, 1100000000, 846, 10, 1, 8}, /* actual: 1099.8 MHz */ | ||
2413 | { 16800000, 1100000000, 982, 15, 1, 8}, /* actual: 1099.8 MHz */ | ||
2414 | { 19200000, 1100000000, 859, 15, 1, 8}, /* actual: 1099.5 MHz */ | ||
2415 | { 26000000, 1100000000, 550, 13, 1, 8}, | ||
2416 | |||
2417 | /* 1 GHz */ | ||
2418 | { 12000000, 1000000000, 1000, 12, 1, 8}, | ||
2419 | { 13000000, 1000000000, 1000, 13, 1, 8}, | ||
2420 | { 16800000, 1000000000, 833, 14, 1, 8}, /* actual: 999.6 MHz */ | ||
2421 | { 19200000, 1000000000, 625, 12, 1, 8}, | ||
2422 | { 26000000, 1000000000, 1000, 26, 1, 8}, | ||
2423 | |||
2424 | { 0, 0, 0, 0, 0, 0 }, | ||
2425 | }; | ||
2426 | |||
2427 | static struct clk tegra_pll_x = { | ||
2428 | .name = "pll_x", | ||
2429 | .flags = PLL_HAS_CPCON | PLL_ALT_MISC_REG | PLLX, | ||
2430 | .ops = &tegra_pll_ops, | ||
2431 | .reg = 0xe0, | ||
2432 | .parent = &tegra_pll_ref, | ||
2433 | .max_rate = 1700000000, | ||
2434 | .u.pll = { | ||
2435 | .input_min = 2000000, | ||
2436 | .input_max = 31000000, | ||
2437 | .cf_min = 1000000, | ||
2438 | .cf_max = 6000000, | ||
2439 | .vco_min = 20000000, | ||
2440 | .vco_max = 1700000000, | ||
2441 | .freq_table = tegra_pll_x_freq_table, | ||
2442 | .lock_delay = 300, | ||
2443 | }, | ||
2444 | }; | ||
2445 | |||
2446 | static struct clk tegra_pll_x_out0 = { | ||
2447 | .name = "pll_x_out0", | ||
2448 | .ops = &tegra_pll_div_ops, | ||
2449 | .flags = DIV_2 | PLLX, | ||
2450 | .parent = &tegra_pll_x, | ||
2451 | .max_rate = 850000000, | ||
2452 | }; | ||
2453 | |||
2454 | |||
2455 | static struct clk_pll_freq_table tegra_pll_e_freq_table[] = { | ||
2456 | /* PLLE special case: use cpcon field to store cml divider value */ | ||
2457 | { 12000000, 100000000, 150, 1, 18, 11}, | ||
2458 | { 216000000, 100000000, 200, 18, 24, 13}, | ||
2459 | { 0, 0, 0, 0, 0, 0 }, | ||
2460 | }; | ||
2461 | |||
2462 | static struct clk tegra_pll_e = { | ||
2463 | .name = "pll_e", | ||
2464 | .flags = PLL_ALT_MISC_REG, | ||
2465 | .ops = &tegra_plle_ops, | ||
2466 | .reg = 0xe8, | ||
2467 | .max_rate = 100000000, | ||
2468 | .u.pll = { | ||
2469 | .input_min = 12000000, | ||
2470 | .input_max = 216000000, | ||
2471 | .cf_min = 12000000, | ||
2472 | .cf_max = 12000000, | ||
2473 | .vco_min = 1200000000, | ||
2474 | .vco_max = 2400000000U, | ||
2475 | .freq_table = tegra_pll_e_freq_table, | ||
2476 | .lock_delay = 300, | ||
2477 | .fixed_rate = 100000000, | ||
2478 | }, | ||
2479 | }; | ||
2480 | |||
2481 | static struct clk tegra_cml0_clk = { | ||
2482 | .name = "cml0", | ||
2483 | .parent = &tegra_pll_e, | ||
2484 | .ops = &tegra_cml_clk_ops, | ||
2485 | .reg = PLLE_AUX, | ||
2486 | .max_rate = 100000000, | ||
2487 | .u.periph = { | ||
2488 | .clk_num = 0, | ||
2489 | }, | ||
2490 | }; | ||
2491 | |||
2492 | static struct clk tegra_cml1_clk = { | ||
2493 | .name = "cml1", | ||
2494 | .parent = &tegra_pll_e, | ||
2495 | .ops = &tegra_cml_clk_ops, | ||
2496 | .reg = PLLE_AUX, | ||
2497 | .max_rate = 100000000, | ||
2498 | .u.periph = { | ||
2499 | .clk_num = 1, | ||
2500 | }, | ||
2501 | }; | ||
2502 | |||
2503 | static struct clk tegra_pciex_clk = { | ||
2504 | .name = "pciex", | ||
2505 | .parent = &tegra_pll_e, | ||
2506 | .ops = &tegra_pciex_clk_ops, | ||
2507 | .max_rate = 100000000, | ||
2508 | .u.periph = { | ||
2509 | .clk_num = 74, | ||
2510 | }, | ||
2511 | }; | ||
2512 | |||
2513 | /* Audio sync clocks */ | ||
2514 | #define SYNC_SOURCE(_id) \ | ||
2515 | { \ | ||
2516 | .name = #_id "_sync", \ | ||
2517 | .rate = 24000000, \ | ||
2518 | .max_rate = 24000000, \ | ||
2519 | .ops = &tegra_sync_source_ops \ | ||
2520 | } | ||
2521 | static struct clk tegra_sync_source_list[] = { | ||
2522 | SYNC_SOURCE(spdif_in), | ||
2523 | SYNC_SOURCE(i2s0), | ||
2524 | SYNC_SOURCE(i2s1), | ||
2525 | SYNC_SOURCE(i2s2), | ||
2526 | SYNC_SOURCE(i2s3), | ||
2527 | SYNC_SOURCE(i2s4), | ||
2528 | SYNC_SOURCE(vimclk), | ||
2529 | }; | ||
2530 | |||
2531 | static struct clk_mux_sel mux_audio_sync_clk[] = { | ||
2532 | { .input = &tegra_sync_source_list[0], .value = 0}, | ||
2533 | { .input = &tegra_sync_source_list[1], .value = 1}, | ||
2534 | { .input = &tegra_sync_source_list[2], .value = 2}, | ||
2535 | { .input = &tegra_sync_source_list[3], .value = 3}, | ||
2536 | { .input = &tegra_sync_source_list[4], .value = 4}, | ||
2537 | { .input = &tegra_sync_source_list[5], .value = 5}, | ||
2538 | { .input = &tegra_pll_a_out0, .value = 6}, | ||
2539 | { .input = &tegra_sync_source_list[6], .value = 7}, | ||
2540 | { 0, 0 } | ||
2541 | }; | ||
2542 | |||
2543 | #define AUDIO_SYNC_CLK(_id, _index) \ | ||
2544 | { \ | ||
2545 | .name = #_id, \ | ||
2546 | .inputs = mux_audio_sync_clk, \ | ||
2547 | .reg = 0x4A0 + (_index) * 4, \ | ||
2548 | .max_rate = 24000000, \ | ||
2549 | .ops = &tegra_audio_sync_clk_ops \ | ||
2550 | } | ||
2551 | static struct clk tegra_clk_audio_list[] = { | ||
2552 | AUDIO_SYNC_CLK(audio0, 0), | ||
2553 | AUDIO_SYNC_CLK(audio1, 1), | ||
2554 | AUDIO_SYNC_CLK(audio2, 2), | ||
2555 | AUDIO_SYNC_CLK(audio3, 3), | ||
2556 | AUDIO_SYNC_CLK(audio4, 4), | ||
2557 | AUDIO_SYNC_CLK(audio, 5), /* SPDIF */ | ||
2558 | }; | ||
2559 | |||
2560 | #define AUDIO_SYNC_2X_CLK(_id, _index) \ | ||
2561 | { \ | ||
2562 | .name = #_id "_2x", \ | ||
2563 | .flags = PERIPH_NO_RESET, \ | ||
2564 | .max_rate = 48000000, \ | ||
2565 | .ops = &tegra_clk_double_ops, \ | ||
2566 | .reg = 0x49C, \ | ||
2567 | .reg_shift = 24 + (_index), \ | ||
2568 | .parent = &tegra_clk_audio_list[(_index)], \ | ||
2569 | .u.periph = { \ | ||
2570 | .clk_num = 113 + (_index), \ | ||
2571 | }, \ | ||
2572 | } | ||
2573 | static struct clk tegra_clk_audio_2x_list[] = { | ||
2574 | AUDIO_SYNC_2X_CLK(audio0, 0), | ||
2575 | AUDIO_SYNC_2X_CLK(audio1, 1), | ||
2576 | AUDIO_SYNC_2X_CLK(audio2, 2), | ||
2577 | AUDIO_SYNC_2X_CLK(audio3, 3), | ||
2578 | AUDIO_SYNC_2X_CLK(audio4, 4), | ||
2579 | AUDIO_SYNC_2X_CLK(audio, 5), /* SPDIF */ | ||
2580 | }; | ||
2581 | |||
2582 | #define MUX_I2S_SPDIF(_id, _index) \ | ||
2583 | static struct clk_mux_sel mux_pllaout0_##_id##_2x_pllp_clkm[] = { \ | ||
2584 | {.input = &tegra_pll_a_out0, .value = 0}, \ | ||
2585 | {.input = &tegra_clk_audio_2x_list[(_index)], .value = 1}, \ | ||
2586 | {.input = &tegra_pll_p, .value = 2}, \ | ||
2587 | {.input = &tegra_clk_m, .value = 3}, \ | ||
2588 | { 0, 0}, \ | ||
2589 | } | ||
2590 | MUX_I2S_SPDIF(audio0, 0); | ||
2591 | MUX_I2S_SPDIF(audio1, 1); | ||
2592 | MUX_I2S_SPDIF(audio2, 2); | ||
2593 | MUX_I2S_SPDIF(audio3, 3); | ||
2594 | MUX_I2S_SPDIF(audio4, 4); | ||
2595 | MUX_I2S_SPDIF(audio, 5); /* SPDIF */ | ||
2596 | |||
2597 | /* External clock outputs (through PMC) */ | ||
2598 | #define MUX_EXTERN_OUT(_id) \ | ||
2599 | static struct clk_mux_sel mux_clkm_clkm2_clkm4_extern##_id[] = { \ | ||
2600 | {.input = &tegra_clk_m, .value = 0}, \ | ||
2601 | {.input = &tegra_clk_m_div2, .value = 1}, \ | ||
2602 | {.input = &tegra_clk_m_div4, .value = 2}, \ | ||
2603 | {.input = NULL, .value = 3}, /* placeholder */ \ | ||
2604 | { 0, 0}, \ | ||
2605 | } | ||
2606 | MUX_EXTERN_OUT(1); | ||
2607 | MUX_EXTERN_OUT(2); | ||
2608 | MUX_EXTERN_OUT(3); | ||
2609 | |||
2610 | static struct clk_mux_sel *mux_extern_out_list[] = { | ||
2611 | mux_clkm_clkm2_clkm4_extern1, | ||
2612 | mux_clkm_clkm2_clkm4_extern2, | ||
2613 | mux_clkm_clkm2_clkm4_extern3, | ||
2614 | }; | ||
2615 | |||
2616 | #define CLK_OUT_CLK(_id) \ | ||
2617 | { \ | ||
2618 | .name = "clk_out_" #_id, \ | ||
2619 | .lookup = { \ | ||
2620 | .dev_id = "clk_out_" #_id, \ | ||
2621 | .con_id = "extern" #_id, \ | ||
2622 | }, \ | ||
2623 | .ops = &tegra_clk_out_ops, \ | ||
2624 | .reg = 0x1a8, \ | ||
2625 | .inputs = mux_clkm_clkm2_clkm4_extern##_id, \ | ||
2626 | .flags = MUX_CLK_OUT, \ | ||
2627 | .max_rate = 216000000, \ | ||
2628 | .u.periph = { \ | ||
2629 | .clk_num = (_id - 1) * 8 + 2, \ | ||
2630 | }, \ | ||
2631 | } | ||
2632 | static struct clk tegra_clk_out_list[] = { | ||
2633 | CLK_OUT_CLK(1), | ||
2634 | CLK_OUT_CLK(2), | ||
2635 | CLK_OUT_CLK(3), | ||
2636 | }; | ||
2637 | |||
2638 | /* called after peripheral external clocks are initialized */ | ||
2639 | static void init_clk_out_mux(void) | ||
2640 | { | ||
2641 | int i; | ||
2642 | struct clk *c; | ||
2643 | |||
2644 | /* output clock con_id is the name of peripheral | ||
2645 | external clock connected to input 3 of the output mux */ | ||
2646 | for (i = 0; i < ARRAY_SIZE(tegra_clk_out_list); i++) { | ||
2647 | c = tegra_get_clock_by_name( | ||
2648 | tegra_clk_out_list[i].lookup.con_id); | ||
2649 | if (!c) | ||
2650 | pr_err("%s: could not find clk %s\n", __func__, | ||
2651 | tegra_clk_out_list[i].lookup.con_id); | ||
2652 | mux_extern_out_list[i][3].input = c; | ||
2653 | } | ||
2654 | } | ||
2655 | |||
2656 | /* Peripheral muxes */ | ||
2657 | static struct clk_mux_sel mux_sclk[] = { | ||
2658 | { .input = &tegra_clk_m, .value = 0}, | ||
2659 | { .input = &tegra_pll_c_out1, .value = 1}, | ||
2660 | { .input = &tegra_pll_p_out4, .value = 2}, | ||
2661 | { .input = &tegra_pll_p_out3, .value = 3}, | ||
2662 | { .input = &tegra_pll_p_out2, .value = 4}, | ||
2663 | /* { .input = &tegra_clk_d, .value = 5}, - no use on tegra30 */ | ||
2664 | { .input = &tegra_clk_32k, .value = 6}, | ||
2665 | { .input = &tegra_pll_m_out1, .value = 7}, | ||
2666 | { 0, 0}, | ||
2667 | }; | 2219 | }; |
2668 | 2220 | ||
2669 | static struct clk tegra_clk_sclk = { | 2221 | struct clk_ops tegra_pciex_clk_ops = { |
2670 | .name = "sclk", | 2222 | .recalc_rate = tegra30_clk_fixed_recalc_rate, |
2671 | .inputs = mux_sclk, | ||
2672 | .reg = 0x28, | ||
2673 | .ops = &tegra_super_ops, | ||
2674 | .max_rate = 334000000, | ||
2675 | .min_rate = 40000000, | ||
2676 | }; | 2223 | }; |
2677 | |||
2678 | static struct clk tegra_clk_blink = { | ||
2679 | .name = "blink", | ||
2680 | .parent = &tegra_clk_32k, | ||
2681 | .reg = 0x40, | ||
2682 | .ops = &tegra_blink_clk_ops, | ||
2683 | .max_rate = 32768, | ||
2684 | }; | ||
2685 | |||
2686 | static struct clk_mux_sel mux_pllm_pllc_pllp_plla[] = { | ||
2687 | { .input = &tegra_pll_m, .value = 0}, | ||
2688 | { .input = &tegra_pll_c, .value = 1}, | ||
2689 | { .input = &tegra_pll_p, .value = 2}, | ||
2690 | { .input = &tegra_pll_a_out0, .value = 3}, | ||
2691 | { 0, 0}, | ||
2692 | }; | ||
2693 | |||
2694 | static struct clk_mux_sel mux_pllp_pllc_pllm_clkm[] = { | ||
2695 | { .input = &tegra_pll_p, .value = 0}, | ||
2696 | { .input = &tegra_pll_c, .value = 1}, | ||
2697 | { .input = &tegra_pll_m, .value = 2}, | ||
2698 | { .input = &tegra_clk_m, .value = 3}, | ||
2699 | { 0, 0}, | ||
2700 | }; | ||
2701 | |||
2702 | static struct clk_mux_sel mux_pllp_clkm[] = { | ||
2703 | { .input = &tegra_pll_p, .value = 0}, | ||
2704 | { .input = &tegra_clk_m, .value = 3}, | ||
2705 | { 0, 0}, | ||
2706 | }; | ||
2707 | |||
2708 | static struct clk_mux_sel mux_pllp_plld_pllc_clkm[] = { | ||
2709 | {.input = &tegra_pll_p, .value = 0}, | ||
2710 | {.input = &tegra_pll_d_out0, .value = 1}, | ||
2711 | {.input = &tegra_pll_c, .value = 2}, | ||
2712 | {.input = &tegra_clk_m, .value = 3}, | ||
2713 | { 0, 0}, | ||
2714 | }; | ||
2715 | |||
2716 | static struct clk_mux_sel mux_pllp_pllm_plld_plla_pllc_plld2_clkm[] = { | ||
2717 | {.input = &tegra_pll_p, .value = 0}, | ||
2718 | {.input = &tegra_pll_m, .value = 1}, | ||
2719 | {.input = &tegra_pll_d_out0, .value = 2}, | ||
2720 | {.input = &tegra_pll_a_out0, .value = 3}, | ||
2721 | {.input = &tegra_pll_c, .value = 4}, | ||
2722 | {.input = &tegra_pll_d2_out0, .value = 5}, | ||
2723 | {.input = &tegra_clk_m, .value = 6}, | ||
2724 | { 0, 0}, | ||
2725 | }; | ||
2726 | |||
2727 | static struct clk_mux_sel mux_plla_pllc_pllp_clkm[] = { | ||
2728 | { .input = &tegra_pll_a_out0, .value = 0}, | ||
2729 | /* { .input = &tegra_pll_c, .value = 1}, no use on tegra30 */ | ||
2730 | { .input = &tegra_pll_p, .value = 2}, | ||
2731 | { .input = &tegra_clk_m, .value = 3}, | ||
2732 | { 0, 0}, | ||
2733 | }; | ||
2734 | |||
2735 | static struct clk_mux_sel mux_pllp_pllc_clk32_clkm[] = { | ||
2736 | {.input = &tegra_pll_p, .value = 0}, | ||
2737 | {.input = &tegra_pll_c, .value = 1}, | ||
2738 | {.input = &tegra_clk_32k, .value = 2}, | ||
2739 | {.input = &tegra_clk_m, .value = 3}, | ||
2740 | { 0, 0}, | ||
2741 | }; | ||
2742 | |||
2743 | static struct clk_mux_sel mux_pllp_pllc_clkm_clk32[] = { | ||
2744 | {.input = &tegra_pll_p, .value = 0}, | ||
2745 | {.input = &tegra_pll_c, .value = 1}, | ||
2746 | {.input = &tegra_clk_m, .value = 2}, | ||
2747 | {.input = &tegra_clk_32k, .value = 3}, | ||
2748 | { 0, 0}, | ||
2749 | }; | ||
2750 | |||
2751 | static struct clk_mux_sel mux_pllp_pllc_pllm[] = { | ||
2752 | {.input = &tegra_pll_p, .value = 0}, | ||
2753 | {.input = &tegra_pll_c, .value = 1}, | ||
2754 | {.input = &tegra_pll_m, .value = 2}, | ||
2755 | { 0, 0}, | ||
2756 | }; | ||
2757 | |||
2758 | static struct clk_mux_sel mux_clk_m[] = { | ||
2759 | { .input = &tegra_clk_m, .value = 0}, | ||
2760 | { 0, 0}, | ||
2761 | }; | ||
2762 | |||
2763 | static struct clk_mux_sel mux_pllp_out3[] = { | ||
2764 | { .input = &tegra_pll_p_out3, .value = 0}, | ||
2765 | { 0, 0}, | ||
2766 | }; | ||
2767 | |||
2768 | static struct clk_mux_sel mux_plld_out0[] = { | ||
2769 | { .input = &tegra_pll_d_out0, .value = 0}, | ||
2770 | { 0, 0}, | ||
2771 | }; | ||
2772 | |||
2773 | static struct clk_mux_sel mux_plld_out0_plld2_out0[] = { | ||
2774 | { .input = &tegra_pll_d_out0, .value = 0}, | ||
2775 | { .input = &tegra_pll_d2_out0, .value = 1}, | ||
2776 | { 0, 0}, | ||
2777 | }; | ||
2778 | |||
2779 | static struct clk_mux_sel mux_clk_32k[] = { | ||
2780 | { .input = &tegra_clk_32k, .value = 0}, | ||
2781 | { 0, 0}, | ||
2782 | }; | ||
2783 | |||
2784 | static struct clk_mux_sel mux_plla_clk32_pllp_clkm_plle[] = { | ||
2785 | { .input = &tegra_pll_a_out0, .value = 0}, | ||
2786 | { .input = &tegra_clk_32k, .value = 1}, | ||
2787 | { .input = &tegra_pll_p, .value = 2}, | ||
2788 | { .input = &tegra_clk_m, .value = 3}, | ||
2789 | { .input = &tegra_pll_e, .value = 4}, | ||
2790 | { 0, 0}, | ||
2791 | }; | ||
2792 | |||
2793 | static struct clk_mux_sel mux_cclk_g[] = { | ||
2794 | { .input = &tegra_clk_m, .value = 0}, | ||
2795 | { .input = &tegra_pll_c, .value = 1}, | ||
2796 | { .input = &tegra_clk_32k, .value = 2}, | ||
2797 | { .input = &tegra_pll_m, .value = 3}, | ||
2798 | { .input = &tegra_pll_p, .value = 4}, | ||
2799 | { .input = &tegra_pll_p_out4, .value = 5}, | ||
2800 | { .input = &tegra_pll_p_out3, .value = 6}, | ||
2801 | { .input = &tegra_pll_x, .value = 8}, | ||
2802 | { 0, 0}, | ||
2803 | }; | ||
2804 | |||
2805 | static struct clk tegra_clk_cclk_g = { | ||
2806 | .name = "cclk_g", | ||
2807 | .flags = DIV_U71 | DIV_U71_INT, | ||
2808 | .inputs = mux_cclk_g, | ||
2809 | .reg = 0x368, | ||
2810 | .ops = &tegra_super_ops, | ||
2811 | .max_rate = 1700000000, | ||
2812 | }; | ||
2813 | |||
2814 | static struct clk tegra30_clk_twd = { | ||
2815 | .parent = &tegra_clk_cclk_g, | ||
2816 | .name = "twd", | ||
2817 | .ops = &tegra30_twd_ops, | ||
2818 | .max_rate = 1400000000, /* Same as tegra_clk_cpu_cmplx.max_rate */ | ||
2819 | .mul = 1, | ||
2820 | .div = 2, | ||
2821 | }; | ||
2822 | |||
2823 | #define PERIPH_CLK(_name, _dev, _con, _clk_num, _reg, _max, _inputs, _flags) \ | ||
2824 | { \ | ||
2825 | .name = _name, \ | ||
2826 | .lookup = { \ | ||
2827 | .dev_id = _dev, \ | ||
2828 | .con_id = _con, \ | ||
2829 | }, \ | ||
2830 | .ops = &tegra_periph_clk_ops, \ | ||
2831 | .reg = _reg, \ | ||
2832 | .inputs = _inputs, \ | ||
2833 | .flags = _flags, \ | ||
2834 | .max_rate = _max, \ | ||
2835 | .u.periph = { \ | ||
2836 | .clk_num = _clk_num, \ | ||
2837 | }, \ | ||
2838 | } | ||
2839 | |||
2840 | #define PERIPH_CLK_EX(_name, _dev, _con, _clk_num, _reg, _max, _inputs, \ | ||
2841 | _flags, _ops) \ | ||
2842 | { \ | ||
2843 | .name = _name, \ | ||
2844 | .lookup = { \ | ||
2845 | .dev_id = _dev, \ | ||
2846 | .con_id = _con, \ | ||
2847 | }, \ | ||
2848 | .ops = _ops, \ | ||
2849 | .reg = _reg, \ | ||
2850 | .inputs = _inputs, \ | ||
2851 | .flags = _flags, \ | ||
2852 | .max_rate = _max, \ | ||
2853 | .u.periph = { \ | ||
2854 | .clk_num = _clk_num, \ | ||
2855 | }, \ | ||
2856 | } | ||
2857 | |||
2858 | #define SHARED_CLK(_name, _dev, _con, _parent, _id, _div, _mode)\ | ||
2859 | { \ | ||
2860 | .name = _name, \ | ||
2861 | .lookup = { \ | ||
2862 | .dev_id = _dev, \ | ||
2863 | .con_id = _con, \ | ||
2864 | }, \ | ||
2865 | .ops = &tegra_clk_shared_bus_ops, \ | ||
2866 | .parent = _parent, \ | ||
2867 | .u.shared_bus_user = { \ | ||
2868 | .client_id = _id, \ | ||
2869 | .client_div = _div, \ | ||
2870 | .mode = _mode, \ | ||
2871 | }, \ | ||
2872 | } | ||
2873 | struct clk tegra_list_clks[] = { | ||
2874 | PERIPH_CLK("apbdma", "tegra-apbdma", NULL, 34, 0, 26000000, mux_clk_m, 0), | ||
2875 | PERIPH_CLK("rtc", "rtc-tegra", NULL, 4, 0, 32768, mux_clk_32k, PERIPH_NO_RESET | PERIPH_ON_APB), | ||
2876 | PERIPH_CLK("kbc", "tegra-kbc", NULL, 36, 0, 32768, mux_clk_32k, PERIPH_NO_RESET | PERIPH_ON_APB), | ||
2877 | PERIPH_CLK("timer", "timer", NULL, 5, 0, 26000000, mux_clk_m, 0), | ||
2878 | PERIPH_CLK("kfuse", "kfuse-tegra", NULL, 40, 0, 26000000, mux_clk_m, 0), | ||
2879 | PERIPH_CLK("fuse", "fuse-tegra", "fuse", 39, 0, 26000000, mux_clk_m, PERIPH_ON_APB), | ||
2880 | PERIPH_CLK("fuse_burn", "fuse-tegra", "fuse_burn", 39, 0, 26000000, mux_clk_m, PERIPH_ON_APB), | ||
2881 | PERIPH_CLK("apbif", "tegra30-ahub", "apbif", 107, 0, 26000000, mux_clk_m, 0), | ||
2882 | PERIPH_CLK("i2s0", "tegra30-i2s.0", NULL, 30, 0x1d8, 26000000, mux_pllaout0_audio0_2x_pllp_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2883 | PERIPH_CLK("i2s1", "tegra30-i2s.1", NULL, 11, 0x100, 26000000, mux_pllaout0_audio1_2x_pllp_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2884 | PERIPH_CLK("i2s2", "tegra30-i2s.2", NULL, 18, 0x104, 26000000, mux_pllaout0_audio2_2x_pllp_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2885 | PERIPH_CLK("i2s3", "tegra30-i2s.3", NULL, 101, 0x3bc, 26000000, mux_pllaout0_audio3_2x_pllp_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2886 | PERIPH_CLK("i2s4", "tegra30-i2s.4", NULL, 102, 0x3c0, 26000000, mux_pllaout0_audio4_2x_pllp_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2887 | PERIPH_CLK("spdif_out", "tegra30-spdif", "spdif_out", 10, 0x108, 100000000, mux_pllaout0_audio_2x_pllp_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2888 | PERIPH_CLK("spdif_in", "tegra30-spdif", "spdif_in", 10, 0x10c, 100000000, mux_pllp_pllc_pllm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2889 | PERIPH_CLK("pwm", "tegra-pwm", NULL, 17, 0x110, 432000000, mux_pllp_pllc_clk32_clkm, MUX | MUX_PWM | DIV_U71 | PERIPH_ON_APB), | ||
2890 | PERIPH_CLK("d_audio", "tegra30-ahub", "d_audio", 106, 0x3d0, 48000000, mux_plla_pllc_pllp_clkm, MUX | DIV_U71), | ||
2891 | PERIPH_CLK("dam0", "tegra30-dam.0", NULL, 108, 0x3d8, 48000000, mux_plla_pllc_pllp_clkm, MUX | DIV_U71), | ||
2892 | PERIPH_CLK("dam1", "tegra30-dam.1", NULL, 109, 0x3dc, 48000000, mux_plla_pllc_pllp_clkm, MUX | DIV_U71), | ||
2893 | PERIPH_CLK("dam2", "tegra30-dam.2", NULL, 110, 0x3e0, 48000000, mux_plla_pllc_pllp_clkm, MUX | DIV_U71), | ||
2894 | PERIPH_CLK("hda", "tegra30-hda", "hda", 125, 0x428, 108000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2895 | PERIPH_CLK("hda2codec_2x", "tegra30-hda", "hda2codec", 111, 0x3e4, 48000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2896 | PERIPH_CLK("hda2hdmi", "tegra30-hda", "hda2hdmi", 128, 0, 48000000, mux_clk_m, 0), | ||
2897 | PERIPH_CLK("sbc1", "spi_tegra.0", NULL, 41, 0x134, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2898 | PERIPH_CLK("sbc2", "spi_tegra.1", NULL, 44, 0x118, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2899 | PERIPH_CLK("sbc3", "spi_tegra.2", NULL, 46, 0x11c, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2900 | PERIPH_CLK("sbc4", "spi_tegra.3", NULL, 68, 0x1b4, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2901 | PERIPH_CLK("sbc5", "spi_tegra.4", NULL, 104, 0x3c8, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2902 | PERIPH_CLK("sbc6", "spi_tegra.5", NULL, 105, 0x3cc, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2903 | PERIPH_CLK("sata_oob", "tegra_sata_oob", NULL, 123, 0x420, 216000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2904 | PERIPH_CLK("sata", "tegra_sata", NULL, 124, 0x424, 216000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2905 | PERIPH_CLK("sata_cold", "tegra_sata_cold", NULL, 129, 0, 48000000, mux_clk_m, 0), | ||
2906 | PERIPH_CLK_EX("ndflash", "tegra_nand", NULL, 13, 0x160, 240000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71, &tegra_nand_clk_ops), | ||
2907 | PERIPH_CLK("ndspeed", "tegra_nand_speed", NULL, 80, 0x3f8, 240000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2908 | PERIPH_CLK("vfir", "vfir", NULL, 7, 0x168, 72000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2909 | PERIPH_CLK("sdmmc1", "sdhci-tegra.0", NULL, 14, 0x150, 208000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* scales with voltage */ | ||
2910 | PERIPH_CLK("sdmmc2", "sdhci-tegra.1", NULL, 9, 0x154, 104000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* scales with voltage */ | ||
2911 | PERIPH_CLK("sdmmc3", "sdhci-tegra.2", NULL, 69, 0x1bc, 208000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* scales with voltage */ | ||
2912 | PERIPH_CLK("sdmmc4", "sdhci-tegra.3", NULL, 15, 0x164, 104000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* scales with voltage */ | ||
2913 | PERIPH_CLK("vcp", "tegra-avp", "vcp", 29, 0, 250000000, mux_clk_m, 0), | ||
2914 | PERIPH_CLK("bsea", "tegra-avp", "bsea", 62, 0, 250000000, mux_clk_m, 0), | ||
2915 | PERIPH_CLK("bsev", "tegra-aes", "bsev", 63, 0, 250000000, mux_clk_m, 0), | ||
2916 | PERIPH_CLK("vde", "vde", NULL, 61, 0x1c8, 520000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_INT), | ||
2917 | PERIPH_CLK("csite", "csite", NULL, 73, 0x1d4, 144000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* max rate ??? */ | ||
2918 | PERIPH_CLK("la", "la", NULL, 76, 0x1f8, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), | ||
2919 | PERIPH_CLK("owr", "tegra_w1", NULL, 71, 0x1cc, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2920 | PERIPH_CLK("nor", "nor", NULL, 42, 0x1d0, 127000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71), /* requires min voltage */ | ||
2921 | PERIPH_CLK("mipi", "mipi", NULL, 50, 0x174, 60000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB), /* scales with voltage */ | ||
2922 | PERIPH_CLK("i2c1", "tegra-i2c.0", NULL, 12, 0x124, 26000000, mux_pllp_clkm, MUX | DIV_U16 | PERIPH_ON_APB), | ||
2923 | PERIPH_CLK("i2c2", "tegra-i2c.1", NULL, 54, 0x198, 26000000, mux_pllp_clkm, MUX | DIV_U16 | PERIPH_ON_APB), | ||
2924 | PERIPH_CLK("i2c3", "tegra-i2c.2", NULL, 67, 0x1b8, 26000000, mux_pllp_clkm, MUX | DIV_U16 | PERIPH_ON_APB), | ||
2925 | PERIPH_CLK("i2c4", "tegra-i2c.3", NULL, 103, 0x3c4, 26000000, mux_pllp_clkm, MUX | DIV_U16 | PERIPH_ON_APB), | ||
2926 | PERIPH_CLK("i2c5", "tegra-i2c.4", NULL, 47, 0x128, 26000000, mux_pllp_clkm, MUX | DIV_U16 | PERIPH_ON_APB), | ||
2927 | PERIPH_CLK("uarta", "tegra-uart.0", NULL, 6, 0x178, 800000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_UART | PERIPH_ON_APB), | ||
2928 | PERIPH_CLK("uartb", "tegra-uart.1", NULL, 7, 0x17c, 800000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_UART | PERIPH_ON_APB), | ||
2929 | PERIPH_CLK("uartc", "tegra-uart.2", NULL, 55, 0x1a0, 800000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_UART | PERIPH_ON_APB), | ||
2930 | PERIPH_CLK("uartd", "tegra-uart.3", NULL, 65, 0x1c0, 800000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_UART | PERIPH_ON_APB), | ||
2931 | PERIPH_CLK("uarte", "tegra-uart.4", NULL, 66, 0x1c4, 800000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_UART | PERIPH_ON_APB), | ||
2932 | PERIPH_CLK_EX("vi", "tegra_camera", "vi", 20, 0x148, 425000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT, &tegra_vi_clk_ops), | ||
2933 | PERIPH_CLK("3d", "3d", NULL, 24, 0x158, 520000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT | DIV_U71_IDLE | PERIPH_MANUAL_RESET), | ||
2934 | PERIPH_CLK("3d2", "3d2", NULL, 98, 0x3b0, 520000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT | DIV_U71_IDLE | PERIPH_MANUAL_RESET), | ||
2935 | PERIPH_CLK("2d", "2d", NULL, 21, 0x15c, 520000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT | DIV_U71_IDLE), | ||
2936 | PERIPH_CLK("vi_sensor", "tegra_camera", "vi_sensor", 20, 0x1a8, 150000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | PERIPH_NO_RESET), | ||
2937 | PERIPH_CLK("epp", "epp", NULL, 19, 0x16c, 520000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT), | ||
2938 | PERIPH_CLK("mpe", "mpe", NULL, 60, 0x170, 520000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT), | ||
2939 | PERIPH_CLK("host1x", "host1x", NULL, 28, 0x180, 260000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT), | ||
2940 | PERIPH_CLK("cve", "cve", NULL, 49, 0x140, 250000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71), /* requires min voltage */ | ||
2941 | PERIPH_CLK("tvo", "tvo", NULL, 49, 0x188, 250000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71), /* requires min voltage */ | ||
2942 | PERIPH_CLK_EX("dtv", "dtv", NULL, 79, 0x1dc, 250000000, mux_clk_m, 0, &tegra_dtv_clk_ops), | ||
2943 | PERIPH_CLK("hdmi", "hdmi", NULL, 51, 0x18c, 148500000, mux_pllp_pllm_plld_plla_pllc_plld2_clkm, MUX | MUX8 | DIV_U71), | ||
2944 | PERIPH_CLK("tvdac", "tvdac", NULL, 53, 0x194, 220000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71), /* requires min voltage */ | ||
2945 | PERIPH_CLK("disp1", "tegradc.0", NULL, 27, 0x138, 600000000, mux_pllp_pllm_plld_plla_pllc_plld2_clkm, MUX | MUX8), | ||
2946 | PERIPH_CLK("disp2", "tegradc.1", NULL, 26, 0x13c, 600000000, mux_pllp_pllm_plld_plla_pllc_plld2_clkm, MUX | MUX8), | ||
2947 | PERIPH_CLK("usbd", "fsl-tegra-udc", NULL, 22, 0, 480000000, mux_clk_m, 0), /* requires min voltage */ | ||
2948 | PERIPH_CLK("usb2", "tegra-ehci.1", NULL, 58, 0, 480000000, mux_clk_m, 0), /* requires min voltage */ | ||
2949 | PERIPH_CLK("usb3", "tegra-ehci.2", NULL, 59, 0, 480000000, mux_clk_m, 0), /* requires min voltage */ | ||
2950 | PERIPH_CLK("dsia", "tegradc.0", "dsia", 48, 0, 500000000, mux_plld_out0, 0), | ||
2951 | PERIPH_CLK_EX("dsib", "tegradc.1", "dsib", 82, 0xd0, 500000000, mux_plld_out0_plld2_out0, MUX | PLLD, &tegra_dsib_clk_ops), | ||
2952 | PERIPH_CLK("csi", "tegra_camera", "csi", 52, 0, 102000000, mux_pllp_out3, 0), | ||
2953 | PERIPH_CLK("isp", "tegra_camera", "isp", 23, 0, 150000000, mux_clk_m, 0), /* same frequency as VI */ | ||
2954 | PERIPH_CLK("csus", "tegra_camera", "csus", 92, 0, 150000000, mux_clk_m, PERIPH_NO_RESET), | ||
2955 | |||
2956 | PERIPH_CLK("tsensor", "tegra-tsensor", NULL, 100, 0x3b8, 216000000, mux_pllp_pllc_clkm_clk32, MUX | DIV_U71), | ||
2957 | PERIPH_CLK("actmon", "actmon", NULL, 119, 0x3e8, 216000000, mux_pllp_pllc_clk32_clkm, MUX | DIV_U71), | ||
2958 | PERIPH_CLK("extern1", "extern1", NULL, 120, 0x3ec, 216000000, mux_plla_clk32_pllp_clkm_plle, MUX | MUX8 | DIV_U71), | ||
2959 | PERIPH_CLK("extern2", "extern2", NULL, 121, 0x3f0, 216000000, mux_plla_clk32_pllp_clkm_plle, MUX | MUX8 | DIV_U71), | ||
2960 | PERIPH_CLK("extern3", "extern3", NULL, 122, 0x3f4, 216000000, mux_plla_clk32_pllp_clkm_plle, MUX | MUX8 | DIV_U71), | ||
2961 | PERIPH_CLK("i2cslow", "i2cslow", NULL, 81, 0x3fc, 26000000, mux_pllp_pllc_clk32_clkm, MUX | DIV_U71 | PERIPH_ON_APB), | ||
2962 | PERIPH_CLK("pcie", "tegra-pcie", "pcie", 70, 0, 250000000, mux_clk_m, 0), | ||
2963 | PERIPH_CLK("afi", "tegra-pcie", "afi", 72, 0, 250000000, mux_clk_m, 0), | ||
2964 | PERIPH_CLK("se", "se", NULL, 127, 0x42c, 520000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_INT), | ||
2965 | }; | ||
2966 | |||
2967 | #define CLK_DUPLICATE(_name, _dev, _con) \ | ||
2968 | { \ | ||
2969 | .name = _name, \ | ||
2970 | .lookup = { \ | ||
2971 | .dev_id = _dev, \ | ||
2972 | .con_id = _con, \ | ||
2973 | }, \ | ||
2974 | } | ||
2975 | |||
2976 | /* Some clocks may be used by different drivers depending on the board | ||
2977 | * configuration. List those here to register them twice in the clock lookup | ||
2978 | * table under two names. | ||
2979 | */ | ||
2980 | struct clk_duplicate tegra_clk_duplicates[] = { | ||
2981 | CLK_DUPLICATE("uarta", "serial8250.0", NULL), | ||
2982 | CLK_DUPLICATE("uartb", "serial8250.1", NULL), | ||
2983 | CLK_DUPLICATE("uartc", "serial8250.2", NULL), | ||
2984 | CLK_DUPLICATE("uartd", "serial8250.3", NULL), | ||
2985 | CLK_DUPLICATE("uarte", "serial8250.4", NULL), | ||
2986 | CLK_DUPLICATE("usbd", "utmip-pad", NULL), | ||
2987 | CLK_DUPLICATE("usbd", "tegra-ehci.0", NULL), | ||
2988 | CLK_DUPLICATE("usbd", "tegra-otg", NULL), | ||
2989 | CLK_DUPLICATE("hdmi", "tegradc.0", "hdmi"), | ||
2990 | CLK_DUPLICATE("hdmi", "tegradc.1", "hdmi"), | ||
2991 | CLK_DUPLICATE("dsib", "tegradc.0", "dsib"), | ||
2992 | CLK_DUPLICATE("dsia", "tegradc.1", "dsia"), | ||
2993 | CLK_DUPLICATE("bsev", "tegra-avp", "bsev"), | ||
2994 | CLK_DUPLICATE("bsev", "nvavp", "bsev"), | ||
2995 | CLK_DUPLICATE("vde", "tegra-aes", "vde"), | ||
2996 | CLK_DUPLICATE("bsea", "tegra-aes", "bsea"), | ||
2997 | CLK_DUPLICATE("bsea", "nvavp", "bsea"), | ||
2998 | CLK_DUPLICATE("cml1", "tegra_sata_cml", NULL), | ||
2999 | CLK_DUPLICATE("cml0", "tegra_pcie", "cml"), | ||
3000 | CLK_DUPLICATE("pciex", "tegra_pcie", "pciex"), | ||
3001 | CLK_DUPLICATE("i2c1", "tegra-i2c-slave.0", NULL), | ||
3002 | CLK_DUPLICATE("i2c2", "tegra-i2c-slave.1", NULL), | ||
3003 | CLK_DUPLICATE("i2c3", "tegra-i2c-slave.2", NULL), | ||
3004 | CLK_DUPLICATE("i2c4", "tegra-i2c-slave.3", NULL), | ||
3005 | CLK_DUPLICATE("i2c5", "tegra-i2c-slave.4", NULL), | ||
3006 | CLK_DUPLICATE("sbc1", "spi_slave_tegra.0", NULL), | ||
3007 | CLK_DUPLICATE("sbc2", "spi_slave_tegra.1", NULL), | ||
3008 | CLK_DUPLICATE("sbc3", "spi_slave_tegra.2", NULL), | ||
3009 | CLK_DUPLICATE("sbc4", "spi_slave_tegra.3", NULL), | ||
3010 | CLK_DUPLICATE("sbc5", "spi_slave_tegra.4", NULL), | ||
3011 | CLK_DUPLICATE("sbc6", "spi_slave_tegra.5", NULL), | ||
3012 | CLK_DUPLICATE("twd", "smp_twd", NULL), | ||
3013 | CLK_DUPLICATE("vcp", "nvavp", "vcp"), | ||
3014 | CLK_DUPLICATE("i2s0", NULL, "i2s0"), | ||
3015 | CLK_DUPLICATE("i2s1", NULL, "i2s1"), | ||
3016 | CLK_DUPLICATE("i2s2", NULL, "i2s2"), | ||
3017 | CLK_DUPLICATE("i2s3", NULL, "i2s3"), | ||
3018 | CLK_DUPLICATE("i2s4", NULL, "i2s4"), | ||
3019 | CLK_DUPLICATE("dam0", NULL, "dam0"), | ||
3020 | CLK_DUPLICATE("dam1", NULL, "dam1"), | ||
3021 | CLK_DUPLICATE("dam2", NULL, "dam2"), | ||
3022 | CLK_DUPLICATE("spdif_in", NULL, "spdif_in"), | ||
3023 | }; | ||
3024 | |||
3025 | struct clk *tegra_ptr_clks[] = { | ||
3026 | &tegra_clk_32k, | ||
3027 | &tegra_clk_m, | ||
3028 | &tegra_clk_m_div2, | ||
3029 | &tegra_clk_m_div4, | ||
3030 | &tegra_pll_ref, | ||
3031 | &tegra_pll_m, | ||
3032 | &tegra_pll_m_out1, | ||
3033 | &tegra_pll_c, | ||
3034 | &tegra_pll_c_out1, | ||
3035 | &tegra_pll_p, | ||
3036 | &tegra_pll_p_out1, | ||
3037 | &tegra_pll_p_out2, | ||
3038 | &tegra_pll_p_out3, | ||
3039 | &tegra_pll_p_out4, | ||
3040 | &tegra_pll_a, | ||
3041 | &tegra_pll_a_out0, | ||
3042 | &tegra_pll_d, | ||
3043 | &tegra_pll_d_out0, | ||
3044 | &tegra_pll_d2, | ||
3045 | &tegra_pll_d2_out0, | ||
3046 | &tegra_pll_u, | ||
3047 | &tegra_pll_x, | ||
3048 | &tegra_pll_x_out0, | ||
3049 | &tegra_pll_e, | ||
3050 | &tegra_clk_cclk_g, | ||
3051 | &tegra_cml0_clk, | ||
3052 | &tegra_cml1_clk, | ||
3053 | &tegra_pciex_clk, | ||
3054 | &tegra_clk_sclk, | ||
3055 | &tegra_clk_blink, | ||
3056 | &tegra30_clk_twd, | ||
3057 | }; | ||
3058 | |||
3059 | |||
3060 | static void tegra30_init_one_clock(struct clk *c) | ||
3061 | { | ||
3062 | clk_init(c); | ||
3063 | INIT_LIST_HEAD(&c->shared_bus_list); | ||
3064 | if (!c->lookup.dev_id && !c->lookup.con_id) | ||
3065 | c->lookup.con_id = c->name; | ||
3066 | c->lookup.clk = c; | ||
3067 | clkdev_add(&c->lookup); | ||
3068 | } | ||
3069 | |||
3070 | void __init tegra30_init_clocks(void) | ||
3071 | { | ||
3072 | int i; | ||
3073 | struct clk *c; | ||
3074 | |||
3075 | for (i = 0; i < ARRAY_SIZE(tegra_ptr_clks); i++) | ||
3076 | tegra30_init_one_clock(tegra_ptr_clks[i]); | ||
3077 | |||
3078 | for (i = 0; i < ARRAY_SIZE(tegra_list_clks); i++) | ||
3079 | tegra30_init_one_clock(&tegra_list_clks[i]); | ||
3080 | |||
3081 | for (i = 0; i < ARRAY_SIZE(tegra_clk_duplicates); i++) { | ||
3082 | c = tegra_get_clock_by_name(tegra_clk_duplicates[i].name); | ||
3083 | if (!c) { | ||
3084 | pr_err("%s: Unknown duplicate clock %s\n", __func__, | ||
3085 | tegra_clk_duplicates[i].name); | ||
3086 | continue; | ||
3087 | } | ||
3088 | |||
3089 | tegra_clk_duplicates[i].lookup.clk = c; | ||
3090 | clkdev_add(&tegra_clk_duplicates[i].lookup); | ||
3091 | } | ||
3092 | |||
3093 | for (i = 0; i < ARRAY_SIZE(tegra_sync_source_list); i++) | ||
3094 | tegra30_init_one_clock(&tegra_sync_source_list[i]); | ||
3095 | for (i = 0; i < ARRAY_SIZE(tegra_clk_audio_list); i++) | ||
3096 | tegra30_init_one_clock(&tegra_clk_audio_list[i]); | ||
3097 | for (i = 0; i < ARRAY_SIZE(tegra_clk_audio_2x_list); i++) | ||
3098 | tegra30_init_one_clock(&tegra_clk_audio_2x_list[i]); | ||
3099 | |||
3100 | init_clk_out_mux(); | ||
3101 | for (i = 0; i < ARRAY_SIZE(tegra_clk_out_list); i++) | ||
3102 | tegra30_init_one_clock(&tegra_clk_out_list[i]); | ||
3103 | |||
3104 | } | ||
diff --git a/arch/arm/mach-tegra/tegra30_clocks.h b/arch/arm/mach-tegra/tegra30_clocks.h new file mode 100644 index 000000000000..f2f88fef6b8b --- /dev/null +++ b/arch/arm/mach-tegra/tegra30_clocks.h | |||
@@ -0,0 +1,53 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify it | ||
5 | * under the terms and conditions of the GNU General Public License, | ||
6 | * version 2, as published by the Free Software Foundation. | ||
7 | * | ||
8 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
11 | * more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
15 | */ | ||
16 | |||
17 | #ifndef __MACH_TEGRA30_CLOCK_H | ||
18 | #define __MACH_TEGRA30_CLOCK_H | ||
19 | |||
20 | extern struct clk_ops tegra30_clk_32k_ops; | ||
21 | extern struct clk_ops tegra30_clk_m_ops; | ||
22 | extern struct clk_ops tegra_clk_m_div_ops; | ||
23 | extern struct clk_ops tegra_pll_ref_ops; | ||
24 | extern struct clk_ops tegra30_pll_ops; | ||
25 | extern struct clk_ops tegra30_pll_div_ops; | ||
26 | extern struct clk_ops tegra_plld_ops; | ||
27 | extern struct clk_ops tegra30_plle_ops; | ||
28 | extern struct clk_ops tegra_cml_clk_ops; | ||
29 | extern struct clk_ops tegra_pciex_clk_ops; | ||
30 | extern struct clk_ops tegra_sync_source_ops; | ||
31 | extern struct clk_ops tegra30_audio_sync_clk_ops; | ||
32 | extern struct clk_ops tegra30_clk_double_ops; | ||
33 | extern struct clk_ops tegra_clk_out_ops; | ||
34 | extern struct clk_ops tegra30_super_ops; | ||
35 | extern struct clk_ops tegra30_blink_clk_ops; | ||
36 | extern struct clk_ops tegra30_twd_ops; | ||
37 | extern struct clk_ops tegra30_periph_clk_ops; | ||
38 | extern struct clk_ops tegra30_dsib_clk_ops; | ||
39 | extern struct clk_ops tegra_nand_clk_ops; | ||
40 | extern struct clk_ops tegra_vi_clk_ops; | ||
41 | extern struct clk_ops tegra_dtv_clk_ops; | ||
42 | extern struct clk_ops tegra_clk_shared_bus_ops; | ||
43 | |||
44 | int tegra30_plld_clk_cfg_ex(struct clk_hw *hw, | ||
45 | enum tegra_clk_ex_param p, u32 setting); | ||
46 | void tegra30_periph_clk_reset(struct clk_hw *hw, bool assert); | ||
47 | int tegra30_vi_clk_cfg_ex(struct clk_hw *hw, | ||
48 | enum tegra_clk_ex_param p, u32 setting); | ||
49 | int tegra30_nand_clk_cfg_ex(struct clk_hw *hw, | ||
50 | enum tegra_clk_ex_param p, u32 setting); | ||
51 | int tegra30_dtv_clk_cfg_ex(struct clk_hw *hw, | ||
52 | enum tegra_clk_ex_param p, u32 setting); | ||
53 | #endif | ||
diff --git a/arch/arm/mach-tegra/tegra30_clocks_data.c b/arch/arm/mach-tegra/tegra30_clocks_data.c new file mode 100644 index 000000000000..8d2dbdd59174 --- /dev/null +++ b/arch/arm/mach-tegra/tegra30_clocks_data.c | |||
@@ -0,0 +1,1374 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-tegra/tegra30_clocks.c | ||
3 | * | ||
4 | * Copyright (c) 2010-2012 NVIDIA CORPORATION. All rights reserved. | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License as published by | ||
8 | * the Free Software Foundation; version 2 of the License. | ||
9 | * | ||
10 | * This program is distributed in the hope that it will be useful, but WITHOUT | ||
11 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
12 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
13 | * more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License along | ||
16 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
17 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
18 | * | ||
19 | */ | ||
20 | |||
21 | #include <linux/clk-private.h> | ||
22 | #include <linux/kernel.h> | ||
23 | #include <linux/module.h> | ||
24 | #include <linux/list.h> | ||
25 | #include <linux/spinlock.h> | ||
26 | #include <linux/delay.h> | ||
27 | #include <linux/err.h> | ||
28 | #include <linux/io.h> | ||
29 | #include <linux/clk.h> | ||
30 | #include <linux/cpufreq.h> | ||
31 | |||
32 | #include "clock.h" | ||
33 | #include "fuse.h" | ||
34 | #include "tegra30_clocks.h" | ||
35 | |||
36 | #define DEFINE_CLK_TEGRA(_name, _rate, _ops, _flags, \ | ||
37 | _parent_names, _parents, _parent) \ | ||
38 | static struct clk tegra_##_name = { \ | ||
39 | .hw = &tegra_##_name##_hw.hw, \ | ||
40 | .name = #_name, \ | ||
41 | .rate = _rate, \ | ||
42 | .ops = _ops, \ | ||
43 | .flags = _flags, \ | ||
44 | .parent_names = _parent_names, \ | ||
45 | .parents = _parents, \ | ||
46 | .num_parents = ARRAY_SIZE(_parent_names), \ | ||
47 | .parent = _parent, \ | ||
48 | }; | ||
49 | |||
50 | static struct clk tegra_clk_32k; | ||
51 | static struct clk_tegra tegra_clk_32k_hw = { | ||
52 | .hw = { | ||
53 | .clk = &tegra_clk_32k, | ||
54 | }, | ||
55 | .fixed_rate = 32768, | ||
56 | }; | ||
57 | static struct clk tegra_clk_32k = { | ||
58 | .name = "clk_32k", | ||
59 | .hw = &tegra_clk_32k_hw.hw, | ||
60 | .ops = &tegra30_clk_32k_ops, | ||
61 | .flags = CLK_IS_ROOT, | ||
62 | }; | ||
63 | |||
64 | static struct clk tegra_clk_m; | ||
65 | static struct clk_tegra tegra_clk_m_hw = { | ||
66 | .hw = { | ||
67 | .clk = &tegra_clk_m, | ||
68 | }, | ||
69 | .flags = ENABLE_ON_INIT, | ||
70 | .reg = 0x1fc, | ||
71 | .reg_shift = 28, | ||
72 | .max_rate = 48000000, | ||
73 | }; | ||
74 | static struct clk tegra_clk_m = { | ||
75 | .name = "clk_m", | ||
76 | .hw = &tegra_clk_m_hw.hw, | ||
77 | .ops = &tegra30_clk_m_ops, | ||
78 | .flags = CLK_IS_ROOT | CLK_IGNORE_UNUSED, | ||
79 | }; | ||
80 | |||
81 | static const char *clk_m_div_parent_names[] = { | ||
82 | "clk_m", | ||
83 | }; | ||
84 | |||
85 | static struct clk *clk_m_div_parents[] = { | ||
86 | &tegra_clk_m, | ||
87 | }; | ||
88 | |||
89 | static struct clk tegra_clk_m_div2; | ||
90 | static struct clk_tegra tegra_clk_m_div2_hw = { | ||
91 | .hw = { | ||
92 | .clk = &tegra_clk_m_div2, | ||
93 | }, | ||
94 | .mul = 1, | ||
95 | .div = 2, | ||
96 | .max_rate = 24000000, | ||
97 | }; | ||
98 | DEFINE_CLK_TEGRA(clk_m_div2, 0, &tegra_clk_m_div_ops, 0, | ||
99 | clk_m_div_parent_names, clk_m_div_parents, &tegra_clk_m); | ||
100 | |||
101 | static struct clk tegra_clk_m_div4; | ||
102 | static struct clk_tegra tegra_clk_m_div4_hw = { | ||
103 | .hw = { | ||
104 | .clk = &tegra_clk_m_div4, | ||
105 | }, | ||
106 | .mul = 1, | ||
107 | .div = 4, | ||
108 | .max_rate = 12000000, | ||
109 | }; | ||
110 | DEFINE_CLK_TEGRA(clk_m_div4, 0, &tegra_clk_m_div_ops, 0, | ||
111 | clk_m_div_parent_names, clk_m_div_parents, &tegra_clk_m); | ||
112 | |||
113 | static struct clk tegra_pll_ref; | ||
114 | static struct clk_tegra tegra_pll_ref_hw = { | ||
115 | .hw = { | ||
116 | .clk = &tegra_pll_ref, | ||
117 | }, | ||
118 | .flags = ENABLE_ON_INIT, | ||
119 | .max_rate = 26000000, | ||
120 | }; | ||
121 | DEFINE_CLK_TEGRA(pll_ref, 0, &tegra_pll_ref_ops, 0, clk_m_div_parent_names, | ||
122 | clk_m_div_parents, &tegra_clk_m); | ||
123 | |||
124 | #define DEFINE_PLL(_name, _flags, _reg, _max_rate, _input_min, \ | ||
125 | _input_max, _cf_min, _cf_max, _vco_min, \ | ||
126 | _vco_max, _freq_table, _lock_delay, _ops, \ | ||
127 | _fixed_rate, _clk_cfg_ex, _parent) \ | ||
128 | static struct clk tegra_##_name; \ | ||
129 | static const char *_name##_parent_names[] = { \ | ||
130 | #_parent, \ | ||
131 | }; \ | ||
132 | static struct clk *_name##_parents[] = { \ | ||
133 | &tegra_##_parent, \ | ||
134 | }; \ | ||
135 | static struct clk_tegra tegra_##_name##_hw = { \ | ||
136 | .hw = { \ | ||
137 | .clk = &tegra_##_name, \ | ||
138 | }, \ | ||
139 | .flags = _flags, \ | ||
140 | .reg = _reg, \ | ||
141 | .max_rate = _max_rate, \ | ||
142 | .u.pll = { \ | ||
143 | .input_min = _input_min, \ | ||
144 | .input_max = _input_max, \ | ||
145 | .cf_min = _cf_min, \ | ||
146 | .cf_max = _cf_max, \ | ||
147 | .vco_min = _vco_min, \ | ||
148 | .vco_max = _vco_max, \ | ||
149 | .freq_table = _freq_table, \ | ||
150 | .lock_delay = _lock_delay, \ | ||
151 | .fixed_rate = _fixed_rate, \ | ||
152 | }, \ | ||
153 | .clk_cfg_ex = _clk_cfg_ex, \ | ||
154 | }; \ | ||
155 | DEFINE_CLK_TEGRA(_name, 0, &_ops, CLK_IGNORE_UNUSED, \ | ||
156 | _name##_parent_names, _name##_parents, \ | ||
157 | &tegra_##_parent); | ||
158 | |||
159 | #define DEFINE_PLL_OUT(_name, _flags, _reg, _reg_shift, \ | ||
160 | _max_rate, _ops, _parent, _clk_flags) \ | ||
161 | static const char *_name##_parent_names[] = { \ | ||
162 | #_parent, \ | ||
163 | }; \ | ||
164 | static struct clk *_name##_parents[] = { \ | ||
165 | &tegra_##_parent, \ | ||
166 | }; \ | ||
167 | static struct clk tegra_##_name; \ | ||
168 | static struct clk_tegra tegra_##_name##_hw = { \ | ||
169 | .hw = { \ | ||
170 | .clk = &tegra_##_name, \ | ||
171 | }, \ | ||
172 | .flags = _flags, \ | ||
173 | .reg = _reg, \ | ||
174 | .max_rate = _max_rate, \ | ||
175 | .reg_shift = _reg_shift, \ | ||
176 | }; \ | ||
177 | DEFINE_CLK_TEGRA(_name, 0, &tegra30_pll_div_ops, \ | ||
178 | _clk_flags, _name##_parent_names, \ | ||
179 | _name##_parents, &tegra_##_parent); | ||
180 | |||
181 | static struct clk_pll_freq_table tegra_pll_c_freq_table[] = { | ||
182 | { 12000000, 1040000000, 520, 6, 1, 8}, | ||
183 | { 13000000, 1040000000, 480, 6, 1, 8}, | ||
184 | { 16800000, 1040000000, 495, 8, 1, 8}, /* actual: 1039.5 MHz */ | ||
185 | { 19200000, 1040000000, 325, 6, 1, 6}, | ||
186 | { 26000000, 1040000000, 520, 13, 1, 8}, | ||
187 | |||
188 | { 12000000, 832000000, 416, 6, 1, 8}, | ||
189 | { 13000000, 832000000, 832, 13, 1, 8}, | ||
190 | { 16800000, 832000000, 396, 8, 1, 8}, /* actual: 831.6 MHz */ | ||
191 | { 19200000, 832000000, 260, 6, 1, 8}, | ||
192 | { 26000000, 832000000, 416, 13, 1, 8}, | ||
193 | |||
194 | { 12000000, 624000000, 624, 12, 1, 8}, | ||
195 | { 13000000, 624000000, 624, 13, 1, 8}, | ||
196 | { 16800000, 600000000, 520, 14, 1, 8}, | ||
197 | { 19200000, 624000000, 520, 16, 1, 8}, | ||
198 | { 26000000, 624000000, 624, 26, 1, 8}, | ||
199 | |||
200 | { 12000000, 600000000, 600, 12, 1, 8}, | ||
201 | { 13000000, 600000000, 600, 13, 1, 8}, | ||
202 | { 16800000, 600000000, 500, 14, 1, 8}, | ||
203 | { 19200000, 600000000, 375, 12, 1, 6}, | ||
204 | { 26000000, 600000000, 600, 26, 1, 8}, | ||
205 | |||
206 | { 12000000, 520000000, 520, 12, 1, 8}, | ||
207 | { 13000000, 520000000, 520, 13, 1, 8}, | ||
208 | { 16800000, 520000000, 495, 16, 1, 8}, /* actual: 519.75 MHz */ | ||
209 | { 19200000, 520000000, 325, 12, 1, 6}, | ||
210 | { 26000000, 520000000, 520, 26, 1, 8}, | ||
211 | |||
212 | { 12000000, 416000000, 416, 12, 1, 8}, | ||
213 | { 13000000, 416000000, 416, 13, 1, 8}, | ||
214 | { 16800000, 416000000, 396, 16, 1, 8}, /* actual: 415.8 MHz */ | ||
215 | { 19200000, 416000000, 260, 12, 1, 6}, | ||
216 | { 26000000, 416000000, 416, 26, 1, 8}, | ||
217 | { 0, 0, 0, 0, 0, 0 }, | ||
218 | }; | ||
219 | |||
220 | DEFINE_PLL(pll_c, PLL_HAS_CPCON, 0x80, 1400000000, 2000000, 31000000, 1000000, | ||
221 | 6000000, 20000000, 1400000000, tegra_pll_c_freq_table, 300, | ||
222 | tegra30_pll_ops, 0, NULL, pll_ref); | ||
223 | |||
224 | DEFINE_PLL_OUT(pll_c_out1, DIV_U71, 0x84, 0, 700000000, | ||
225 | tegra30_pll_div_ops, pll_c, CLK_IGNORE_UNUSED); | ||
226 | |||
227 | static struct clk_pll_freq_table tegra_pll_m_freq_table[] = { | ||
228 | { 12000000, 666000000, 666, 12, 1, 8}, | ||
229 | { 13000000, 666000000, 666, 13, 1, 8}, | ||
230 | { 16800000, 666000000, 555, 14, 1, 8}, | ||
231 | { 19200000, 666000000, 555, 16, 1, 8}, | ||
232 | { 26000000, 666000000, 666, 26, 1, 8}, | ||
233 | { 12000000, 600000000, 600, 12, 1, 8}, | ||
234 | { 13000000, 600000000, 600, 13, 1, 8}, | ||
235 | { 16800000, 600000000, 500, 14, 1, 8}, | ||
236 | { 19200000, 600000000, 375, 12, 1, 6}, | ||
237 | { 26000000, 600000000, 600, 26, 1, 8}, | ||
238 | { 0, 0, 0, 0, 0, 0 }, | ||
239 | }; | ||
240 | |||
241 | DEFINE_PLL(pll_m, PLL_HAS_CPCON | PLLM, 0x90, 800000000, 2000000, 31000000, | ||
242 | 1000000, 6000000, 20000000, 1200000000, tegra_pll_m_freq_table, | ||
243 | 300, tegra30_pll_ops, 0, NULL, pll_ref); | ||
244 | |||
245 | DEFINE_PLL_OUT(pll_m_out1, DIV_U71, 0x94, 0, 600000000, | ||
246 | tegra30_pll_div_ops, pll_m, CLK_IGNORE_UNUSED); | ||
247 | |||
248 | static struct clk_pll_freq_table tegra_pll_p_freq_table[] = { | ||
249 | { 12000000, 216000000, 432, 12, 2, 8}, | ||
250 | { 13000000, 216000000, 432, 13, 2, 8}, | ||
251 | { 16800000, 216000000, 360, 14, 2, 8}, | ||
252 | { 19200000, 216000000, 360, 16, 2, 8}, | ||
253 | { 26000000, 216000000, 432, 26, 2, 8}, | ||
254 | { 0, 0, 0, 0, 0, 0 }, | ||
255 | }; | ||
256 | |||
257 | DEFINE_PLL(pll_p, ENABLE_ON_INIT | PLL_FIXED | PLL_HAS_CPCON, 0xa0, 432000000, | ||
258 | 2000000, 31000000, 1000000, 6000000, 20000000, 1400000000, | ||
259 | tegra_pll_p_freq_table, 300, tegra30_pll_ops, 408000000, NULL, | ||
260 | pll_ref); | ||
261 | |||
262 | DEFINE_PLL_OUT(pll_p_out1, ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, 0xa4, | ||
263 | 0, 432000000, tegra30_pll_div_ops, pll_p, CLK_IGNORE_UNUSED); | ||
264 | DEFINE_PLL_OUT(pll_p_out2, ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, 0xa4, | ||
265 | 16, 432000000, tegra30_pll_div_ops, pll_p, CLK_IGNORE_UNUSED); | ||
266 | DEFINE_PLL_OUT(pll_p_out3, ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, 0xa8, | ||
267 | 0, 432000000, tegra30_pll_div_ops, pll_p, CLK_IGNORE_UNUSED); | ||
268 | DEFINE_PLL_OUT(pll_p_out4, ENABLE_ON_INIT | DIV_U71 | DIV_U71_FIXED, 0xa8, | ||
269 | 16, 432000000, tegra30_pll_div_ops, pll_p, CLK_IGNORE_UNUSED); | ||
270 | |||
271 | static struct clk_pll_freq_table tegra_pll_a_freq_table[] = { | ||
272 | { 9600000, 564480000, 294, 5, 1, 4}, | ||
273 | { 9600000, 552960000, 288, 5, 1, 4}, | ||
274 | { 9600000, 24000000, 5, 2, 1, 1}, | ||
275 | |||
276 | { 28800000, 56448000, 49, 25, 1, 1}, | ||
277 | { 28800000, 73728000, 64, 25, 1, 1}, | ||
278 | { 28800000, 24000000, 5, 6, 1, 1}, | ||
279 | { 0, 0, 0, 0, 0, 0 }, | ||
280 | }; | ||
281 | |||
282 | DEFINE_PLL(pll_a, PLL_HAS_CPCON, 0xb0, 700000000, 2000000, 31000000, 1000000, | ||
283 | 6000000, 20000000, 1400000000, tegra_pll_a_freq_table, | ||
284 | 300, tegra30_pll_ops, 0, NULL, pll_p_out1); | ||
285 | |||
286 | DEFINE_PLL_OUT(pll_a_out0, DIV_U71, 0xb4, 0, 100000000, tegra30_pll_div_ops, | ||
287 | pll_a, CLK_IGNORE_UNUSED); | ||
288 | |||
289 | static struct clk_pll_freq_table tegra_pll_d_freq_table[] = { | ||
290 | { 12000000, 216000000, 216, 12, 1, 4}, | ||
291 | { 13000000, 216000000, 216, 13, 1, 4}, | ||
292 | { 16800000, 216000000, 180, 14, 1, 4}, | ||
293 | { 19200000, 216000000, 180, 16, 1, 4}, | ||
294 | { 26000000, 216000000, 216, 26, 1, 4}, | ||
295 | |||
296 | { 12000000, 594000000, 594, 12, 1, 8}, | ||
297 | { 13000000, 594000000, 594, 13, 1, 8}, | ||
298 | { 16800000, 594000000, 495, 14, 1, 8}, | ||
299 | { 19200000, 594000000, 495, 16, 1, 8}, | ||
300 | { 26000000, 594000000, 594, 26, 1, 8}, | ||
301 | |||
302 | { 12000000, 1000000000, 1000, 12, 1, 12}, | ||
303 | { 13000000, 1000000000, 1000, 13, 1, 12}, | ||
304 | { 19200000, 1000000000, 625, 12, 1, 8}, | ||
305 | { 26000000, 1000000000, 1000, 26, 1, 12}, | ||
306 | |||
307 | { 0, 0, 0, 0, 0, 0 }, | ||
308 | }; | ||
309 | |||
310 | DEFINE_PLL(pll_d, PLL_HAS_CPCON | PLLD, 0xd0, 1000000000, 2000000, 40000000, | ||
311 | 1000000, 6000000, 40000000, 1000000000, tegra_pll_d_freq_table, | ||
312 | 1000, tegra30_pll_ops, 0, tegra30_plld_clk_cfg_ex, pll_ref); | ||
313 | |||
314 | DEFINE_PLL_OUT(pll_d_out0, DIV_2 | PLLD, 0, 0, 500000000, tegra30_pll_div_ops, | ||
315 | pll_d, CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED); | ||
316 | |||
317 | DEFINE_PLL(pll_d2, PLL_HAS_CPCON | PLL_ALT_MISC_REG | PLLD, 0x4b8, 1000000000, | ||
318 | 2000000, 40000000, 1000000, 6000000, 40000000, 1000000000, | ||
319 | tegra_pll_d_freq_table, 1000, tegra30_pll_ops, 0, NULL, | ||
320 | pll_ref); | ||
321 | |||
322 | DEFINE_PLL_OUT(pll_d2_out0, DIV_2 | PLLD, 0, 0, 500000000, tegra30_pll_div_ops, | ||
323 | pll_d2, CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED); | ||
324 | |||
325 | static struct clk_pll_freq_table tegra_pll_u_freq_table[] = { | ||
326 | { 12000000, 480000000, 960, 12, 2, 12}, | ||
327 | { 13000000, 480000000, 960, 13, 2, 12}, | ||
328 | { 16800000, 480000000, 400, 7, 2, 5}, | ||
329 | { 19200000, 480000000, 200, 4, 2, 3}, | ||
330 | { 26000000, 480000000, 960, 26, 2, 12}, | ||
331 | { 0, 0, 0, 0, 0, 0 }, | ||
332 | }; | ||
333 | |||
334 | DEFINE_PLL(pll_u, PLL_HAS_CPCON | PLLU, 0xc0, 480000000, 2000000, 40000000, | ||
335 | 1000000, 6000000, 48000000, 960000000, tegra_pll_u_freq_table, | ||
336 | 1000, tegra30_pll_ops, 0, NULL, pll_ref); | ||
337 | |||
338 | static struct clk_pll_freq_table tegra_pll_x_freq_table[] = { | ||
339 | /* 1.7 GHz */ | ||
340 | { 12000000, 1700000000, 850, 6, 1, 8}, | ||
341 | { 13000000, 1700000000, 915, 7, 1, 8}, /* actual: 1699.2 MHz */ | ||
342 | { 16800000, 1700000000, 708, 7, 1, 8}, /* actual: 1699.2 MHz */ | ||
343 | { 19200000, 1700000000, 885, 10, 1, 8}, /* actual: 1699.2 MHz */ | ||
344 | { 26000000, 1700000000, 850, 13, 1, 8}, | ||
345 | |||
346 | /* 1.6 GHz */ | ||
347 | { 12000000, 1600000000, 800, 6, 1, 8}, | ||
348 | { 13000000, 1600000000, 738, 6, 1, 8}, /* actual: 1599.0 MHz */ | ||
349 | { 16800000, 1600000000, 857, 9, 1, 8}, /* actual: 1599.7 MHz */ | ||
350 | { 19200000, 1600000000, 500, 6, 1, 8}, | ||
351 | { 26000000, 1600000000, 800, 13, 1, 8}, | ||
352 | |||
353 | /* 1.5 GHz */ | ||
354 | { 12000000, 1500000000, 750, 6, 1, 8}, | ||
355 | { 13000000, 1500000000, 923, 8, 1, 8}, /* actual: 1499.8 MHz */ | ||
356 | { 16800000, 1500000000, 625, 7, 1, 8}, | ||
357 | { 19200000, 1500000000, 625, 8, 1, 8}, | ||
358 | { 26000000, 1500000000, 750, 13, 1, 8}, | ||
359 | |||
360 | /* 1.4 GHz */ | ||
361 | { 12000000, 1400000000, 700, 6, 1, 8}, | ||
362 | { 13000000, 1400000000, 969, 9, 1, 8}, /* actual: 1399.7 MHz */ | ||
363 | { 16800000, 1400000000, 1000, 12, 1, 8}, | ||
364 | { 19200000, 1400000000, 875, 12, 1, 8}, | ||
365 | { 26000000, 1400000000, 700, 13, 1, 8}, | ||
366 | |||
367 | /* 1.3 GHz */ | ||
368 | { 12000000, 1300000000, 975, 9, 1, 8}, | ||
369 | { 13000000, 1300000000, 1000, 10, 1, 8}, | ||
370 | { 16800000, 1300000000, 928, 12, 1, 8}, /* actual: 1299.2 MHz */ | ||
371 | { 19200000, 1300000000, 812, 12, 1, 8}, /* actual: 1299.2 MHz */ | ||
372 | { 26000000, 1300000000, 650, 13, 1, 8}, | ||
373 | |||
374 | /* 1.2 GHz */ | ||
375 | { 12000000, 1200000000, 1000, 10, 1, 8}, | ||
376 | { 13000000, 1200000000, 923, 10, 1, 8}, /* actual: 1199.9 MHz */ | ||
377 | { 16800000, 1200000000, 1000, 14, 1, 8}, | ||
378 | { 19200000, 1200000000, 1000, 16, 1, 8}, | ||
379 | { 26000000, 1200000000, 600, 13, 1, 8}, | ||
380 | |||
381 | /* 1.1 GHz */ | ||
382 | { 12000000, 1100000000, 825, 9, 1, 8}, | ||
383 | { 13000000, 1100000000, 846, 10, 1, 8}, /* actual: 1099.8 MHz */ | ||
384 | { 16800000, 1100000000, 982, 15, 1, 8}, /* actual: 1099.8 MHz */ | ||
385 | { 19200000, 1100000000, 859, 15, 1, 8}, /* actual: 1099.5 MHz */ | ||
386 | { 26000000, 1100000000, 550, 13, 1, 8}, | ||
387 | |||
388 | /* 1 GHz */ | ||
389 | { 12000000, 1000000000, 1000, 12, 1, 8}, | ||
390 | { 13000000, 1000000000, 1000, 13, 1, 8}, | ||
391 | { 16800000, 1000000000, 833, 14, 1, 8}, /* actual: 999.6 MHz */ | ||
392 | { 19200000, 1000000000, 625, 12, 1, 8}, | ||
393 | { 26000000, 1000000000, 1000, 26, 1, 8}, | ||
394 | |||
395 | { 0, 0, 0, 0, 0, 0 }, | ||
396 | }; | ||
397 | |||
398 | DEFINE_PLL(pll_x, PLL_HAS_CPCON | PLL_ALT_MISC_REG | PLLX, 0xe0, 1700000000, | ||
399 | 2000000, 31000000, 1000000, 6000000, 20000000, 1700000000, | ||
400 | tegra_pll_x_freq_table, 300, tegra30_pll_ops, 0, NULL, pll_ref); | ||
401 | |||
402 | DEFINE_PLL_OUT(pll_x_out0, DIV_2 | PLLX, 0, 0, 850000000, tegra30_pll_div_ops, | ||
403 | pll_x, CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED); | ||
404 | |||
405 | static struct clk_pll_freq_table tegra_pll_e_freq_table[] = { | ||
406 | /* PLLE special case: use cpcon field to store cml divider value */ | ||
407 | { 12000000, 100000000, 150, 1, 18, 11}, | ||
408 | { 216000000, 100000000, 200, 18, 24, 13}, | ||
409 | { 0, 0, 0, 0, 0, 0 }, | ||
410 | }; | ||
411 | |||
412 | DEFINE_PLL(pll_e, PLL_ALT_MISC_REG, 0xe8, 100000000, 2000000, 216000000, | ||
413 | 12000000, 12000000, 1200000000, 2400000000U, | ||
414 | tegra_pll_e_freq_table, 300, tegra30_plle_ops, 100000000, NULL, | ||
415 | pll_ref); | ||
416 | |||
417 | static const char *mux_plle[] = { | ||
418 | "pll_e", | ||
419 | }; | ||
420 | |||
421 | static struct clk *mux_plle_p[] = { | ||
422 | &tegra_pll_e, | ||
423 | }; | ||
424 | |||
425 | static struct clk tegra_cml0; | ||
426 | static struct clk_tegra tegra_cml0_hw = { | ||
427 | .hw = { | ||
428 | .clk = &tegra_cml0, | ||
429 | }, | ||
430 | .reg = 0x48c, | ||
431 | .fixed_rate = 100000000, | ||
432 | .u.periph = { | ||
433 | .clk_num = 0, | ||
434 | }, | ||
435 | }; | ||
436 | DEFINE_CLK_TEGRA(cml0, 0, &tegra_cml_clk_ops, 0, mux_plle, | ||
437 | mux_plle_p, &tegra_pll_e); | ||
438 | |||
439 | static struct clk tegra_cml1; | ||
440 | static struct clk_tegra tegra_cml1_hw = { | ||
441 | .hw = { | ||
442 | .clk = &tegra_cml1, | ||
443 | }, | ||
444 | .reg = 0x48c, | ||
445 | .fixed_rate = 100000000, | ||
446 | .u.periph = { | ||
447 | .clk_num = 1, | ||
448 | }, | ||
449 | }; | ||
450 | DEFINE_CLK_TEGRA(cml1, 0, &tegra_cml_clk_ops, 0, mux_plle, | ||
451 | mux_plle_p, &tegra_pll_e); | ||
452 | |||
453 | static struct clk tegra_pciex; | ||
454 | static struct clk_tegra tegra_pciex_hw = { | ||
455 | .hw = { | ||
456 | .clk = &tegra_pciex, | ||
457 | }, | ||
458 | .reg = 0x48c, | ||
459 | .fixed_rate = 100000000, | ||
460 | .reset = tegra30_periph_clk_reset, | ||
461 | .u.periph = { | ||
462 | .clk_num = 74, | ||
463 | }, | ||
464 | }; | ||
465 | DEFINE_CLK_TEGRA(pciex, 0, &tegra_pciex_clk_ops, 0, mux_plle, | ||
466 | mux_plle_p, &tegra_pll_e); | ||
467 | |||
468 | #define SYNC_SOURCE(_name) \ | ||
469 | static struct clk tegra_##_name##_sync; \ | ||
470 | static struct clk_tegra tegra_##_name##_sync_hw = { \ | ||
471 | .hw = { \ | ||
472 | .clk = &tegra_##_name##_sync, \ | ||
473 | }, \ | ||
474 | .max_rate = 24000000, \ | ||
475 | .fixed_rate = 24000000, \ | ||
476 | }; \ | ||
477 | static struct clk tegra_##_name##_sync = { \ | ||
478 | .name = #_name "_sync", \ | ||
479 | .hw = &tegra_##_name##_sync_hw.hw, \ | ||
480 | .ops = &tegra_sync_source_ops, \ | ||
481 | .flags = CLK_IS_ROOT, \ | ||
482 | }; | ||
483 | |||
484 | SYNC_SOURCE(spdif_in); | ||
485 | SYNC_SOURCE(i2s0); | ||
486 | SYNC_SOURCE(i2s1); | ||
487 | SYNC_SOURCE(i2s2); | ||
488 | SYNC_SOURCE(i2s3); | ||
489 | SYNC_SOURCE(i2s4); | ||
490 | SYNC_SOURCE(vimclk); | ||
491 | |||
492 | static struct clk *tegra_sync_source_list[] = { | ||
493 | &tegra_spdif_in_sync, | ||
494 | &tegra_i2s0_sync, | ||
495 | &tegra_i2s1_sync, | ||
496 | &tegra_i2s2_sync, | ||
497 | &tegra_i2s3_sync, | ||
498 | &tegra_i2s4_sync, | ||
499 | &tegra_vimclk_sync, | ||
500 | }; | ||
501 | |||
502 | static const char *mux_audio_sync_clk[] = { | ||
503 | "spdif_in_sync", | ||
504 | "i2s0_sync", | ||
505 | "i2s1_sync", | ||
506 | "i2s2_sync", | ||
507 | "i2s3_sync", | ||
508 | "i2s4_sync", | ||
509 | "vimclk_sync", | ||
510 | }; | ||
511 | |||
512 | #define AUDIO_SYNC_CLK(_name, _index) \ | ||
513 | static struct clk tegra_##_name; \ | ||
514 | static struct clk_tegra tegra_##_name##_hw = { \ | ||
515 | .hw = { \ | ||
516 | .clk = &tegra_##_name, \ | ||
517 | }, \ | ||
518 | .max_rate = 24000000, \ | ||
519 | .reg = 0x4A0 + (_index) * 4, \ | ||
520 | }; \ | ||
521 | static struct clk tegra_##_name = { \ | ||
522 | .name = #_name, \ | ||
523 | .ops = &tegra30_audio_sync_clk_ops, \ | ||
524 | .hw = &tegra_##_name##_hw.hw, \ | ||
525 | .parent_names = mux_audio_sync_clk, \ | ||
526 | .parents = tegra_sync_source_list, \ | ||
527 | .num_parents = ARRAY_SIZE(mux_audio_sync_clk), \ | ||
528 | }; | ||
529 | |||
530 | AUDIO_SYNC_CLK(audio0, 0); | ||
531 | AUDIO_SYNC_CLK(audio1, 1); | ||
532 | AUDIO_SYNC_CLK(audio2, 2); | ||
533 | AUDIO_SYNC_CLK(audio3, 3); | ||
534 | AUDIO_SYNC_CLK(audio4, 4); | ||
535 | AUDIO_SYNC_CLK(audio5, 5); | ||
536 | |||
537 | static struct clk *tegra_clk_audio_list[] = { | ||
538 | &tegra_audio0, | ||
539 | &tegra_audio1, | ||
540 | &tegra_audio2, | ||
541 | &tegra_audio3, | ||
542 | &tegra_audio4, | ||
543 | &tegra_audio5, /* SPDIF */ | ||
544 | }; | ||
545 | |||
546 | #define AUDIO_SYNC_2X_CLK(_name, _index) \ | ||
547 | static const char *_name##_parent_names[] = { \ | ||
548 | "tegra_" #_name, \ | ||
549 | }; \ | ||
550 | static struct clk *_name##_parents[] = { \ | ||
551 | &tegra_##_name, \ | ||
552 | }; \ | ||
553 | static struct clk tegra_##_name##_2x; \ | ||
554 | static struct clk_tegra tegra_##_name##_2x_hw = { \ | ||
555 | .hw = { \ | ||
556 | .clk = &tegra_##_name##_2x, \ | ||
557 | }, \ | ||
558 | .flags = PERIPH_NO_RESET, \ | ||
559 | .max_rate = 48000000, \ | ||
560 | .reg = 0x49C, \ | ||
561 | .reg_shift = 24 + (_index), \ | ||
562 | .u.periph = { \ | ||
563 | .clk_num = 113 + (_index), \ | ||
564 | }, \ | ||
565 | }; \ | ||
566 | static struct clk tegra_##_name##_2x = { \ | ||
567 | .name = #_name "_2x", \ | ||
568 | .ops = &tegra30_clk_double_ops, \ | ||
569 | .hw = &tegra_##_name##_2x_hw.hw, \ | ||
570 | .parent_names = _name##_parent_names, \ | ||
571 | .parents = _name##_parents, \ | ||
572 | .parent = &tegra_##_name, \ | ||
573 | .num_parents = 1, \ | ||
574 | }; | ||
575 | |||
576 | AUDIO_SYNC_2X_CLK(audio0, 0); | ||
577 | AUDIO_SYNC_2X_CLK(audio1, 1); | ||
578 | AUDIO_SYNC_2X_CLK(audio2, 2); | ||
579 | AUDIO_SYNC_2X_CLK(audio3, 3); | ||
580 | AUDIO_SYNC_2X_CLK(audio4, 4); | ||
581 | AUDIO_SYNC_2X_CLK(audio5, 5); /* SPDIF */ | ||
582 | |||
583 | static struct clk *tegra_clk_audio_2x_list[] = { | ||
584 | &tegra_audio0_2x, | ||
585 | &tegra_audio1_2x, | ||
586 | &tegra_audio2_2x, | ||
587 | &tegra_audio3_2x, | ||
588 | &tegra_audio4_2x, | ||
589 | &tegra_audio5_2x, /* SPDIF */ | ||
590 | }; | ||
591 | |||
592 | #define MUX_I2S_SPDIF(_id) \ | ||
593 | static const char *mux_pllaout0_##_id##_2x_pllp_clkm[] = { \ | ||
594 | "pll_a_out0", \ | ||
595 | #_id "_2x", \ | ||
596 | "pll_p", \ | ||
597 | "clk_m", \ | ||
598 | }; \ | ||
599 | static struct clk *mux_pllaout0_##_id##_2x_pllp_clkm_p[] = { \ | ||
600 | &tegra_pll_a_out0, \ | ||
601 | &tegra_##_id##_2x, \ | ||
602 | &tegra_pll_p, \ | ||
603 | &tegra_clk_m, \ | ||
604 | }; | ||
605 | |||
606 | MUX_I2S_SPDIF(audio0); | ||
607 | MUX_I2S_SPDIF(audio1); | ||
608 | MUX_I2S_SPDIF(audio2); | ||
609 | MUX_I2S_SPDIF(audio3); | ||
610 | MUX_I2S_SPDIF(audio4); | ||
611 | MUX_I2S_SPDIF(audio5); /* SPDIF */ | ||
612 | |||
613 | static struct clk tegra_extern1; | ||
614 | static struct clk tegra_extern2; | ||
615 | static struct clk tegra_extern3; | ||
616 | |||
617 | /* External clock outputs (through PMC) */ | ||
618 | #define MUX_EXTERN_OUT(_id) \ | ||
619 | static const char *mux_clkm_clkm2_clkm4_extern##_id[] = { \ | ||
620 | "clk_m", \ | ||
621 | "clk_m_div2", \ | ||
622 | "clk_m_div4", \ | ||
623 | "extern" #_id, \ | ||
624 | }; \ | ||
625 | static struct clk *mux_clkm_clkm2_clkm4_extern##_id##_p[] = { \ | ||
626 | &tegra_clk_m, \ | ||
627 | &tegra_clk_m_div2, \ | ||
628 | &tegra_clk_m_div4, \ | ||
629 | &tegra_extern##_id, \ | ||
630 | }; | ||
631 | |||
632 | MUX_EXTERN_OUT(1); | ||
633 | MUX_EXTERN_OUT(2); | ||
634 | MUX_EXTERN_OUT(3); | ||
635 | |||
636 | #define CLK_OUT_CLK(_name, _index) \ | ||
637 | static struct clk tegra_##_name; \ | ||
638 | static struct clk_tegra tegra_##_name##_hw = { \ | ||
639 | .hw = { \ | ||
640 | .clk = &tegra_##_name, \ | ||
641 | }, \ | ||
642 | .lookup = { \ | ||
643 | .dev_id = #_name, \ | ||
644 | .con_id = "extern" #_index, \ | ||
645 | }, \ | ||
646 | .flags = MUX_CLK_OUT, \ | ||
647 | .fixed_rate = 216000000, \ | ||
648 | .reg = 0x1a8, \ | ||
649 | .u.periph = { \ | ||
650 | .clk_num = (_index - 1) * 8 + 2, \ | ||
651 | }, \ | ||
652 | }; \ | ||
653 | static struct clk tegra_##_name = { \ | ||
654 | .name = #_name, \ | ||
655 | .ops = &tegra_clk_out_ops, \ | ||
656 | .hw = &tegra_##_name##_hw.hw, \ | ||
657 | .parent_names = mux_clkm_clkm2_clkm4_extern##_index, \ | ||
658 | .parents = mux_clkm_clkm2_clkm4_extern##_index##_p, \ | ||
659 | .num_parents = ARRAY_SIZE(mux_clkm_clkm2_clkm4_extern##_index),\ | ||
660 | }; | ||
661 | |||
662 | CLK_OUT_CLK(clk_out_1, 1); | ||
663 | CLK_OUT_CLK(clk_out_2, 2); | ||
664 | CLK_OUT_CLK(clk_out_3, 3); | ||
665 | |||
666 | static struct clk *tegra_clk_out_list[] = { | ||
667 | &tegra_clk_out_1, | ||
668 | &tegra_clk_out_2, | ||
669 | &tegra_clk_out_3, | ||
670 | }; | ||
671 | |||
672 | static const char *mux_sclk[] = { | ||
673 | "clk_m", | ||
674 | "pll_c_out1", | ||
675 | "pll_p_out4", | ||
676 | "pll_p_out3", | ||
677 | "pll_p_out2", | ||
678 | "dummy", | ||
679 | "clk_32k", | ||
680 | "pll_m_out1", | ||
681 | }; | ||
682 | |||
683 | static struct clk *mux_sclk_p[] = { | ||
684 | &tegra_clk_m, | ||
685 | &tegra_pll_c_out1, | ||
686 | &tegra_pll_p_out4, | ||
687 | &tegra_pll_p_out3, | ||
688 | &tegra_pll_p_out2, | ||
689 | NULL, | ||
690 | &tegra_clk_32k, | ||
691 | &tegra_pll_m_out1, | ||
692 | }; | ||
693 | |||
694 | static struct clk tegra_clk_sclk; | ||
695 | static struct clk_tegra tegra_clk_sclk_hw = { | ||
696 | .hw = { | ||
697 | .clk = &tegra_clk_sclk, | ||
698 | }, | ||
699 | .reg = 0x28, | ||
700 | .max_rate = 334000000, | ||
701 | .min_rate = 40000000, | ||
702 | }; | ||
703 | |||
704 | static struct clk tegra_clk_sclk = { | ||
705 | .name = "sclk", | ||
706 | .ops = &tegra30_super_ops, | ||
707 | .hw = &tegra_clk_sclk_hw.hw, | ||
708 | .parent_names = mux_sclk, | ||
709 | .parents = mux_sclk_p, | ||
710 | .num_parents = ARRAY_SIZE(mux_sclk), | ||
711 | }; | ||
712 | |||
713 | static const char *mux_blink[] = { | ||
714 | "clk_32k", | ||
715 | }; | ||
716 | |||
717 | static struct clk *mux_blink_p[] = { | ||
718 | &tegra_clk_32k, | ||
719 | }; | ||
720 | |||
721 | static struct clk tegra_clk_blink; | ||
722 | static struct clk_tegra tegra_clk_blink_hw = { | ||
723 | .hw = { | ||
724 | .clk = &tegra_clk_blink, | ||
725 | }, | ||
726 | .reg = 0x40, | ||
727 | .max_rate = 32768, | ||
728 | }; | ||
729 | static struct clk tegra_clk_blink = { | ||
730 | .name = "blink", | ||
731 | .ops = &tegra30_blink_clk_ops, | ||
732 | .hw = &tegra_clk_blink_hw.hw, | ||
733 | .parent = &tegra_clk_32k, | ||
734 | .parent_names = mux_blink, | ||
735 | .parents = mux_blink_p, | ||
736 | .num_parents = ARRAY_SIZE(mux_blink), | ||
737 | }; | ||
738 | |||
739 | static const char *mux_pllm_pllc_pllp_plla[] = { | ||
740 | "pll_m", | ||
741 | "pll_c", | ||
742 | "pll_p", | ||
743 | "pll_a_out0", | ||
744 | }; | ||
745 | |||
746 | static const char *mux_pllp_pllc_pllm_clkm[] = { | ||
747 | "pll_p", | ||
748 | "pll_c", | ||
749 | "pll_m", | ||
750 | "clk_m", | ||
751 | }; | ||
752 | |||
753 | static const char *mux_pllp_clkm[] = { | ||
754 | "pll_p", | ||
755 | "dummy", | ||
756 | "dummy", | ||
757 | "clk_m", | ||
758 | }; | ||
759 | |||
760 | static const char *mux_pllp_plld_pllc_clkm[] = { | ||
761 | "pll_p", | ||
762 | "pll_d_out0", | ||
763 | "pll_c", | ||
764 | "clk_m", | ||
765 | }; | ||
766 | |||
767 | static const char *mux_pllp_pllm_plld_plla_pllc_plld2_clkm[] = { | ||
768 | "pll_p", | ||
769 | "pll_m", | ||
770 | "pll_d_out0", | ||
771 | "pll_a_out0", | ||
772 | "pll_c", | ||
773 | "pll_d2_out0", | ||
774 | "clk_m", | ||
775 | }; | ||
776 | |||
777 | static const char *mux_plla_pllc_pllp_clkm[] = { | ||
778 | "pll_a_out0", | ||
779 | "dummy", | ||
780 | "pll_p", | ||
781 | "clk_m" | ||
782 | }; | ||
783 | |||
784 | static const char *mux_pllp_pllc_clk32_clkm[] = { | ||
785 | "pll_p", | ||
786 | "pll_c", | ||
787 | "clk_32k", | ||
788 | "clk_m", | ||
789 | }; | ||
790 | |||
791 | static const char *mux_pllp_pllc_clkm_clk32[] = { | ||
792 | "pll_p", | ||
793 | "pll_c", | ||
794 | "clk_m", | ||
795 | "clk_32k", | ||
796 | }; | ||
797 | |||
798 | static const char *mux_pllp_pllc_pllm[] = { | ||
799 | "pll_p", | ||
800 | "pll_c", | ||
801 | "pll_m", | ||
802 | }; | ||
803 | |||
804 | static const char *mux_clk_m[] = { | ||
805 | "clk_m", | ||
806 | }; | ||
807 | |||
808 | static const char *mux_pllp_out3[] = { | ||
809 | "pll_p_out3", | ||
810 | }; | ||
811 | |||
812 | static const char *mux_plld_out0[] = { | ||
813 | "pll_d_out0", | ||
814 | }; | ||
815 | |||
816 | static const char *mux_plld_out0_plld2_out0[] = { | ||
817 | "pll_d_out0", | ||
818 | "pll_d2_out0", | ||
819 | }; | ||
820 | |||
821 | static const char *mux_clk_32k[] = { | ||
822 | "clk_32k", | ||
823 | }; | ||
824 | |||
825 | static const char *mux_plla_clk32_pllp_clkm_plle[] = { | ||
826 | "pll_a_out0", | ||
827 | "clk_32k", | ||
828 | "pll_p", | ||
829 | "clk_m", | ||
830 | "pll_e", | ||
831 | }; | ||
832 | |||
833 | static const char *mux_cclk_g[] = { | ||
834 | "clk_m", | ||
835 | "pll_c", | ||
836 | "clk_32k", | ||
837 | "pll_m", | ||
838 | "pll_p", | ||
839 | "pll_p_out4", | ||
840 | "pll_p_out3", | ||
841 | "dummy", | ||
842 | "pll_x", | ||
843 | }; | ||
844 | |||
845 | static struct clk *mux_pllm_pllc_pllp_plla_p[] = { | ||
846 | &tegra_pll_m, | ||
847 | &tegra_pll_c, | ||
848 | &tegra_pll_p, | ||
849 | &tegra_pll_a_out0, | ||
850 | }; | ||
851 | |||
852 | static struct clk *mux_pllp_pllc_pllm_clkm_p[] = { | ||
853 | &tegra_pll_p, | ||
854 | &tegra_pll_c, | ||
855 | &tegra_pll_m, | ||
856 | &tegra_clk_m, | ||
857 | }; | ||
858 | |||
859 | static struct clk *mux_pllp_clkm_p[] = { | ||
860 | &tegra_pll_p, | ||
861 | NULL, | ||
862 | NULL, | ||
863 | &tegra_clk_m, | ||
864 | }; | ||
865 | |||
866 | static struct clk *mux_pllp_plld_pllc_clkm_p[] = { | ||
867 | &tegra_pll_p, | ||
868 | &tegra_pll_d_out0, | ||
869 | &tegra_pll_c, | ||
870 | &tegra_clk_m, | ||
871 | }; | ||
872 | |||
873 | static struct clk *mux_pllp_pllm_plld_plla_pllc_plld2_clkm_p[] = { | ||
874 | &tegra_pll_p, | ||
875 | &tegra_pll_m, | ||
876 | &tegra_pll_d_out0, | ||
877 | &tegra_pll_a_out0, | ||
878 | &tegra_pll_c, | ||
879 | &tegra_pll_d2_out0, | ||
880 | &tegra_clk_m, | ||
881 | }; | ||
882 | |||
883 | static struct clk *mux_plla_pllc_pllp_clkm_p[] = { | ||
884 | &tegra_pll_a_out0, | ||
885 | NULL, | ||
886 | &tegra_pll_p, | ||
887 | &tegra_clk_m, | ||
888 | }; | ||
889 | |||
890 | static struct clk *mux_pllp_pllc_clk32_clkm_p[] = { | ||
891 | &tegra_pll_p, | ||
892 | &tegra_pll_c, | ||
893 | &tegra_clk_32k, | ||
894 | &tegra_clk_m, | ||
895 | }; | ||
896 | |||
897 | static struct clk *mux_pllp_pllc_clkm_clk32_p[] = { | ||
898 | &tegra_pll_p, | ||
899 | &tegra_pll_c, | ||
900 | &tegra_clk_m, | ||
901 | &tegra_clk_32k, | ||
902 | }; | ||
903 | |||
904 | static struct clk *mux_pllp_pllc_pllm_p[] = { | ||
905 | &tegra_pll_p, | ||
906 | &tegra_pll_c, | ||
907 | &tegra_pll_m, | ||
908 | }; | ||
909 | |||
910 | static struct clk *mux_clk_m_p[] = { | ||
911 | &tegra_clk_m, | ||
912 | }; | ||
913 | |||
914 | static struct clk *mux_pllp_out3_p[] = { | ||
915 | &tegra_pll_p_out3, | ||
916 | }; | ||
917 | |||
918 | static struct clk *mux_plld_out0_p[] = { | ||
919 | &tegra_pll_d_out0, | ||
920 | }; | ||
921 | |||
922 | static struct clk *mux_plld_out0_plld2_out0_p[] = { | ||
923 | &tegra_pll_d_out0, | ||
924 | &tegra_pll_d2_out0, | ||
925 | }; | ||
926 | |||
927 | static struct clk *mux_clk_32k_p[] = { | ||
928 | &tegra_clk_32k, | ||
929 | }; | ||
930 | |||
931 | static struct clk *mux_plla_clk32_pllp_clkm_plle_p[] = { | ||
932 | &tegra_pll_a_out0, | ||
933 | &tegra_clk_32k, | ||
934 | &tegra_pll_p, | ||
935 | &tegra_clk_m, | ||
936 | &tegra_pll_e, | ||
937 | }; | ||
938 | |||
939 | static struct clk *mux_cclk_g_p[] = { | ||
940 | &tegra_clk_m, | ||
941 | &tegra_pll_c, | ||
942 | &tegra_clk_32k, | ||
943 | &tegra_pll_m, | ||
944 | &tegra_pll_p, | ||
945 | &tegra_pll_p_out4, | ||
946 | &tegra_pll_p_out3, | ||
947 | NULL, | ||
948 | &tegra_pll_x, | ||
949 | }; | ||
950 | |||
951 | static struct clk tegra_clk_cclk_g; | ||
952 | static struct clk_tegra tegra_clk_cclk_g_hw = { | ||
953 | .hw = { | ||
954 | .clk = &tegra_clk_cclk_g, | ||
955 | }, | ||
956 | .flags = DIV_U71 | DIV_U71_INT, | ||
957 | .reg = 0x368, | ||
958 | .max_rate = 1700000000, | ||
959 | }; | ||
960 | static struct clk tegra_clk_cclk_g = { | ||
961 | .name = "cclk_g", | ||
962 | .ops = &tegra30_super_ops, | ||
963 | .hw = &tegra_clk_cclk_g_hw.hw, | ||
964 | .parent_names = mux_cclk_g, | ||
965 | .parents = mux_cclk_g_p, | ||
966 | .num_parents = ARRAY_SIZE(mux_cclk_g), | ||
967 | }; | ||
968 | |||
969 | static const char *mux_twd[] = { | ||
970 | "cclk_g", | ||
971 | }; | ||
972 | |||
973 | static struct clk *mux_twd_p[] = { | ||
974 | &tegra_clk_cclk_g, | ||
975 | }; | ||
976 | |||
977 | static struct clk tegra30_clk_twd; | ||
978 | static struct clk_tegra tegra30_clk_twd_hw = { | ||
979 | .hw = { | ||
980 | .clk = &tegra30_clk_twd, | ||
981 | }, | ||
982 | .max_rate = 1400000000, | ||
983 | .mul = 1, | ||
984 | .div = 2, | ||
985 | }; | ||
986 | |||
987 | static struct clk tegra30_clk_twd = { | ||
988 | .name = "twd", | ||
989 | .ops = &tegra30_twd_ops, | ||
990 | .hw = &tegra30_clk_twd_hw.hw, | ||
991 | .parent = &tegra_clk_cclk_g, | ||
992 | .parent_names = mux_twd, | ||
993 | .parents = mux_twd_p, | ||
994 | .num_parents = ARRAY_SIZE(mux_twd), | ||
995 | }; | ||
996 | |||
997 | #define PERIPH_CLK(_name, _dev, _con, _clk_num, _reg, \ | ||
998 | _max, _inputs, _flags) \ | ||
999 | static struct clk tegra_##_name; \ | ||
1000 | static struct clk_tegra tegra_##_name##_hw = { \ | ||
1001 | .hw = { \ | ||
1002 | .clk = &tegra_##_name, \ | ||
1003 | }, \ | ||
1004 | .lookup = { \ | ||
1005 | .dev_id = _dev, \ | ||
1006 | .con_id = _con, \ | ||
1007 | }, \ | ||
1008 | .reg = _reg, \ | ||
1009 | .flags = _flags, \ | ||
1010 | .max_rate = _max, \ | ||
1011 | .u.periph = { \ | ||
1012 | .clk_num = _clk_num, \ | ||
1013 | }, \ | ||
1014 | .reset = &tegra30_periph_clk_reset, \ | ||
1015 | }; \ | ||
1016 | static struct clk tegra_##_name = { \ | ||
1017 | .name = #_name, \ | ||
1018 | .ops = &tegra30_periph_clk_ops, \ | ||
1019 | .hw = &tegra_##_name##_hw.hw, \ | ||
1020 | .parent_names = _inputs, \ | ||
1021 | .parents = _inputs##_p, \ | ||
1022 | .num_parents = ARRAY_SIZE(_inputs), \ | ||
1023 | }; | ||
1024 | |||
1025 | PERIPH_CLK(apbdma, "tegra-apbdma", NULL, 34, 0, 26000000, mux_clk_m, 0); | ||
1026 | PERIPH_CLK(rtc, "rtc-tegra", NULL, 4, 0, 32768, mux_clk_32k, PERIPH_NO_RESET | PERIPH_ON_APB); | ||
1027 | PERIPH_CLK(kbc, "tegra-kbc", NULL, 36, 0, 32768, mux_clk_32k, PERIPH_NO_RESET | PERIPH_ON_APB); | ||
1028 | PERIPH_CLK(timer, "timer", NULL, 5, 0, 26000000, mux_clk_m, 0); | ||
1029 | PERIPH_CLK(kfuse, "kfuse-tegra", NULL, 40, 0, 26000000, mux_clk_m, 0); | ||
1030 | PERIPH_CLK(fuse, "fuse-tegra", "fuse", 39, 0, 26000000, mux_clk_m, PERIPH_ON_APB); | ||
1031 | PERIPH_CLK(fuse_burn, "fuse-tegra", "fuse_burn", 39, 0, 26000000, mux_clk_m, PERIPH_ON_APB); | ||
1032 | PERIPH_CLK(apbif, "tegra30-ahub", "apbif", 107, 0, 26000000, mux_clk_m, 0); | ||
1033 | PERIPH_CLK(i2s0, "tegra30-i2s.0", NULL, 30, 0x1d8, 26000000, mux_pllaout0_audio0_2x_pllp_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1034 | PERIPH_CLK(i2s1, "tegra30-i2s.1", NULL, 11, 0x100, 26000000, mux_pllaout0_audio1_2x_pllp_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1035 | PERIPH_CLK(i2s2, "tegra30-i2s.2", NULL, 18, 0x104, 26000000, mux_pllaout0_audio2_2x_pllp_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1036 | PERIPH_CLK(i2s3, "tegra30-i2s.3", NULL, 101, 0x3bc, 26000000, mux_pllaout0_audio3_2x_pllp_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1037 | PERIPH_CLK(i2s4, "tegra30-i2s.4", NULL, 102, 0x3c0, 26000000, mux_pllaout0_audio4_2x_pllp_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1038 | PERIPH_CLK(spdif_out, "tegra30-spdif", "spdif_out", 10, 0x108, 100000000, mux_pllaout0_audio5_2x_pllp_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1039 | PERIPH_CLK(spdif_in, "tegra30-spdif", "spdif_in", 10, 0x10c, 100000000, mux_pllp_pllc_pllm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1040 | PERIPH_CLK(pwm, "tegra-pwm", NULL, 17, 0x110, 432000000, mux_pllp_pllc_clk32_clkm, MUX | MUX_PWM | DIV_U71 | PERIPH_ON_APB); | ||
1041 | PERIPH_CLK(d_audio, "tegra30-ahub", "d_audio", 106, 0x3d0, 48000000, mux_plla_pllc_pllp_clkm, MUX | DIV_U71); | ||
1042 | PERIPH_CLK(dam0, "tegra30-dam.0", NULL, 108, 0x3d8, 48000000, mux_plla_pllc_pllp_clkm, MUX | DIV_U71); | ||
1043 | PERIPH_CLK(dam1, "tegra30-dam.1", NULL, 109, 0x3dc, 48000000, mux_plla_pllc_pllp_clkm, MUX | DIV_U71); | ||
1044 | PERIPH_CLK(dam2, "tegra30-dam.2", NULL, 110, 0x3e0, 48000000, mux_plla_pllc_pllp_clkm, MUX | DIV_U71); | ||
1045 | PERIPH_CLK(hda, "tegra30-hda", "hda", 125, 0x428, 108000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
1046 | PERIPH_CLK(hda2codec_2x, "tegra30-hda", "hda2codec", 111, 0x3e4, 48000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
1047 | PERIPH_CLK(hda2hdmi, "tegra30-hda", "hda2hdmi", 128, 0, 48000000, mux_clk_m, 0); | ||
1048 | PERIPH_CLK(sbc1, "spi_tegra.0", NULL, 41, 0x134, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1049 | PERIPH_CLK(sbc2, "spi_tegra.1", NULL, 44, 0x118, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1050 | PERIPH_CLK(sbc3, "spi_tegra.2", NULL, 46, 0x11c, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1051 | PERIPH_CLK(sbc4, "spi_tegra.3", NULL, 68, 0x1b4, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1052 | PERIPH_CLK(sbc5, "spi_tegra.4", NULL, 104, 0x3c8, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1053 | PERIPH_CLK(sbc6, "spi_tegra.5", NULL, 105, 0x3cc, 160000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1054 | PERIPH_CLK(sata_oob, "tegra_sata_oob", NULL, 123, 0x420, 216000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
1055 | PERIPH_CLK(sata, "tegra_sata", NULL, 124, 0x424, 216000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
1056 | PERIPH_CLK(sata_cold, "tegra_sata_cold", NULL, 129, 0, 48000000, mux_clk_m, 0); | ||
1057 | PERIPH_CLK(ndflash, "tegra_nand", NULL, 13, 0x160, 240000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
1058 | PERIPH_CLK(ndspeed, "tegra_nand_speed", NULL, 80, 0x3f8, 240000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
1059 | PERIPH_CLK(vfir, "vfir", NULL, 7, 0x168, 72000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1060 | PERIPH_CLK(sdmmc1, "sdhci-tegra.0", NULL, 14, 0x150, 208000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* scales with voltage */ | ||
1061 | PERIPH_CLK(sdmmc2, "sdhci-tegra.1", NULL, 9, 0x154, 104000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* scales with voltage */ | ||
1062 | PERIPH_CLK(sdmmc3, "sdhci-tegra.2", NULL, 69, 0x1bc, 208000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* scales with voltage */ | ||
1063 | PERIPH_CLK(sdmmc4, "sdhci-tegra.3", NULL, 15, 0x164, 104000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* scales with voltage */ | ||
1064 | PERIPH_CLK(vcp, "tegra-avp", "vcp", 29, 0, 250000000, mux_clk_m, 0); | ||
1065 | PERIPH_CLK(bsea, "tegra-avp", "bsea", 62, 0, 250000000, mux_clk_m, 0); | ||
1066 | PERIPH_CLK(bsev, "tegra-aes", "bsev", 63, 0, 250000000, mux_clk_m, 0); | ||
1067 | PERIPH_CLK(vde, "vde", NULL, 61, 0x1c8, 520000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_INT); | ||
1068 | PERIPH_CLK(csite, "csite", NULL, 73, 0x1d4, 144000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* max rate ??? */ | ||
1069 | PERIPH_CLK(la, "la", NULL, 76, 0x1f8, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); | ||
1070 | PERIPH_CLK(owr, "tegra_w1", NULL, 71, 0x1cc, 26000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1071 | PERIPH_CLK(nor, "nor", NULL, 42, 0x1d0, 127000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71); /* requires min voltage */ | ||
1072 | PERIPH_CLK(mipi, "mipi", NULL, 50, 0x174, 60000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | PERIPH_ON_APB); /* scales with voltage */ | ||
1073 | PERIPH_CLK(i2c1, "tegra-i2c.0", "div-clk", 12, 0x124, 26000000, mux_pllp_clkm, MUX | DIV_U16 | PERIPH_ON_APB); | ||
1074 | PERIPH_CLK(i2c2, "tegra-i2c.1", "div-clk", 54, 0x198, 26000000, mux_pllp_clkm, MUX | DIV_U16 | PERIPH_ON_APB); | ||
1075 | PERIPH_CLK(i2c3, "tegra-i2c.2", "div-clk", 67, 0x1b8, 26000000, mux_pllp_clkm, MUX | DIV_U16 | PERIPH_ON_APB); | ||
1076 | PERIPH_CLK(i2c4, "tegra-i2c.3", "div-clk", 103, 0x3c4, 26000000, mux_pllp_clkm, MUX | DIV_U16 | PERIPH_ON_APB); | ||
1077 | PERIPH_CLK(i2c5, "tegra-i2c.4", "div-clk", 47, 0x128, 26000000, mux_pllp_clkm, MUX | DIV_U16 | PERIPH_ON_APB); | ||
1078 | PERIPH_CLK(uarta, "tegra-uart.0", NULL, 6, 0x178, 800000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_UART | PERIPH_ON_APB); | ||
1079 | PERIPH_CLK(uartb, "tegra-uart.1", NULL, 7, 0x17c, 800000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_UART | PERIPH_ON_APB); | ||
1080 | PERIPH_CLK(uartc, "tegra-uart.2", NULL, 55, 0x1a0, 800000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_UART | PERIPH_ON_APB); | ||
1081 | PERIPH_CLK(uartd, "tegra-uart.3", NULL, 65, 0x1c0, 800000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_UART | PERIPH_ON_APB); | ||
1082 | PERIPH_CLK(uarte, "tegra-uart.4", NULL, 66, 0x1c4, 800000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_UART | PERIPH_ON_APB); | ||
1083 | PERIPH_CLK(vi, "tegra_camera", "vi", 20, 0x148, 425000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT); | ||
1084 | PERIPH_CLK(3d, "3d", NULL, 24, 0x158, 520000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT | DIV_U71_IDLE | PERIPH_MANUAL_RESET); | ||
1085 | PERIPH_CLK(3d2, "3d2", NULL, 98, 0x3b0, 520000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT | DIV_U71_IDLE | PERIPH_MANUAL_RESET); | ||
1086 | PERIPH_CLK(2d, "2d", NULL, 21, 0x15c, 520000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT | DIV_U71_IDLE); | ||
1087 | PERIPH_CLK(vi_sensor, "tegra_camera", "vi_sensor", 20, 0x1a8, 150000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | PERIPH_NO_RESET); | ||
1088 | PERIPH_CLK(epp, "epp", NULL, 19, 0x16c, 520000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT); | ||
1089 | PERIPH_CLK(mpe, "mpe", NULL, 60, 0x170, 520000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT); | ||
1090 | PERIPH_CLK(host1x, "host1x", NULL, 28, 0x180, 260000000, mux_pllm_pllc_pllp_plla, MUX | DIV_U71 | DIV_U71_INT); | ||
1091 | PERIPH_CLK(cve, "cve", NULL, 49, 0x140, 250000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71); /* requires min voltage */ | ||
1092 | PERIPH_CLK(tvo, "tvo", NULL, 49, 0x188, 250000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71); /* requires min voltage */ | ||
1093 | PERIPH_CLK(dtv, "dtv", NULL, 79, 0x1dc, 250000000, mux_clk_m, 0); | ||
1094 | PERIPH_CLK(hdmi, "hdmi", NULL, 51, 0x18c, 148500000, mux_pllp_pllm_plld_plla_pllc_plld2_clkm, MUX | MUX8 | DIV_U71); | ||
1095 | PERIPH_CLK(tvdac, "tvdac", NULL, 53, 0x194, 220000000, mux_pllp_plld_pllc_clkm, MUX | DIV_U71); /* requires min voltage */ | ||
1096 | PERIPH_CLK(disp1, "tegradc.0", NULL, 27, 0x138, 600000000, mux_pllp_pllm_plld_plla_pllc_plld2_clkm, MUX | MUX8); | ||
1097 | PERIPH_CLK(disp2, "tegradc.1", NULL, 26, 0x13c, 600000000, mux_pllp_pllm_plld_plla_pllc_plld2_clkm, MUX | MUX8); | ||
1098 | PERIPH_CLK(usbd, "fsl-tegra-udc", NULL, 22, 0, 480000000, mux_clk_m, 0); /* requires min voltage */ | ||
1099 | PERIPH_CLK(usb2, "tegra-ehci.1", NULL, 58, 0, 480000000, mux_clk_m, 0); /* requires min voltage */ | ||
1100 | PERIPH_CLK(usb3, "tegra-ehci.2", NULL, 59, 0, 480000000, mux_clk_m, 0); /* requires min voltage */ | ||
1101 | PERIPH_CLK(dsia, "tegradc.0", "dsia", 48, 0, 500000000, mux_plld_out0, 0); | ||
1102 | PERIPH_CLK(csi, "tegra_camera", "csi", 52, 0, 102000000, mux_pllp_out3, 0); | ||
1103 | PERIPH_CLK(isp, "tegra_camera", "isp", 23, 0, 150000000, mux_clk_m, 0); /* same frequency as VI */ | ||
1104 | PERIPH_CLK(csus, "tegra_camera", "csus", 92, 0, 150000000, mux_clk_m, PERIPH_NO_RESET); | ||
1105 | PERIPH_CLK(tsensor, "tegra-tsensor", NULL, 100, 0x3b8, 216000000, mux_pllp_pllc_clkm_clk32, MUX | DIV_U71); | ||
1106 | PERIPH_CLK(actmon, "actmon", NULL, 119, 0x3e8, 216000000, mux_pllp_pllc_clk32_clkm, MUX | DIV_U71); | ||
1107 | PERIPH_CLK(extern1, "extern1", NULL, 120, 0x3ec, 216000000, mux_plla_clk32_pllp_clkm_plle, MUX | MUX8 | DIV_U71); | ||
1108 | PERIPH_CLK(extern2, "extern2", NULL, 121, 0x3f0, 216000000, mux_plla_clk32_pllp_clkm_plle, MUX | MUX8 | DIV_U71); | ||
1109 | PERIPH_CLK(extern3, "extern3", NULL, 122, 0x3f4, 216000000, mux_plla_clk32_pllp_clkm_plle, MUX | MUX8 | DIV_U71); | ||
1110 | PERIPH_CLK(i2cslow, "i2cslow", NULL, 81, 0x3fc, 26000000, mux_pllp_pllc_clk32_clkm, MUX | DIV_U71 | PERIPH_ON_APB); | ||
1111 | PERIPH_CLK(pcie, "tegra-pcie", "pcie", 70, 0, 250000000, mux_clk_m, 0); | ||
1112 | PERIPH_CLK(afi, "tegra-pcie", "afi", 72, 0, 250000000, mux_clk_m, 0); | ||
1113 | PERIPH_CLK(se, "se", NULL, 127, 0x42c, 520000000, mux_pllp_pllc_pllm_clkm, MUX | DIV_U71 | DIV_U71_INT); | ||
1114 | |||
1115 | static struct clk tegra_dsib; | ||
1116 | static struct clk_tegra tegra_dsib_hw = { | ||
1117 | .hw = { | ||
1118 | .clk = &tegra_dsib, | ||
1119 | }, | ||
1120 | .lookup = { | ||
1121 | .dev_id = "tegradc.1", | ||
1122 | .con_id = "dsib", | ||
1123 | }, | ||
1124 | .reg = 0xd0, | ||
1125 | .flags = MUX | PLLD, | ||
1126 | .max_rate = 500000000, | ||
1127 | .u.periph = { | ||
1128 | .clk_num = 82, | ||
1129 | }, | ||
1130 | .reset = &tegra30_periph_clk_reset, | ||
1131 | }; | ||
1132 | static struct clk tegra_dsib = { | ||
1133 | .name = "dsib", | ||
1134 | .ops = &tegra30_dsib_clk_ops, | ||
1135 | .hw = &tegra_dsib_hw.hw, | ||
1136 | .parent_names = mux_plld_out0_plld2_out0, | ||
1137 | .parents = mux_plld_out0_plld2_out0_p, | ||
1138 | .num_parents = ARRAY_SIZE(mux_plld_out0_plld2_out0), | ||
1139 | }; | ||
1140 | |||
1141 | struct clk *tegra_list_clks[] = { | ||
1142 | &tegra_apbdma, | ||
1143 | &tegra_rtc, | ||
1144 | &tegra_kbc, | ||
1145 | &tegra_kfuse, | ||
1146 | &tegra_fuse, | ||
1147 | &tegra_fuse_burn, | ||
1148 | &tegra_apbif, | ||
1149 | &tegra_i2s0, | ||
1150 | &tegra_i2s1, | ||
1151 | &tegra_i2s2, | ||
1152 | &tegra_i2s3, | ||
1153 | &tegra_i2s4, | ||
1154 | &tegra_spdif_out, | ||
1155 | &tegra_spdif_in, | ||
1156 | &tegra_pwm, | ||
1157 | &tegra_d_audio, | ||
1158 | &tegra_dam0, | ||
1159 | &tegra_dam1, | ||
1160 | &tegra_dam2, | ||
1161 | &tegra_hda, | ||
1162 | &tegra_hda2codec_2x, | ||
1163 | &tegra_hda2hdmi, | ||
1164 | &tegra_sbc1, | ||
1165 | &tegra_sbc2, | ||
1166 | &tegra_sbc3, | ||
1167 | &tegra_sbc4, | ||
1168 | &tegra_sbc5, | ||
1169 | &tegra_sbc6, | ||
1170 | &tegra_sata_oob, | ||
1171 | &tegra_sata, | ||
1172 | &tegra_sata_cold, | ||
1173 | &tegra_ndflash, | ||
1174 | &tegra_ndspeed, | ||
1175 | &tegra_vfir, | ||
1176 | &tegra_sdmmc1, | ||
1177 | &tegra_sdmmc2, | ||
1178 | &tegra_sdmmc3, | ||
1179 | &tegra_sdmmc4, | ||
1180 | &tegra_vcp, | ||
1181 | &tegra_bsea, | ||
1182 | &tegra_bsev, | ||
1183 | &tegra_vde, | ||
1184 | &tegra_csite, | ||
1185 | &tegra_la, | ||
1186 | &tegra_owr, | ||
1187 | &tegra_nor, | ||
1188 | &tegra_mipi, | ||
1189 | &tegra_i2c1, | ||
1190 | &tegra_i2c2, | ||
1191 | &tegra_i2c3, | ||
1192 | &tegra_i2c4, | ||
1193 | &tegra_i2c5, | ||
1194 | &tegra_uarta, | ||
1195 | &tegra_uartb, | ||
1196 | &tegra_uartc, | ||
1197 | &tegra_uartd, | ||
1198 | &tegra_uarte, | ||
1199 | &tegra_vi, | ||
1200 | &tegra_3d, | ||
1201 | &tegra_3d2, | ||
1202 | &tegra_2d, | ||
1203 | &tegra_vi_sensor, | ||
1204 | &tegra_epp, | ||
1205 | &tegra_mpe, | ||
1206 | &tegra_host1x, | ||
1207 | &tegra_cve, | ||
1208 | &tegra_tvo, | ||
1209 | &tegra_dtv, | ||
1210 | &tegra_hdmi, | ||
1211 | &tegra_tvdac, | ||
1212 | &tegra_disp1, | ||
1213 | &tegra_disp2, | ||
1214 | &tegra_usbd, | ||
1215 | &tegra_usb2, | ||
1216 | &tegra_usb3, | ||
1217 | &tegra_dsia, | ||
1218 | &tegra_dsib, | ||
1219 | &tegra_csi, | ||
1220 | &tegra_isp, | ||
1221 | &tegra_csus, | ||
1222 | &tegra_tsensor, | ||
1223 | &tegra_actmon, | ||
1224 | &tegra_extern1, | ||
1225 | &tegra_extern2, | ||
1226 | &tegra_extern3, | ||
1227 | &tegra_i2cslow, | ||
1228 | &tegra_pcie, | ||
1229 | &tegra_afi, | ||
1230 | &tegra_se, | ||
1231 | }; | ||
1232 | |||
1233 | #define CLK_DUPLICATE(_name, _dev, _con) \ | ||
1234 | { \ | ||
1235 | .name = _name, \ | ||
1236 | .lookup = { \ | ||
1237 | .dev_id = _dev, \ | ||
1238 | .con_id = _con, \ | ||
1239 | }, \ | ||
1240 | } | ||
1241 | |||
1242 | /* Some clocks may be used by different drivers depending on the board | ||
1243 | * configuration. List those here to register them twice in the clock lookup | ||
1244 | * table under two names. | ||
1245 | */ | ||
1246 | struct clk_duplicate tegra_clk_duplicates[] = { | ||
1247 | CLK_DUPLICATE("uarta", "serial8250.0", NULL), | ||
1248 | CLK_DUPLICATE("uartb", "serial8250.1", NULL), | ||
1249 | CLK_DUPLICATE("uartc", "serial8250.2", NULL), | ||
1250 | CLK_DUPLICATE("uartd", "serial8250.3", NULL), | ||
1251 | CLK_DUPLICATE("uarte", "serial8250.4", NULL), | ||
1252 | CLK_DUPLICATE("usbd", "utmip-pad", NULL), | ||
1253 | CLK_DUPLICATE("usbd", "tegra-ehci.0", NULL), | ||
1254 | CLK_DUPLICATE("usbd", "tegra-otg", NULL), | ||
1255 | CLK_DUPLICATE("hdmi", "tegradc.0", "hdmi"), | ||
1256 | CLK_DUPLICATE("hdmi", "tegradc.1", "hdmi"), | ||
1257 | CLK_DUPLICATE("dsib", "tegradc.0", "dsib"), | ||
1258 | CLK_DUPLICATE("dsia", "tegradc.1", "dsia"), | ||
1259 | CLK_DUPLICATE("bsev", "tegra-avp", "bsev"), | ||
1260 | CLK_DUPLICATE("bsev", "nvavp", "bsev"), | ||
1261 | CLK_DUPLICATE("vde", "tegra-aes", "vde"), | ||
1262 | CLK_DUPLICATE("bsea", "tegra-aes", "bsea"), | ||
1263 | CLK_DUPLICATE("bsea", "nvavp", "bsea"), | ||
1264 | CLK_DUPLICATE("cml1", "tegra_sata_cml", NULL), | ||
1265 | CLK_DUPLICATE("cml0", "tegra_pcie", "cml"), | ||
1266 | CLK_DUPLICATE("pciex", "tegra_pcie", "pciex"), | ||
1267 | CLK_DUPLICATE("i2c1", "tegra-i2c-slave.0", NULL), | ||
1268 | CLK_DUPLICATE("i2c2", "tegra-i2c-slave.1", NULL), | ||
1269 | CLK_DUPLICATE("i2c3", "tegra-i2c-slave.2", NULL), | ||
1270 | CLK_DUPLICATE("i2c4", "tegra-i2c-slave.3", NULL), | ||
1271 | CLK_DUPLICATE("i2c5", "tegra-i2c-slave.4", NULL), | ||
1272 | CLK_DUPLICATE("sbc1", "spi_slave_tegra.0", NULL), | ||
1273 | CLK_DUPLICATE("sbc2", "spi_slave_tegra.1", NULL), | ||
1274 | CLK_DUPLICATE("sbc3", "spi_slave_tegra.2", NULL), | ||
1275 | CLK_DUPLICATE("sbc4", "spi_slave_tegra.3", NULL), | ||
1276 | CLK_DUPLICATE("sbc5", "spi_slave_tegra.4", NULL), | ||
1277 | CLK_DUPLICATE("sbc6", "spi_slave_tegra.5", NULL), | ||
1278 | CLK_DUPLICATE("twd", "smp_twd", NULL), | ||
1279 | CLK_DUPLICATE("vcp", "nvavp", "vcp"), | ||
1280 | CLK_DUPLICATE("i2s0", NULL, "i2s0"), | ||
1281 | CLK_DUPLICATE("i2s1", NULL, "i2s1"), | ||
1282 | CLK_DUPLICATE("i2s2", NULL, "i2s2"), | ||
1283 | CLK_DUPLICATE("i2s3", NULL, "i2s3"), | ||
1284 | CLK_DUPLICATE("i2s4", NULL, "i2s4"), | ||
1285 | CLK_DUPLICATE("dam0", NULL, "dam0"), | ||
1286 | CLK_DUPLICATE("dam1", NULL, "dam1"), | ||
1287 | CLK_DUPLICATE("dam2", NULL, "dam2"), | ||
1288 | CLK_DUPLICATE("spdif_in", NULL, "spdif_in"), | ||
1289 | CLK_DUPLICATE("pll_p_out3", "tegra-i2c.0", "fast-clk"), | ||
1290 | CLK_DUPLICATE("pll_p_out3", "tegra-i2c.1", "fast-clk"), | ||
1291 | CLK_DUPLICATE("pll_p_out3", "tegra-i2c.2", "fast-clk"), | ||
1292 | CLK_DUPLICATE("pll_p_out3", "tegra-i2c.3", "fast-clk"), | ||
1293 | CLK_DUPLICATE("pll_p_out3", "tegra-i2c.4", "fast-clk"), | ||
1294 | }; | ||
1295 | |||
1296 | struct clk *tegra_ptr_clks[] = { | ||
1297 | &tegra_clk_32k, | ||
1298 | &tegra_clk_m, | ||
1299 | &tegra_clk_m_div2, | ||
1300 | &tegra_clk_m_div4, | ||
1301 | &tegra_pll_ref, | ||
1302 | &tegra_pll_m, | ||
1303 | &tegra_pll_m_out1, | ||
1304 | &tegra_pll_c, | ||
1305 | &tegra_pll_c_out1, | ||
1306 | &tegra_pll_p, | ||
1307 | &tegra_pll_p_out1, | ||
1308 | &tegra_pll_p_out2, | ||
1309 | &tegra_pll_p_out3, | ||
1310 | &tegra_pll_p_out4, | ||
1311 | &tegra_pll_a, | ||
1312 | &tegra_pll_a_out0, | ||
1313 | &tegra_pll_d, | ||
1314 | &tegra_pll_d_out0, | ||
1315 | &tegra_pll_d2, | ||
1316 | &tegra_pll_d2_out0, | ||
1317 | &tegra_pll_u, | ||
1318 | &tegra_pll_x, | ||
1319 | &tegra_pll_x_out0, | ||
1320 | &tegra_pll_e, | ||
1321 | &tegra_clk_cclk_g, | ||
1322 | &tegra_cml0, | ||
1323 | &tegra_cml1, | ||
1324 | &tegra_pciex, | ||
1325 | &tegra_clk_sclk, | ||
1326 | &tegra_clk_blink, | ||
1327 | &tegra30_clk_twd, | ||
1328 | }; | ||
1329 | |||
1330 | static void tegra30_init_one_clock(struct clk *c) | ||
1331 | { | ||
1332 | struct clk_tegra *clk = to_clk_tegra(c->hw); | ||
1333 | __clk_init(NULL, c); | ||
1334 | INIT_LIST_HEAD(&clk->shared_bus_list); | ||
1335 | if (!clk->lookup.dev_id && !clk->lookup.con_id) | ||
1336 | clk->lookup.con_id = c->name; | ||
1337 | clk->lookup.clk = c; | ||
1338 | clkdev_add(&clk->lookup); | ||
1339 | tegra_clk_add(c); | ||
1340 | } | ||
1341 | |||
1342 | void __init tegra30_init_clocks(void) | ||
1343 | { | ||
1344 | int i; | ||
1345 | struct clk *c; | ||
1346 | |||
1347 | for (i = 0; i < ARRAY_SIZE(tegra_ptr_clks); i++) | ||
1348 | tegra30_init_one_clock(tegra_ptr_clks[i]); | ||
1349 | |||
1350 | for (i = 0; i < ARRAY_SIZE(tegra_list_clks); i++) | ||
1351 | tegra30_init_one_clock(tegra_list_clks[i]); | ||
1352 | |||
1353 | for (i = 0; i < ARRAY_SIZE(tegra_clk_duplicates); i++) { | ||
1354 | c = tegra_get_clock_by_name(tegra_clk_duplicates[i].name); | ||
1355 | if (!c) { | ||
1356 | pr_err("%s: Unknown duplicate clock %s\n", __func__, | ||
1357 | tegra_clk_duplicates[i].name); | ||
1358 | continue; | ||
1359 | } | ||
1360 | |||
1361 | tegra_clk_duplicates[i].lookup.clk = c; | ||
1362 | clkdev_add(&tegra_clk_duplicates[i].lookup); | ||
1363 | } | ||
1364 | |||
1365 | for (i = 0; i < ARRAY_SIZE(tegra_sync_source_list); i++) | ||
1366 | tegra30_init_one_clock(tegra_sync_source_list[i]); | ||
1367 | for (i = 0; i < ARRAY_SIZE(tegra_clk_audio_list); i++) | ||
1368 | tegra30_init_one_clock(tegra_clk_audio_list[i]); | ||
1369 | for (i = 0; i < ARRAY_SIZE(tegra_clk_audio_2x_list); i++) | ||
1370 | tegra30_init_one_clock(tegra_clk_audio_2x_list[i]); | ||
1371 | |||
1372 | for (i = 0; i < ARRAY_SIZE(tegra_clk_out_list); i++) | ||
1373 | tegra30_init_one_clock(tegra_clk_out_list[i]); | ||
1374 | } | ||
diff --git a/arch/arm/mach-ux500/Kconfig b/arch/arm/mach-ux500/Kconfig index c013bbf79cac..53d3d46dec12 100644 --- a/arch/arm/mach-ux500/Kconfig +++ b/arch/arm/mach-ux500/Kconfig | |||
@@ -41,7 +41,6 @@ config MACH_HREFV60 | |||
41 | config MACH_SNOWBALL | 41 | config MACH_SNOWBALL |
42 | bool "U8500 Snowball platform" | 42 | bool "U8500 Snowball platform" |
43 | select MACH_MOP500 | 43 | select MACH_MOP500 |
44 | select LEDS_GPIO | ||
45 | help | 44 | help |
46 | Include support for the snowball development platform. | 45 | Include support for the snowball development platform. |
47 | 46 | ||
diff --git a/arch/arm/mach-ux500/board-mop500-msp.c b/arch/arm/mach-ux500/board-mop500-msp.c index 996048038743..df15646036aa 100644 --- a/arch/arm/mach-ux500/board-mop500-msp.c +++ b/arch/arm/mach-ux500/board-mop500-msp.c | |||
@@ -191,9 +191,9 @@ static struct platform_device *db8500_add_msp_i2s(struct device *parent, | |||
191 | return pdev; | 191 | return pdev; |
192 | } | 192 | } |
193 | 193 | ||
194 | /* Platform device for ASoC U8500 machine */ | 194 | /* Platform device for ASoC MOP500 machine */ |
195 | static struct platform_device snd_soc_u8500 = { | 195 | static struct platform_device snd_soc_mop500 = { |
196 | .name = "snd-soc-u8500", | 196 | .name = "snd-soc-mop500", |
197 | .id = 0, | 197 | .id = 0, |
198 | .dev = { | 198 | .dev = { |
199 | .platform_data = NULL, | 199 | .platform_data = NULL, |
@@ -227,8 +227,8 @@ int mop500_msp_init(struct device *parent) | |||
227 | { | 227 | { |
228 | struct platform_device *msp1; | 228 | struct platform_device *msp1; |
229 | 229 | ||
230 | pr_info("%s: Register platform-device 'snd-soc-u8500'.\n", __func__); | 230 | pr_info("%s: Register platform-device 'snd-soc-mop500'.\n", __func__); |
231 | platform_device_register(&snd_soc_u8500); | 231 | platform_device_register(&snd_soc_mop500); |
232 | 232 | ||
233 | pr_info("Initialize MSP I2S-devices.\n"); | 233 | pr_info("Initialize MSP I2S-devices.\n"); |
234 | db8500_add_msp_i2s(parent, 0, U8500_MSP0_BASE, IRQ_DB8500_MSP0, | 234 | db8500_add_msp_i2s(parent, 0, U8500_MSP0_BASE, IRQ_DB8500_MSP0, |
diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c index 8674a890fd1c..a534d8880de1 100644 --- a/arch/arm/mach-ux500/board-mop500.c +++ b/arch/arm/mach-ux500/board-mop500.c | |||
@@ -797,6 +797,7 @@ static void __init u8500_init_machine(void) | |||
797 | ARRAY_SIZE(mop500_platform_devs)); | 797 | ARRAY_SIZE(mop500_platform_devs)); |
798 | 798 | ||
799 | mop500_sdi_init(parent); | 799 | mop500_sdi_init(parent); |
800 | mop500_msp_init(parent); | ||
800 | i2c0_devs = ARRAY_SIZE(mop500_i2c0_devices); | 801 | i2c0_devs = ARRAY_SIZE(mop500_i2c0_devices); |
801 | i2c_register_board_info(0, mop500_i2c0_devices, i2c0_devs); | 802 | i2c_register_board_info(0, mop500_i2c0_devices, i2c0_devs); |
802 | i2c_register_board_info(2, mop500_i2c2_devices, | 803 | i2c_register_board_info(2, mop500_i2c2_devices, |
@@ -804,6 +805,8 @@ static void __init u8500_init_machine(void) | |||
804 | 805 | ||
805 | mop500_uib_init(); | 806 | mop500_uib_init(); |
806 | 807 | ||
808 | } else if (of_machine_is_compatible("calaosystems,snowball-a9500")) { | ||
809 | mop500_msp_init(parent); | ||
807 | } else if (of_machine_is_compatible("st-ericsson,hrefv60+")) { | 810 | } else if (of_machine_is_compatible("st-ericsson,hrefv60+")) { |
808 | /* | 811 | /* |
809 | * The HREFv60 board removed a GPIO expander and routed | 812 | * The HREFv60 board removed a GPIO expander and routed |
@@ -815,6 +818,7 @@ static void __init u8500_init_machine(void) | |||
815 | ARRAY_SIZE(mop500_platform_devs)); | 818 | ARRAY_SIZE(mop500_platform_devs)); |
816 | 819 | ||
817 | hrefv60_sdi_init(parent); | 820 | hrefv60_sdi_init(parent); |
821 | mop500_msp_init(parent); | ||
818 | 822 | ||
819 | i2c0_devs = ARRAY_SIZE(mop500_i2c0_devices); | 823 | i2c0_devs = ARRAY_SIZE(mop500_i2c0_devices); |
820 | i2c0_devs -= NUM_PRE_V60_I2C0_DEVICES; | 824 | i2c0_devs -= NUM_PRE_V60_I2C0_DEVICES; |
diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c index c2cdf6500f75..4e7d1182e8a3 100644 --- a/arch/arm/mm/dma-mapping.c +++ b/arch/arm/mm/dma-mapping.c | |||
@@ -358,7 +358,7 @@ void __init dma_contiguous_remap(void) | |||
358 | if (end > arm_lowmem_limit) | 358 | if (end > arm_lowmem_limit) |
359 | end = arm_lowmem_limit; | 359 | end = arm_lowmem_limit; |
360 | if (start >= end) | 360 | if (start >= end) |
361 | return; | 361 | continue; |
362 | 362 | ||
363 | map.pfn = __phys_to_pfn(start); | 363 | map.pfn = __phys_to_pfn(start); |
364 | map.virtual = __phys_to_virt(start); | 364 | map.virtual = __phys_to_virt(start); |
@@ -423,7 +423,7 @@ static void *__alloc_from_pool(size_t size, struct page **ret_page) | |||
423 | unsigned int pageno; | 423 | unsigned int pageno; |
424 | unsigned long flags; | 424 | unsigned long flags; |
425 | void *ptr = NULL; | 425 | void *ptr = NULL; |
426 | size_t align; | 426 | unsigned long align_mask; |
427 | 427 | ||
428 | if (!pool->vaddr) { | 428 | if (!pool->vaddr) { |
429 | WARN(1, "coherent pool not initialised!\n"); | 429 | WARN(1, "coherent pool not initialised!\n"); |
@@ -435,11 +435,11 @@ static void *__alloc_from_pool(size_t size, struct page **ret_page) | |||
435 | * small, so align them to their order in pages, minimum is a page | 435 | * small, so align them to their order in pages, minimum is a page |
436 | * size. This helps reduce fragmentation of the DMA space. | 436 | * size. This helps reduce fragmentation of the DMA space. |
437 | */ | 437 | */ |
438 | align = PAGE_SIZE << get_order(size); | 438 | align_mask = (1 << get_order(size)) - 1; |
439 | 439 | ||
440 | spin_lock_irqsave(&pool->lock, flags); | 440 | spin_lock_irqsave(&pool->lock, flags); |
441 | pageno = bitmap_find_next_zero_area(pool->bitmap, pool->nr_pages, | 441 | pageno = bitmap_find_next_zero_area(pool->bitmap, pool->nr_pages, |
442 | 0, count, (1 << align) - 1); | 442 | 0, count, align_mask); |
443 | if (pageno < pool->nr_pages) { | 443 | if (pageno < pool->nr_pages) { |
444 | bitmap_set(pool->bitmap, pageno, count); | 444 | bitmap_set(pool->bitmap, pageno, count); |
445 | ptr = pool->vaddr + PAGE_SIZE * pageno; | 445 | ptr = pool->vaddr + PAGE_SIZE * pageno; |
@@ -648,12 +648,12 @@ void arm_dma_free(struct device *dev, size_t size, void *cpu_addr, | |||
648 | 648 | ||
649 | if (arch_is_coherent() || nommu()) { | 649 | if (arch_is_coherent() || nommu()) { |
650 | __dma_free_buffer(page, size); | 650 | __dma_free_buffer(page, size); |
651 | } else if (__free_from_pool(cpu_addr, size)) { | ||
652 | return; | ||
651 | } else if (!IS_ENABLED(CONFIG_CMA)) { | 653 | } else if (!IS_ENABLED(CONFIG_CMA)) { |
652 | __dma_free_remap(cpu_addr, size); | 654 | __dma_free_remap(cpu_addr, size); |
653 | __dma_free_buffer(page, size); | 655 | __dma_free_buffer(page, size); |
654 | } else { | 656 | } else { |
655 | if (__free_from_pool(cpu_addr, size)) | ||
656 | return; | ||
657 | /* | 657 | /* |
658 | * Non-atomic allocations cannot be freed with IRQs disabled | 658 | * Non-atomic allocations cannot be freed with IRQs disabled |
659 | */ | 659 | */ |
diff --git a/arch/arm/mm/flush.c b/arch/arm/mm/flush.c index 77458548e031..40ca11ed6e5f 100644 --- a/arch/arm/mm/flush.c +++ b/arch/arm/mm/flush.c | |||
@@ -231,8 +231,6 @@ void __sync_icache_dcache(pte_t pteval) | |||
231 | struct page *page; | 231 | struct page *page; |
232 | struct address_space *mapping; | 232 | struct address_space *mapping; |
233 | 233 | ||
234 | if (!pte_present_user(pteval)) | ||
235 | return; | ||
236 | if (cache_is_vipt_nonaliasing() && !pte_exec(pteval)) | 234 | if (cache_is_vipt_nonaliasing() && !pte_exec(pteval)) |
237 | /* only flush non-aliasing VIPT caches for exec mappings */ | 235 | /* only flush non-aliasing VIPT caches for exec mappings */ |
238 | return; | 236 | return; |
diff --git a/arch/arm/mm/tlb-v7.S b/arch/arm/mm/tlb-v7.S index c2021139cb56..ea94765acf9a 100644 --- a/arch/arm/mm/tlb-v7.S +++ b/arch/arm/mm/tlb-v7.S | |||
@@ -38,10 +38,10 @@ ENTRY(v7wbi_flush_user_tlb_range) | |||
38 | dsb | 38 | dsb |
39 | mov r0, r0, lsr #PAGE_SHIFT @ align address | 39 | mov r0, r0, lsr #PAGE_SHIFT @ align address |
40 | mov r1, r1, lsr #PAGE_SHIFT | 40 | mov r1, r1, lsr #PAGE_SHIFT |
41 | #ifdef CONFIG_ARM_ERRATA_720789 | ||
42 | mov r3, #0 | ||
43 | #else | ||
44 | asid r3, r3 @ mask ASID | 41 | asid r3, r3 @ mask ASID |
42 | #ifdef CONFIG_ARM_ERRATA_720789 | ||
43 | ALT_SMP(W(mov) r3, #0 ) | ||
44 | ALT_UP(W(nop) ) | ||
45 | #endif | 45 | #endif |
46 | orr r0, r3, r0, lsl #PAGE_SHIFT @ Create initial MVA | 46 | orr r0, r3, r0, lsl #PAGE_SHIFT @ Create initial MVA |
47 | mov r1, r1, lsl #PAGE_SHIFT | 47 | mov r1, r1, lsl #PAGE_SHIFT |
diff --git a/arch/arm/plat-omap/dmtimer.c b/arch/arm/plat-omap/dmtimer.c index 626ad8cad7a9..938b50a33439 100644 --- a/arch/arm/plat-omap/dmtimer.c +++ b/arch/arm/plat-omap/dmtimer.c | |||
@@ -189,6 +189,7 @@ struct omap_dm_timer *omap_dm_timer_request(void) | |||
189 | timer->reserved = 1; | 189 | timer->reserved = 1; |
190 | break; | 190 | break; |
191 | } | 191 | } |
192 | spin_unlock_irqrestore(&dm_timer_lock, flags); | ||
192 | 193 | ||
193 | if (timer) { | 194 | if (timer) { |
194 | ret = omap_dm_timer_prepare(timer); | 195 | ret = omap_dm_timer_prepare(timer); |
@@ -197,7 +198,6 @@ struct omap_dm_timer *omap_dm_timer_request(void) | |||
197 | timer = NULL; | 198 | timer = NULL; |
198 | } | 199 | } |
199 | } | 200 | } |
200 | spin_unlock_irqrestore(&dm_timer_lock, flags); | ||
201 | 201 | ||
202 | if (!timer) | 202 | if (!timer) |
203 | pr_debug("%s: timer request failed!\n", __func__); | 203 | pr_debug("%s: timer request failed!\n", __func__); |
@@ -220,6 +220,7 @@ struct omap_dm_timer *omap_dm_timer_request_specific(int id) | |||
220 | break; | 220 | break; |
221 | } | 221 | } |
222 | } | 222 | } |
223 | spin_unlock_irqrestore(&dm_timer_lock, flags); | ||
223 | 224 | ||
224 | if (timer) { | 225 | if (timer) { |
225 | ret = omap_dm_timer_prepare(timer); | 226 | ret = omap_dm_timer_prepare(timer); |
@@ -228,7 +229,6 @@ struct omap_dm_timer *omap_dm_timer_request_specific(int id) | |||
228 | timer = NULL; | 229 | timer = NULL; |
229 | } | 230 | } |
230 | } | 231 | } |
231 | spin_unlock_irqrestore(&dm_timer_lock, flags); | ||
232 | 232 | ||
233 | if (!timer) | 233 | if (!timer) |
234 | pr_debug("%s: timer%d request failed!\n", __func__, id); | 234 | pr_debug("%s: timer%d request failed!\n", __func__, id); |
@@ -258,7 +258,7 @@ EXPORT_SYMBOL_GPL(omap_dm_timer_enable); | |||
258 | 258 | ||
259 | void omap_dm_timer_disable(struct omap_dm_timer *timer) | 259 | void omap_dm_timer_disable(struct omap_dm_timer *timer) |
260 | { | 260 | { |
261 | pm_runtime_put(&timer->pdev->dev); | 261 | pm_runtime_put_sync(&timer->pdev->dev); |
262 | } | 262 | } |
263 | EXPORT_SYMBOL_GPL(omap_dm_timer_disable); | 263 | EXPORT_SYMBOL_GPL(omap_dm_timer_disable); |
264 | 264 | ||
diff --git a/arch/arm/plat-omap/include/plat/cpu.h b/arch/arm/plat-omap/include/plat/cpu.h index 68b180edcfff..bb5d08a70dbc 100644 --- a/arch/arm/plat-omap/include/plat/cpu.h +++ b/arch/arm/plat-omap/include/plat/cpu.h | |||
@@ -372,7 +372,8 @@ IS_OMAP_TYPE(3430, 0x3430) | |||
372 | #define cpu_class_is_omap1() (cpu_is_omap7xx() || cpu_is_omap15xx() || \ | 372 | #define cpu_class_is_omap1() (cpu_is_omap7xx() || cpu_is_omap15xx() || \ |
373 | cpu_is_omap16xx()) | 373 | cpu_is_omap16xx()) |
374 | #define cpu_class_is_omap2() (cpu_is_omap24xx() || cpu_is_omap34xx() || \ | 374 | #define cpu_class_is_omap2() (cpu_is_omap24xx() || cpu_is_omap34xx() || \ |
375 | cpu_is_omap44xx() || soc_is_omap54xx()) | 375 | cpu_is_omap44xx() || soc_is_omap54xx() || \ |
376 | soc_is_am33xx()) | ||
376 | 377 | ||
377 | /* Various silicon revisions for omap2 */ | 378 | /* Various silicon revisions for omap2 */ |
378 | #define OMAP242X_CLASS 0x24200024 | 379 | #define OMAP242X_CLASS 0x24200024 |
diff --git a/arch/arm/plat-omap/include/plat/multi.h b/arch/arm/plat-omap/include/plat/multi.h index 045e320f1067..324d31b14852 100644 --- a/arch/arm/plat-omap/include/plat/multi.h +++ b/arch/arm/plat-omap/include/plat/multi.h | |||
@@ -108,4 +108,13 @@ | |||
108 | # endif | 108 | # endif |
109 | #endif | 109 | #endif |
110 | 110 | ||
111 | #ifdef CONFIG_SOC_AM33XX | ||
112 | # ifdef OMAP_NAME | ||
113 | # undef MULTI_OMAP2 | ||
114 | # define MULTI_OMAP2 | ||
115 | # else | ||
116 | # define OMAP_NAME am33xx | ||
117 | # endif | ||
118 | #endif | ||
119 | |||
111 | #endif /* __PLAT_OMAP_MULTI_H */ | 120 | #endif /* __PLAT_OMAP_MULTI_H */ |
diff --git a/arch/arm/plat-omap/include/plat/uncompress.h b/arch/arm/plat-omap/include/plat/uncompress.h index b8d19a136781..7f7b112acccb 100644 --- a/arch/arm/plat-omap/include/plat/uncompress.h +++ b/arch/arm/plat-omap/include/plat/uncompress.h | |||
@@ -110,7 +110,7 @@ static inline void flush(void) | |||
110 | _DEBUG_LL_ENTRY(mach, AM33XX_UART##p##_BASE, OMAP_PORT_SHIFT, \ | 110 | _DEBUG_LL_ENTRY(mach, AM33XX_UART##p##_BASE, OMAP_PORT_SHIFT, \ |
111 | AM33XXUART##p) | 111 | AM33XXUART##p) |
112 | 112 | ||
113 | static inline void __arch_decomp_setup(unsigned long arch_id) | 113 | static inline void arch_decomp_setup(void) |
114 | { | 114 | { |
115 | int port = 0; | 115 | int port = 0; |
116 | 116 | ||
@@ -198,8 +198,6 @@ static inline void __arch_decomp_setup(unsigned long arch_id) | |||
198 | } while (0); | 198 | } while (0); |
199 | } | 199 | } |
200 | 200 | ||
201 | #define arch_decomp_setup() __arch_decomp_setup(arch_id) | ||
202 | |||
203 | /* | 201 | /* |
204 | * nothing to do | 202 | * nothing to do |
205 | */ | 203 | */ |
diff --git a/arch/arm/plat-orion/common.c b/arch/arm/plat-orion/common.c index d245a87dc014..b8b747a9d360 100644 --- a/arch/arm/plat-orion/common.c +++ b/arch/arm/plat-orion/common.c | |||
@@ -291,10 +291,12 @@ static struct platform_device orion_ge00 = { | |||
291 | void __init orion_ge00_init(struct mv643xx_eth_platform_data *eth_data, | 291 | void __init orion_ge00_init(struct mv643xx_eth_platform_data *eth_data, |
292 | unsigned long mapbase, | 292 | unsigned long mapbase, |
293 | unsigned long irq, | 293 | unsigned long irq, |
294 | unsigned long irq_err) | 294 | unsigned long irq_err, |
295 | unsigned int tx_csum_limit) | ||
295 | { | 296 | { |
296 | fill_resources(&orion_ge00_shared, orion_ge00_shared_resources, | 297 | fill_resources(&orion_ge00_shared, orion_ge00_shared_resources, |
297 | mapbase + 0x2000, SZ_16K - 1, irq_err); | 298 | mapbase + 0x2000, SZ_16K - 1, irq_err); |
299 | orion_ge00_shared_data.tx_csum_limit = tx_csum_limit; | ||
298 | ge_complete(&orion_ge00_shared_data, | 300 | ge_complete(&orion_ge00_shared_data, |
299 | orion_ge00_resources, irq, &orion_ge00_shared, | 301 | orion_ge00_resources, irq, &orion_ge00_shared, |
300 | eth_data, &orion_ge00); | 302 | eth_data, &orion_ge00); |
@@ -343,10 +345,12 @@ static struct platform_device orion_ge01 = { | |||
343 | void __init orion_ge01_init(struct mv643xx_eth_platform_data *eth_data, | 345 | void __init orion_ge01_init(struct mv643xx_eth_platform_data *eth_data, |
344 | unsigned long mapbase, | 346 | unsigned long mapbase, |
345 | unsigned long irq, | 347 | unsigned long irq, |
346 | unsigned long irq_err) | 348 | unsigned long irq_err, |
349 | unsigned int tx_csum_limit) | ||
347 | { | 350 | { |
348 | fill_resources(&orion_ge01_shared, orion_ge01_shared_resources, | 351 | fill_resources(&orion_ge01_shared, orion_ge01_shared_resources, |
349 | mapbase + 0x2000, SZ_16K - 1, irq_err); | 352 | mapbase + 0x2000, SZ_16K - 1, irq_err); |
353 | orion_ge01_shared_data.tx_csum_limit = tx_csum_limit; | ||
350 | ge_complete(&orion_ge01_shared_data, | 354 | ge_complete(&orion_ge01_shared_data, |
351 | orion_ge01_resources, irq, &orion_ge01_shared, | 355 | orion_ge01_resources, irq, &orion_ge01_shared, |
352 | eth_data, &orion_ge01); | 356 | eth_data, &orion_ge01); |
diff --git a/arch/arm/plat-orion/include/plat/common.h b/arch/arm/plat-orion/include/plat/common.h index e00fdb213609..ae2377ef63e5 100644 --- a/arch/arm/plat-orion/include/plat/common.h +++ b/arch/arm/plat-orion/include/plat/common.h | |||
@@ -39,12 +39,14 @@ void __init orion_rtc_init(unsigned long mapbase, | |||
39 | void __init orion_ge00_init(struct mv643xx_eth_platform_data *eth_data, | 39 | void __init orion_ge00_init(struct mv643xx_eth_platform_data *eth_data, |
40 | unsigned long mapbase, | 40 | unsigned long mapbase, |
41 | unsigned long irq, | 41 | unsigned long irq, |
42 | unsigned long irq_err); | 42 | unsigned long irq_err, |
43 | unsigned int tx_csum_limit); | ||
43 | 44 | ||
44 | void __init orion_ge01_init(struct mv643xx_eth_platform_data *eth_data, | 45 | void __init orion_ge01_init(struct mv643xx_eth_platform_data *eth_data, |
45 | unsigned long mapbase, | 46 | unsigned long mapbase, |
46 | unsigned long irq, | 47 | unsigned long irq, |
47 | unsigned long irq_err); | 48 | unsigned long irq_err, |
49 | unsigned int tx_csum_limit); | ||
48 | 50 | ||
49 | void __init orion_ge10_init(struct mv643xx_eth_platform_data *eth_data, | 51 | void __init orion_ge10_init(struct mv643xx_eth_platform_data *eth_data, |
50 | unsigned long mapbase, | 52 | unsigned long mapbase, |
diff --git a/arch/arm/plat-s3c24xx/dma.c b/arch/arm/plat-s3c24xx/dma.c index 28f898f75380..db98e7021f0d 100644 --- a/arch/arm/plat-s3c24xx/dma.c +++ b/arch/arm/plat-s3c24xx/dma.c | |||
@@ -430,7 +430,7 @@ s3c2410_dma_canload(struct s3c2410_dma_chan *chan) | |||
430 | * when necessary. | 430 | * when necessary. |
431 | */ | 431 | */ |
432 | 432 | ||
433 | int s3c2410_dma_enqueue(unsigned int channel, void *id, | 433 | int s3c2410_dma_enqueue(enum dma_ch channel, void *id, |
434 | dma_addr_t data, int size) | 434 | dma_addr_t data, int size) |
435 | { | 435 | { |
436 | struct s3c2410_dma_chan *chan = s3c_dma_lookup_channel(channel); | 436 | struct s3c2410_dma_chan *chan = s3c_dma_lookup_channel(channel); |
diff --git a/arch/arm/plat-samsung/Kconfig b/arch/arm/plat-samsung/Kconfig index 7aca31c1df1f..9c3b90c3538e 100644 --- a/arch/arm/plat-samsung/Kconfig +++ b/arch/arm/plat-samsung/Kconfig | |||
@@ -403,7 +403,8 @@ config S5P_DEV_USB_EHCI | |||
403 | 403 | ||
404 | config S3C24XX_PWM | 404 | config S3C24XX_PWM |
405 | bool "PWM device support" | 405 | bool "PWM device support" |
406 | select HAVE_PWM | 406 | select PWM |
407 | select PWM_SAMSUNG | ||
407 | help | 408 | help |
408 | Support for exporting the PWM timer blocks via the pwm device | 409 | Support for exporting the PWM timer blocks via the pwm device |
409 | system | 410 | system |
diff --git a/arch/arm/plat-samsung/devs.c b/arch/arm/plat-samsung/devs.c index 74e31ce35538..fc49f3dabd76 100644 --- a/arch/arm/plat-samsung/devs.c +++ b/arch/arm/plat-samsung/devs.c | |||
@@ -32,6 +32,8 @@ | |||
32 | #include <linux/platform_data/s3c-hsudc.h> | 32 | #include <linux/platform_data/s3c-hsudc.h> |
33 | #include <linux/platform_data/s3c-hsotg.h> | 33 | #include <linux/platform_data/s3c-hsotg.h> |
34 | 34 | ||
35 | #include <media/s5p_hdmi.h> | ||
36 | |||
35 | #include <asm/irq.h> | 37 | #include <asm/irq.h> |
36 | #include <asm/pmu.h> | 38 | #include <asm/pmu.h> |
37 | #include <asm/mach/arch.h> | 39 | #include <asm/mach/arch.h> |
@@ -748,7 +750,8 @@ void __init s5p_i2c_hdmiphy_set_platdata(struct s3c2410_platform_i2c *pd) | |||
748 | if (!pd) { | 750 | if (!pd) { |
749 | pd = &default_i2c_data; | 751 | pd = &default_i2c_data; |
750 | 752 | ||
751 | if (soc_is_exynos4210()) | 753 | if (soc_is_exynos4210() || |
754 | soc_is_exynos4212() || soc_is_exynos4412()) | ||
752 | pd->bus_num = 8; | 755 | pd->bus_num = 8; |
753 | else if (soc_is_s5pv210()) | 756 | else if (soc_is_s5pv210()) |
754 | pd->bus_num = 3; | 757 | pd->bus_num = 3; |
@@ -759,6 +762,30 @@ void __init s5p_i2c_hdmiphy_set_platdata(struct s3c2410_platform_i2c *pd) | |||
759 | npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c), | 762 | npd = s3c_set_platdata(pd, sizeof(struct s3c2410_platform_i2c), |
760 | &s5p_device_i2c_hdmiphy); | 763 | &s5p_device_i2c_hdmiphy); |
761 | } | 764 | } |
765 | |||
766 | struct s5p_hdmi_platform_data s5p_hdmi_def_platdata; | ||
767 | |||
768 | void __init s5p_hdmi_set_platdata(struct i2c_board_info *hdmiphy_info, | ||
769 | struct i2c_board_info *mhl_info, int mhl_bus) | ||
770 | { | ||
771 | struct s5p_hdmi_platform_data *pd = &s5p_hdmi_def_platdata; | ||
772 | |||
773 | if (soc_is_exynos4210() || | ||
774 | soc_is_exynos4212() || soc_is_exynos4412()) | ||
775 | pd->hdmiphy_bus = 8; | ||
776 | else if (soc_is_s5pv210()) | ||
777 | pd->hdmiphy_bus = 3; | ||
778 | else | ||
779 | pd->hdmiphy_bus = 0; | ||
780 | |||
781 | pd->hdmiphy_info = hdmiphy_info; | ||
782 | pd->mhl_info = mhl_info; | ||
783 | pd->mhl_bus = mhl_bus; | ||
784 | |||
785 | s3c_set_platdata(pd, sizeof(struct s5p_hdmi_platform_data), | ||
786 | &s5p_device_hdmi); | ||
787 | } | ||
788 | |||
762 | #endif /* CONFIG_S5P_DEV_I2C_HDMIPHY */ | 789 | #endif /* CONFIG_S5P_DEV_I2C_HDMIPHY */ |
763 | 790 | ||
764 | /* I2S */ | 791 | /* I2S */ |
diff --git a/arch/arm/plat-samsung/include/plat/hdmi.h b/arch/arm/plat-samsung/include/plat/hdmi.h new file mode 100644 index 000000000000..331d046ac2c5 --- /dev/null +++ b/arch/arm/plat-samsung/include/plat/hdmi.h | |||
@@ -0,0 +1,16 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2012 Samsung Electronics Co.Ltd | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify it | ||
5 | * under the terms of the GNU General Public License as published by the | ||
6 | * Free Software Foundation; either version 2 of the License, or (at your | ||
7 | * option) any later version. | ||
8 | */ | ||
9 | |||
10 | #ifndef __PLAT_SAMSUNG_HDMI_H | ||
11 | #define __PLAT_SAMSUNG_HDMI_H __FILE__ | ||
12 | |||
13 | extern void s5p_hdmi_set_platdata(struct i2c_board_info *hdmiphy_info, | ||
14 | struct i2c_board_info *mhl_info, int mhl_bus); | ||
15 | |||
16 | #endif /* __PLAT_SAMSUNG_HDMI_H */ | ||
diff --git a/arch/arm/plat-samsung/pm.c b/arch/arm/plat-samsung/pm.c index 64ab65f0fdbc..15070284343e 100644 --- a/arch/arm/plat-samsung/pm.c +++ b/arch/arm/plat-samsung/pm.c | |||
@@ -74,7 +74,7 @@ unsigned char pm_uart_udivslot; | |||
74 | 74 | ||
75 | #ifdef CONFIG_SAMSUNG_PM_DEBUG | 75 | #ifdef CONFIG_SAMSUNG_PM_DEBUG |
76 | 76 | ||
77 | struct pm_uart_save uart_save[CONFIG_SERIAL_SAMSUNG_UARTS]; | 77 | static struct pm_uart_save uart_save[CONFIG_SERIAL_SAMSUNG_UARTS]; |
78 | 78 | ||
79 | static void s3c_pm_save_uart(unsigned int uart, struct pm_uart_save *save) | 79 | static void s3c_pm_save_uart(unsigned int uart, struct pm_uart_save *save) |
80 | { | 80 | { |
diff --git a/arch/arm/vfp/vfpmodule.c b/arch/arm/vfp/vfpmodule.c index fb849d044bde..c834b32af275 100644 --- a/arch/arm/vfp/vfpmodule.c +++ b/arch/arm/vfp/vfpmodule.c | |||
@@ -719,8 +719,10 @@ static int __init vfp_init(void) | |||
719 | if ((fmrx(MVFR1) & 0x000fff00) == 0x00011100) | 719 | if ((fmrx(MVFR1) & 0x000fff00) == 0x00011100) |
720 | elf_hwcap |= HWCAP_NEON; | 720 | elf_hwcap |= HWCAP_NEON; |
721 | #endif | 721 | #endif |
722 | #ifdef CONFIG_VFPv3 | ||
722 | if ((fmrx(MVFR1) & 0xf0000000) == 0x10000000) | 723 | if ((fmrx(MVFR1) & 0xf0000000) == 0x10000000) |
723 | elf_hwcap |= HWCAP_VFPv4; | 724 | elf_hwcap |= HWCAP_VFPv4; |
725 | #endif | ||
724 | } | 726 | } |
725 | } | 727 | } |
726 | return 0; | 728 | return 0; |
diff --git a/arch/blackfin/kernel/setup.c b/arch/blackfin/kernel/setup.c index ada8f0fc71e4..fb96e607adcf 100644 --- a/arch/blackfin/kernel/setup.c +++ b/arch/blackfin/kernel/setup.c | |||
@@ -52,7 +52,6 @@ EXPORT_SYMBOL(reserved_mem_dcache_on); | |||
52 | #ifdef CONFIG_MTD_UCLINUX | 52 | #ifdef CONFIG_MTD_UCLINUX |
53 | extern struct map_info uclinux_ram_map; | 53 | extern struct map_info uclinux_ram_map; |
54 | unsigned long memory_mtd_end, memory_mtd_start, mtd_size; | 54 | unsigned long memory_mtd_end, memory_mtd_start, mtd_size; |
55 | unsigned long _ebss; | ||
56 | EXPORT_SYMBOL(memory_mtd_end); | 55 | EXPORT_SYMBOL(memory_mtd_end); |
57 | EXPORT_SYMBOL(memory_mtd_start); | 56 | EXPORT_SYMBOL(memory_mtd_start); |
58 | EXPORT_SYMBOL(mtd_size); | 57 | EXPORT_SYMBOL(mtd_size); |
diff --git a/arch/c6x/Kconfig b/arch/c6x/Kconfig index 052f81a76239..983c859e40b7 100644 --- a/arch/c6x/Kconfig +++ b/arch/c6x/Kconfig | |||
@@ -6,6 +6,7 @@ | |||
6 | config C6X | 6 | config C6X |
7 | def_bool y | 7 | def_bool y |
8 | select CLKDEV_LOOKUP | 8 | select CLKDEV_LOOKUP |
9 | select GENERIC_ATOMIC64 | ||
9 | select GENERIC_IRQ_SHOW | 10 | select GENERIC_IRQ_SHOW |
10 | select HAVE_ARCH_TRACEHOOK | 11 | select HAVE_ARCH_TRACEHOOK |
11 | select HAVE_DMA_API_DEBUG | 12 | select HAVE_DMA_API_DEBUG |
diff --git a/arch/c6x/include/asm/cache.h b/arch/c6x/include/asm/cache.h index 6d521d96d941..09c5a0f5f4d1 100644 --- a/arch/c6x/include/asm/cache.h +++ b/arch/c6x/include/asm/cache.h | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * Port on Texas Instruments TMS320C6x architecture | 2 | * Port on Texas Instruments TMS320C6x architecture |
3 | * | 3 | * |
4 | * Copyright (C) 2005, 2006, 2009, 2010 Texas Instruments Incorporated | 4 | * Copyright (C) 2005, 2006, 2009, 2010, 2012 Texas Instruments Incorporated |
5 | * Author: Aurelien Jacquiot (aurelien.jacquiot@jaluna.com) | 5 | * Author: Aurelien Jacquiot (aurelien.jacquiot@jaluna.com) |
6 | * | 6 | * |
7 | * This program is free software; you can redistribute it and/or modify | 7 | * This program is free software; you can redistribute it and/or modify |
@@ -16,9 +16,14 @@ | |||
16 | /* | 16 | /* |
17 | * Cache line size | 17 | * Cache line size |
18 | */ | 18 | */ |
19 | #define L1D_CACHE_BYTES 64 | 19 | #define L1D_CACHE_SHIFT 6 |
20 | #define L1P_CACHE_BYTES 32 | 20 | #define L1D_CACHE_BYTES (1 << L1D_CACHE_SHIFT) |
21 | #define L2_CACHE_BYTES 128 | 21 | |
22 | #define L1P_CACHE_SHIFT 5 | ||
23 | #define L1P_CACHE_BYTES (1 << L1P_CACHE_SHIFT) | ||
24 | |||
25 | #define L2_CACHE_SHIFT 7 | ||
26 | #define L2_CACHE_BYTES (1 << L2_CACHE_SHIFT) | ||
22 | 27 | ||
23 | /* | 28 | /* |
24 | * L2 used as cache | 29 | * L2 used as cache |
@@ -29,7 +34,8 @@ | |||
29 | * For practical reasons the L1_CACHE_BYTES defines should not be smaller than | 34 | * For practical reasons the L1_CACHE_BYTES defines should not be smaller than |
30 | * the L2 line size | 35 | * the L2 line size |
31 | */ | 36 | */ |
32 | #define L1_CACHE_BYTES L2_CACHE_BYTES | 37 | #define L1_CACHE_SHIFT L2_CACHE_SHIFT |
38 | #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT) | ||
33 | 39 | ||
34 | #define L2_CACHE_ALIGN_LOW(x) \ | 40 | #define L2_CACHE_ALIGN_LOW(x) \ |
35 | (((x) & ~(L2_CACHE_BYTES - 1))) | 41 | (((x) & ~(L2_CACHE_BYTES - 1))) |
diff --git a/arch/ia64/configs/generic_defconfig b/arch/ia64/configs/generic_defconfig index 954d81e2e837..7913695b2fcb 100644 --- a/arch/ia64/configs/generic_defconfig +++ b/arch/ia64/configs/generic_defconfig | |||
@@ -234,5 +234,4 @@ CONFIG_CRYPTO_PCBC=m | |||
234 | CONFIG_CRYPTO_MD5=y | 234 | CONFIG_CRYPTO_MD5=y |
235 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 235 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
236 | CONFIG_CRC_T10DIF=y | 236 | CONFIG_CRC_T10DIF=y |
237 | CONFIG_MISC_DEVICES=y | ||
238 | CONFIG_INTEL_IOMMU=y | 237 | CONFIG_INTEL_IOMMU=y |
diff --git a/arch/ia64/configs/gensparse_defconfig b/arch/ia64/configs/gensparse_defconfig index 91c41ecfa6d9..f8e913365423 100644 --- a/arch/ia64/configs/gensparse_defconfig +++ b/arch/ia64/configs/gensparse_defconfig | |||
@@ -209,4 +209,3 @@ CONFIG_MAGIC_SYSRQ=y | |||
209 | CONFIG_DEBUG_KERNEL=y | 209 | CONFIG_DEBUG_KERNEL=y |
210 | CONFIG_DEBUG_MUTEXES=y | 210 | CONFIG_DEBUG_MUTEXES=y |
211 | CONFIG_CRYPTO_MD5=y | 211 | CONFIG_CRYPTO_MD5=y |
212 | CONFIG_MISC_DEVICES=y | ||
diff --git a/arch/ia64/kernel/acpi.c b/arch/ia64/kernel/acpi.c index 6f38b6120d96..440578850ae5 100644 --- a/arch/ia64/kernel/acpi.c +++ b/arch/ia64/kernel/acpi.c | |||
@@ -497,7 +497,7 @@ acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa) | |||
497 | srat_num_cpus++; | 497 | srat_num_cpus++; |
498 | } | 498 | } |
499 | 499 | ||
500 | void __init | 500 | int __init |
501 | acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma) | 501 | acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma) |
502 | { | 502 | { |
503 | unsigned long paddr, size; | 503 | unsigned long paddr, size; |
@@ -512,7 +512,7 @@ acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma) | |||
512 | 512 | ||
513 | /* Ignore disabled entries */ | 513 | /* Ignore disabled entries */ |
514 | if (!(ma->flags & ACPI_SRAT_MEM_ENABLED)) | 514 | if (!(ma->flags & ACPI_SRAT_MEM_ENABLED)) |
515 | return; | 515 | return -1; |
516 | 516 | ||
517 | /* record this node in proximity bitmap */ | 517 | /* record this node in proximity bitmap */ |
518 | pxm_bit_set(pxm); | 518 | pxm_bit_set(pxm); |
@@ -531,6 +531,7 @@ acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma) | |||
531 | p->size = size; | 531 | p->size = size; |
532 | p->nid = pxm; | 532 | p->nid = pxm; |
533 | num_node_memblks++; | 533 | num_node_memblks++; |
534 | return 0; | ||
534 | } | 535 | } |
535 | 536 | ||
536 | void __init acpi_numa_arch_fixup(void) | 537 | void __init acpi_numa_arch_fixup(void) |
diff --git a/arch/m68k/Kconfig b/arch/m68k/Kconfig index 0b0f8b8c4a26..b22df9410dce 100644 --- a/arch/m68k/Kconfig +++ b/arch/m68k/Kconfig | |||
@@ -5,6 +5,7 @@ config M68K | |||
5 | select HAVE_AOUT if MMU | 5 | select HAVE_AOUT if MMU |
6 | select HAVE_GENERIC_HARDIRQS | 6 | select HAVE_GENERIC_HARDIRQS |
7 | select GENERIC_IRQ_SHOW | 7 | select GENERIC_IRQ_SHOW |
8 | select GENERIC_ATOMIC64 | ||
8 | select ARCH_HAVE_NMI_SAFE_CMPXCHG if RMW_INSNS | 9 | select ARCH_HAVE_NMI_SAFE_CMPXCHG if RMW_INSNS |
9 | select GENERIC_CPU_DEVICES | 10 | select GENERIC_CPU_DEVICES |
10 | select GENERIC_STRNCPY_FROM_USER if MMU | 11 | select GENERIC_STRNCPY_FROM_USER if MMU |
@@ -54,18 +55,6 @@ config ZONE_DMA | |||
54 | bool | 55 | bool |
55 | default y | 56 | default y |
56 | 57 | ||
57 | config CPU_HAS_NO_BITFIELDS | ||
58 | bool | ||
59 | |||
60 | config CPU_HAS_NO_MULDIV64 | ||
61 | bool | ||
62 | |||
63 | config CPU_HAS_ADDRESS_SPACES | ||
64 | bool | ||
65 | |||
66 | config FPU | ||
67 | bool | ||
68 | |||
69 | config HZ | 58 | config HZ |
70 | int | 59 | int |
71 | default 1000 if CLEOPATRA | 60 | default 1000 if CLEOPATRA |
diff --git a/arch/m68k/Kconfig.cpu b/arch/m68k/Kconfig.cpu index 43a9f8f1b8eb..c4eb79edecec 100644 --- a/arch/m68k/Kconfig.cpu +++ b/arch/m68k/Kconfig.cpu | |||
@@ -28,6 +28,7 @@ config COLDFIRE | |||
28 | select CPU_HAS_NO_BITFIELDS | 28 | select CPU_HAS_NO_BITFIELDS |
29 | select CPU_HAS_NO_MULDIV64 | 29 | select CPU_HAS_NO_MULDIV64 |
30 | select GENERIC_CSUM | 30 | select GENERIC_CSUM |
31 | select HAVE_CLK | ||
31 | 32 | ||
32 | endchoice | 33 | endchoice |
33 | 34 | ||
@@ -37,6 +38,7 @@ config M68000 | |||
37 | bool | 38 | bool |
38 | select CPU_HAS_NO_BITFIELDS | 39 | select CPU_HAS_NO_BITFIELDS |
39 | select CPU_HAS_NO_MULDIV64 | 40 | select CPU_HAS_NO_MULDIV64 |
41 | select CPU_HAS_NO_UNALIGNED | ||
40 | select GENERIC_CSUM | 42 | select GENERIC_CSUM |
41 | help | 43 | help |
42 | The Freescale (was Motorola) 68000 CPU is the first generation of | 44 | The Freescale (was Motorola) 68000 CPU is the first generation of |
@@ -48,6 +50,7 @@ config M68000 | |||
48 | config MCPU32 | 50 | config MCPU32 |
49 | bool | 51 | bool |
50 | select CPU_HAS_NO_BITFIELDS | 52 | select CPU_HAS_NO_BITFIELDS |
53 | select CPU_HAS_NO_UNALIGNED | ||
51 | help | 54 | help |
52 | The Freescale (was then Motorola) CPU32 is a CPU core that is | 55 | The Freescale (was then Motorola) CPU32 is a CPU core that is |
53 | based on the 68020 processor. For the most part it is used in | 56 | based on the 68020 processor. For the most part it is used in |
@@ -56,7 +59,6 @@ config MCPU32 | |||
56 | config M68020 | 59 | config M68020 |
57 | bool "68020 support" | 60 | bool "68020 support" |
58 | depends on MMU | 61 | depends on MMU |
59 | select GENERIC_ATOMIC64 | ||
60 | select CPU_HAS_ADDRESS_SPACES | 62 | select CPU_HAS_ADDRESS_SPACES |
61 | help | 63 | help |
62 | If you anticipate running this kernel on a computer with a MC68020 | 64 | If you anticipate running this kernel on a computer with a MC68020 |
@@ -67,7 +69,6 @@ config M68020 | |||
67 | config M68030 | 69 | config M68030 |
68 | bool "68030 support" | 70 | bool "68030 support" |
69 | depends on MMU && !MMU_SUN3 | 71 | depends on MMU && !MMU_SUN3 |
70 | select GENERIC_ATOMIC64 | ||
71 | select CPU_HAS_ADDRESS_SPACES | 72 | select CPU_HAS_ADDRESS_SPACES |
72 | help | 73 | help |
73 | If you anticipate running this kernel on a computer with a MC68030 | 74 | If you anticipate running this kernel on a computer with a MC68030 |
@@ -77,7 +78,6 @@ config M68030 | |||
77 | config M68040 | 78 | config M68040 |
78 | bool "68040 support" | 79 | bool "68040 support" |
79 | depends on MMU && !MMU_SUN3 | 80 | depends on MMU && !MMU_SUN3 |
80 | select GENERIC_ATOMIC64 | ||
81 | select CPU_HAS_ADDRESS_SPACES | 81 | select CPU_HAS_ADDRESS_SPACES |
82 | help | 82 | help |
83 | If you anticipate running this kernel on a computer with a MC68LC040 | 83 | If you anticipate running this kernel on a computer with a MC68LC040 |
@@ -88,7 +88,6 @@ config M68040 | |||
88 | config M68060 | 88 | config M68060 |
89 | bool "68060 support" | 89 | bool "68060 support" |
90 | depends on MMU && !MMU_SUN3 | 90 | depends on MMU && !MMU_SUN3 |
91 | select GENERIC_ATOMIC64 | ||
92 | select CPU_HAS_ADDRESS_SPACES | 91 | select CPU_HAS_ADDRESS_SPACES |
93 | help | 92 | help |
94 | If you anticipate running this kernel on a computer with a MC68060 | 93 | If you anticipate running this kernel on a computer with a MC68060 |
@@ -376,6 +375,18 @@ config NODES_SHIFT | |||
376 | default "3" | 375 | default "3" |
377 | depends on !SINGLE_MEMORY_CHUNK | 376 | depends on !SINGLE_MEMORY_CHUNK |
378 | 377 | ||
378 | config CPU_HAS_NO_BITFIELDS | ||
379 | bool | ||
380 | |||
381 | config CPU_HAS_NO_MULDIV64 | ||
382 | bool | ||
383 | |||
384 | config CPU_HAS_NO_UNALIGNED | ||
385 | bool | ||
386 | |||
387 | config CPU_HAS_ADDRESS_SPACES | ||
388 | bool | ||
389 | |||
379 | config FPU | 390 | config FPU |
380 | bool | 391 | bool |
381 | 392 | ||
diff --git a/arch/m68k/apollo/config.c b/arch/m68k/apollo/config.c index 0a30406b9442..f5565d6eeb8e 100644 --- a/arch/m68k/apollo/config.c +++ b/arch/m68k/apollo/config.c | |||
@@ -177,8 +177,8 @@ irqreturn_t dn_timer_int(int irq, void *dev_id) | |||
177 | 177 | ||
178 | timer_handler(irq, dev_id); | 178 | timer_handler(irq, dev_id); |
179 | 179 | ||
180 | x=*(volatile unsigned char *)(timer+3); | 180 | x = *(volatile unsigned char *)(apollo_timer + 3); |
181 | x=*(volatile unsigned char *)(timer+5); | 181 | x = *(volatile unsigned char *)(apollo_timer + 5); |
182 | 182 | ||
183 | return IRQ_HANDLED; | 183 | return IRQ_HANDLED; |
184 | } | 184 | } |
@@ -186,17 +186,17 @@ irqreturn_t dn_timer_int(int irq, void *dev_id) | |||
186 | void dn_sched_init(irq_handler_t timer_routine) | 186 | void dn_sched_init(irq_handler_t timer_routine) |
187 | { | 187 | { |
188 | /* program timer 1 */ | 188 | /* program timer 1 */ |
189 | *(volatile unsigned char *)(timer+3)=0x01; | 189 | *(volatile unsigned char *)(apollo_timer + 3) = 0x01; |
190 | *(volatile unsigned char *)(timer+1)=0x40; | 190 | *(volatile unsigned char *)(apollo_timer + 1) = 0x40; |
191 | *(volatile unsigned char *)(timer+5)=0x09; | 191 | *(volatile unsigned char *)(apollo_timer + 5) = 0x09; |
192 | *(volatile unsigned char *)(timer+7)=0xc4; | 192 | *(volatile unsigned char *)(apollo_timer + 7) = 0xc4; |
193 | 193 | ||
194 | /* enable IRQ of PIC B */ | 194 | /* enable IRQ of PIC B */ |
195 | *(volatile unsigned char *)(pica+1)&=(~8); | 195 | *(volatile unsigned char *)(pica+1)&=(~8); |
196 | 196 | ||
197 | #if 0 | 197 | #if 0 |
198 | printk("*(0x10803) %02x\n",*(volatile unsigned char *)(timer+0x3)); | 198 | printk("*(0x10803) %02x\n",*(volatile unsigned char *)(apollo_timer + 0x3)); |
199 | printk("*(0x10803) %02x\n",*(volatile unsigned char *)(timer+0x3)); | 199 | printk("*(0x10803) %02x\n",*(volatile unsigned char *)(apollo_timer + 0x3)); |
200 | #endif | 200 | #endif |
201 | 201 | ||
202 | if (request_irq(IRQ_APOLLO, dn_timer_int, 0, "time", timer_routine)) | 202 | if (request_irq(IRQ_APOLLO, dn_timer_int, 0, "time", timer_routine)) |
diff --git a/arch/m68k/include/asm/Kbuild b/arch/m68k/include/asm/Kbuild index eafa2539a8ee..a74e5d95c384 100644 --- a/arch/m68k/include/asm/Kbuild +++ b/arch/m68k/include/asm/Kbuild | |||
@@ -1,4 +1,29 @@ | |||
1 | include include/asm-generic/Kbuild.asm | 1 | include include/asm-generic/Kbuild.asm |
2 | header-y += cachectl.h | 2 | header-y += cachectl.h |
3 | 3 | ||
4 | generic-y += bitsperlong.h | ||
5 | generic-y += cputime.h | ||
6 | generic-y += device.h | ||
7 | generic-y += emergency-restart.h | ||
8 | generic-y += errno.h | ||
9 | generic-y += futex.h | ||
10 | generic-y += ioctl.h | ||
11 | generic-y += ipcbuf.h | ||
12 | generic-y += irq_regs.h | ||
13 | generic-y += kdebug.h | ||
14 | generic-y += kmap_types.h | ||
15 | generic-y += kvm_para.h | ||
16 | generic-y += local64.h | ||
17 | generic-y += local.h | ||
18 | generic-y += mman.h | ||
19 | generic-y += mutex.h | ||
20 | generic-y += percpu.h | ||
21 | generic-y += resource.h | ||
22 | generic-y += scatterlist.h | ||
23 | generic-y += sections.h | ||
24 | generic-y += siginfo.h | ||
25 | generic-y += statfs.h | ||
26 | generic-y += topology.h | ||
27 | generic-y += types.h | ||
4 | generic-y += word-at-a-time.h | 28 | generic-y += word-at-a-time.h |
29 | generic-y += xor.h | ||
diff --git a/arch/m68k/include/asm/MC68332.h b/arch/m68k/include/asm/MC68332.h deleted file mode 100644 index 6bb8f02685a2..000000000000 --- a/arch/m68k/include/asm/MC68332.h +++ /dev/null | |||
@@ -1,152 +0,0 @@ | |||
1 | |||
2 | /* include/asm-m68knommu/MC68332.h: '332 control registers | ||
3 | * | ||
4 | * Copyright (C) 1998 Kenneth Albanowski <kjahds@kjahds.com>, | ||
5 | * | ||
6 | */ | ||
7 | |||
8 | #ifndef _MC68332_H_ | ||
9 | #define _MC68332_H_ | ||
10 | |||
11 | #define BYTE_REF(addr) (*((volatile unsigned char*)addr)) | ||
12 | #define WORD_REF(addr) (*((volatile unsigned short*)addr)) | ||
13 | |||
14 | #define PORTE_ADDR 0xfffa11 | ||
15 | #define PORTE BYTE_REF(PORTE_ADDR) | ||
16 | #define DDRE_ADDR 0xfffa15 | ||
17 | #define DDRE BYTE_REF(DDRE_ADDR) | ||
18 | #define PEPAR_ADDR 0xfffa17 | ||
19 | #define PEPAR BYTE_REF(PEPAR_ADDR) | ||
20 | |||
21 | #define PORTF_ADDR 0xfffa19 | ||
22 | #define PORTF BYTE_REF(PORTF_ADDR) | ||
23 | #define DDRF_ADDR 0xfffa1d | ||
24 | #define DDRF BYTE_REF(DDRF_ADDR) | ||
25 | #define PFPAR_ADDR 0xfffa1f | ||
26 | #define PFPAR BYTE_REF(PFPAR_ADDR) | ||
27 | |||
28 | #define PORTQS_ADDR 0xfffc15 | ||
29 | #define PORTQS BYTE_REF(PORTQS_ADDR) | ||
30 | #define DDRQS_ADDR 0xfffc17 | ||
31 | #define DDRQS BYTE_REF(DDRQS_ADDR) | ||
32 | #define PQSPAR_ADDR 0xfffc16 | ||
33 | #define PQSPAR BYTE_REF(PQSPAR_ADDR) | ||
34 | |||
35 | #define CSPAR0_ADDR 0xFFFA44 | ||
36 | #define CSPAR0 WORD_REF(CSPAR0_ADDR) | ||
37 | #define CSPAR1_ADDR 0xFFFA46 | ||
38 | #define CSPAR1 WORD_REF(CSPAR1_ADDR) | ||
39 | #define CSARBT_ADDR 0xFFFA48 | ||
40 | #define CSARBT WORD_REF(CSARBT_ADDR) | ||
41 | #define CSOPBT_ADDR 0xFFFA4A | ||
42 | #define CSOPBT WORD_REF(CSOPBT_ADDR) | ||
43 | #define CSBAR0_ADDR 0xFFFA4C | ||
44 | #define CSBAR0 WORD_REF(CSBAR0_ADDR) | ||
45 | #define CSOR0_ADDR 0xFFFA4E | ||
46 | #define CSOR0 WORD_REF(CSOR0_ADDR) | ||
47 | #define CSBAR1_ADDR 0xFFFA50 | ||
48 | #define CSBAR1 WORD_REF(CSBAR1_ADDR) | ||
49 | #define CSOR1_ADDR 0xFFFA52 | ||
50 | #define CSOR1 WORD_REF(CSOR1_ADDR) | ||
51 | #define CSBAR2_ADDR 0xFFFA54 | ||
52 | #define CSBAR2 WORD_REF(CSBAR2_ADDR) | ||
53 | #define CSOR2_ADDR 0xFFFA56 | ||
54 | #define CSOR2 WORD_REF(CSOR2_ADDR) | ||
55 | #define CSBAR3_ADDR 0xFFFA58 | ||
56 | #define CSBAR3 WORD_REF(CSBAR3_ADDR) | ||
57 | #define CSOR3_ADDR 0xFFFA5A | ||
58 | #define CSOR3 WORD_REF(CSOR3_ADDR) | ||
59 | #define CSBAR4_ADDR 0xFFFA5C | ||
60 | #define CSBAR4 WORD_REF(CSBAR4_ADDR) | ||
61 | #define CSOR4_ADDR 0xFFFA5E | ||
62 | #define CSOR4 WORD_REF(CSOR4_ADDR) | ||
63 | #define CSBAR5_ADDR 0xFFFA60 | ||
64 | #define CSBAR5 WORD_REF(CSBAR5_ADDR) | ||
65 | #define CSOR5_ADDR 0xFFFA62 | ||
66 | #define CSOR5 WORD_REF(CSOR5_ADDR) | ||
67 | #define CSBAR6_ADDR 0xFFFA64 | ||
68 | #define CSBAR6 WORD_REF(CSBAR6_ADDR) | ||
69 | #define CSOR6_ADDR 0xFFFA66 | ||
70 | #define CSOR6 WORD_REF(CSOR6_ADDR) | ||
71 | #define CSBAR7_ADDR 0xFFFA68 | ||
72 | #define CSBAR7 WORD_REF(CSBAR7_ADDR) | ||
73 | #define CSOR7_ADDR 0xFFFA6A | ||
74 | #define CSOR7 WORD_REF(CSOR7_ADDR) | ||
75 | #define CSBAR8_ADDR 0xFFFA6C | ||
76 | #define CSBAR8 WORD_REF(CSBAR8_ADDR) | ||
77 | #define CSOR8_ADDR 0xFFFA6E | ||
78 | #define CSOR8 WORD_REF(CSOR8_ADDR) | ||
79 | #define CSBAR9_ADDR 0xFFFA70 | ||
80 | #define CSBAR9 WORD_REF(CSBAR9_ADDR) | ||
81 | #define CSOR9_ADDR 0xFFFA72 | ||
82 | #define CSOR9 WORD_REF(CSOR9_ADDR) | ||
83 | #define CSBAR10_ADDR 0xFFFA74 | ||
84 | #define CSBAR10 WORD_REF(CSBAR10_ADDR) | ||
85 | #define CSOR10_ADDR 0xFFFA76 | ||
86 | #define CSOR10 WORD_REF(CSOR10_ADDR) | ||
87 | |||
88 | #define CSOR_MODE_ASYNC 0x0000 | ||
89 | #define CSOR_MODE_SYNC 0x8000 | ||
90 | #define CSOR_MODE_MASK 0x8000 | ||
91 | #define CSOR_BYTE_DISABLE 0x0000 | ||
92 | #define CSOR_BYTE_UPPER 0x4000 | ||
93 | #define CSOR_BYTE_LOWER 0x2000 | ||
94 | #define CSOR_BYTE_BOTH 0x6000 | ||
95 | #define CSOR_BYTE_MASK 0x6000 | ||
96 | #define CSOR_RW_RSVD 0x0000 | ||
97 | #define CSOR_RW_READ 0x0800 | ||
98 | #define CSOR_RW_WRITE 0x1000 | ||
99 | #define CSOR_RW_BOTH 0x1800 | ||
100 | #define CSOR_RW_MASK 0x1800 | ||
101 | #define CSOR_STROBE_DS 0x0400 | ||
102 | #define CSOR_STROBE_AS 0x0000 | ||
103 | #define CSOR_STROBE_MASK 0x0400 | ||
104 | #define CSOR_DSACK_WAIT(x) (wait << 6) | ||
105 | #define CSOR_DSACK_FTERM (14 << 6) | ||
106 | #define CSOR_DSACK_EXTERNAL (15 << 6) | ||
107 | #define CSOR_DSACK_MASK 0x03c0 | ||
108 | #define CSOR_SPACE_CPU 0x0000 | ||
109 | #define CSOR_SPACE_USER 0x0010 | ||
110 | #define CSOR_SPACE_SU 0x0020 | ||
111 | #define CSOR_SPACE_BOTH 0x0030 | ||
112 | #define CSOR_SPACE_MASK 0x0030 | ||
113 | #define CSOR_IPL_ALL 0x0000 | ||
114 | #define CSOR_IPL_PRIORITY(x) (x << 1) | ||
115 | #define CSOR_IPL_MASK 0x000e | ||
116 | #define CSOR_AVEC_ON 0x0001 | ||
117 | #define CSOR_AVEC_OFF 0x0000 | ||
118 | #define CSOR_AVEC_MASK 0x0001 | ||
119 | |||
120 | #define CSBAR_ADDR(x) ((addr >> 11) << 3) | ||
121 | #define CSBAR_ADDR_MASK 0xfff8 | ||
122 | #define CSBAR_BLKSIZE_2K 0x0000 | ||
123 | #define CSBAR_BLKSIZE_8K 0x0001 | ||
124 | #define CSBAR_BLKSIZE_16K 0x0002 | ||
125 | #define CSBAR_BLKSIZE_64K 0x0003 | ||
126 | #define CSBAR_BLKSIZE_128K 0x0004 | ||
127 | #define CSBAR_BLKSIZE_256K 0x0005 | ||
128 | #define CSBAR_BLKSIZE_512K 0x0006 | ||
129 | #define CSBAR_BLKSIZE_1M 0x0007 | ||
130 | #define CSBAR_BLKSIZE_MASK 0x0007 | ||
131 | |||
132 | #define CSPAR_DISC 0 | ||
133 | #define CSPAR_ALT 1 | ||
134 | #define CSPAR_CS8 2 | ||
135 | #define CSPAR_CS16 3 | ||
136 | #define CSPAR_MASK 3 | ||
137 | |||
138 | #define CSPAR0_CSBOOT(x) (x << 0) | ||
139 | #define CSPAR0_CS0(x) (x << 2) | ||
140 | #define CSPAR0_CS1(x) (x << 4) | ||
141 | #define CSPAR0_CS2(x) (x << 6) | ||
142 | #define CSPAR0_CS3(x) (x << 8) | ||
143 | #define CSPAR0_CS4(x) (x << 10) | ||
144 | #define CSPAR0_CS5(x) (x << 12) | ||
145 | |||
146 | #define CSPAR1_CS6(x) (x << 0) | ||
147 | #define CSPAR1_CS7(x) (x << 2) | ||
148 | #define CSPAR1_CS8(x) (x << 4) | ||
149 | #define CSPAR1_CS9(x) (x << 6) | ||
150 | #define CSPAR1_CS10(x) (x << 8) | ||
151 | |||
152 | #endif | ||
diff --git a/arch/m68k/include/asm/apollodma.h b/arch/m68k/include/asm/apollodma.h deleted file mode 100644 index 954adc851adb..000000000000 --- a/arch/m68k/include/asm/apollodma.h +++ /dev/null | |||
@@ -1,248 +0,0 @@ | |||
1 | /* | ||
2 | * linux/include/asm/dma.h: Defines for using and allocating dma channels. | ||
3 | * Written by Hennus Bergman, 1992. | ||
4 | * High DMA channel support & info by Hannu Savolainen | ||
5 | * and John Boyd, Nov. 1992. | ||
6 | */ | ||
7 | |||
8 | #ifndef _ASM_APOLLO_DMA_H | ||
9 | #define _ASM_APOLLO_DMA_H | ||
10 | |||
11 | #include <asm/apollohw.h> /* need byte IO */ | ||
12 | #include <linux/spinlock.h> /* And spinlocks */ | ||
13 | #include <linux/delay.h> | ||
14 | |||
15 | |||
16 | #define dma_outb(val,addr) (*((volatile unsigned char *)(addr+IO_BASE)) = (val)) | ||
17 | #define dma_inb(addr) (*((volatile unsigned char *)(addr+IO_BASE))) | ||
18 | |||
19 | /* | ||
20 | * NOTES about DMA transfers: | ||
21 | * | ||
22 | * controller 1: channels 0-3, byte operations, ports 00-1F | ||
23 | * controller 2: channels 4-7, word operations, ports C0-DF | ||
24 | * | ||
25 | * - ALL registers are 8 bits only, regardless of transfer size | ||
26 | * - channel 4 is not used - cascades 1 into 2. | ||
27 | * - channels 0-3 are byte - addresses/counts are for physical bytes | ||
28 | * - channels 5-7 are word - addresses/counts are for physical words | ||
29 | * - transfers must not cross physical 64K (0-3) or 128K (5-7) boundaries | ||
30 | * - transfer count loaded to registers is 1 less than actual count | ||
31 | * - controller 2 offsets are all even (2x offsets for controller 1) | ||
32 | * - page registers for 5-7 don't use data bit 0, represent 128K pages | ||
33 | * - page registers for 0-3 use bit 0, represent 64K pages | ||
34 | * | ||
35 | * DMA transfers are limited to the lower 16MB of _physical_ memory. | ||
36 | * Note that addresses loaded into registers must be _physical_ addresses, | ||
37 | * not logical addresses (which may differ if paging is active). | ||
38 | * | ||
39 | * Address mapping for channels 0-3: | ||
40 | * | ||
41 | * A23 ... A16 A15 ... A8 A7 ... A0 (Physical addresses) | ||
42 | * | ... | | ... | | ... | | ||
43 | * | ... | | ... | | ... | | ||
44 | * | ... | | ... | | ... | | ||
45 | * P7 ... P0 A7 ... A0 A7 ... A0 | ||
46 | * | Page | Addr MSB | Addr LSB | (DMA registers) | ||
47 | * | ||
48 | * Address mapping for channels 5-7: | ||
49 | * | ||
50 | * A23 ... A17 A16 A15 ... A9 A8 A7 ... A1 A0 (Physical addresses) | ||
51 | * | ... | \ \ ... \ \ \ ... \ \ | ||
52 | * | ... | \ \ ... \ \ \ ... \ (not used) | ||
53 | * | ... | \ \ ... \ \ \ ... \ | ||
54 | * P7 ... P1 (0) A7 A6 ... A0 A7 A6 ... A0 | ||
55 | * | Page | Addr MSB | Addr LSB | (DMA registers) | ||
56 | * | ||
57 | * Again, channels 5-7 transfer _physical_ words (16 bits), so addresses | ||
58 | * and counts _must_ be word-aligned (the lowest address bit is _ignored_ at | ||
59 | * the hardware level, so odd-byte transfers aren't possible). | ||
60 | * | ||
61 | * Transfer count (_not # bytes_) is limited to 64K, represented as actual | ||
62 | * count - 1 : 64K => 0xFFFF, 1 => 0x0000. Thus, count is always 1 or more, | ||
63 | * and up to 128K bytes may be transferred on channels 5-7 in one operation. | ||
64 | * | ||
65 | */ | ||
66 | |||
67 | #define MAX_DMA_CHANNELS 8 | ||
68 | |||
69 | /* The maximum address that we can perform a DMA transfer to on this platform */#define MAX_DMA_ADDRESS (PAGE_OFFSET+0x1000000) | ||
70 | |||
71 | /* 8237 DMA controllers */ | ||
72 | #define IO_DMA1_BASE 0x10C00 /* 8 bit slave DMA, channels 0..3 */ | ||
73 | #define IO_DMA2_BASE 0x10D00 /* 16 bit master DMA, ch 4(=slave input)..7 */ | ||
74 | |||
75 | /* DMA controller registers */ | ||
76 | #define DMA1_CMD_REG (IO_DMA1_BASE+0x08) /* command register (w) */ | ||
77 | #define DMA1_STAT_REG (IO_DMA1_BASE+0x08) /* status register (r) */ | ||
78 | #define DMA1_REQ_REG (IO_DMA1_BASE+0x09) /* request register (w) */ | ||
79 | #define DMA1_MASK_REG (IO_DMA1_BASE+0x0A) /* single-channel mask (w) */ | ||
80 | #define DMA1_MODE_REG (IO_DMA1_BASE+0x0B) /* mode register (w) */ | ||
81 | #define DMA1_CLEAR_FF_REG (IO_DMA1_BASE+0x0C) /* clear pointer flip-flop (w) */ | ||
82 | #define DMA1_TEMP_REG (IO_DMA1_BASE+0x0D) /* Temporary Register (r) */ | ||
83 | #define DMA1_RESET_REG (IO_DMA1_BASE+0x0D) /* Master Clear (w) */ | ||
84 | #define DMA1_CLR_MASK_REG (IO_DMA1_BASE+0x0E) /* Clear Mask */ | ||
85 | #define DMA1_MASK_ALL_REG (IO_DMA1_BASE+0x0F) /* all-channels mask (w) */ | ||
86 | |||
87 | #define DMA2_CMD_REG (IO_DMA2_BASE+0x10) /* command register (w) */ | ||
88 | #define DMA2_STAT_REG (IO_DMA2_BASE+0x10) /* status register (r) */ | ||
89 | #define DMA2_REQ_REG (IO_DMA2_BASE+0x12) /* request register (w) */ | ||
90 | #define DMA2_MASK_REG (IO_DMA2_BASE+0x14) /* single-channel mask (w) */ | ||
91 | #define DMA2_MODE_REG (IO_DMA2_BASE+0x16) /* mode register (w) */ | ||
92 | #define DMA2_CLEAR_FF_REG (IO_DMA2_BASE+0x18) /* clear pointer flip-flop (w) */ | ||
93 | #define DMA2_TEMP_REG (IO_DMA2_BASE+0x1A) /* Temporary Register (r) */ | ||
94 | #define DMA2_RESET_REG (IO_DMA2_BASE+0x1A) /* Master Clear (w) */ | ||
95 | #define DMA2_CLR_MASK_REG (IO_DMA2_BASE+0x1C) /* Clear Mask */ | ||
96 | #define DMA2_MASK_ALL_REG (IO_DMA2_BASE+0x1E) /* all-channels mask (w) */ | ||
97 | |||
98 | #define DMA_ADDR_0 (IO_DMA1_BASE+0x00) /* DMA address registers */ | ||
99 | #define DMA_ADDR_1 (IO_DMA1_BASE+0x02) | ||
100 | #define DMA_ADDR_2 (IO_DMA1_BASE+0x04) | ||
101 | #define DMA_ADDR_3 (IO_DMA1_BASE+0x06) | ||
102 | #define DMA_ADDR_4 (IO_DMA2_BASE+0x00) | ||
103 | #define DMA_ADDR_5 (IO_DMA2_BASE+0x04) | ||
104 | #define DMA_ADDR_6 (IO_DMA2_BASE+0x08) | ||
105 | #define DMA_ADDR_7 (IO_DMA2_BASE+0x0C) | ||
106 | |||
107 | #define DMA_CNT_0 (IO_DMA1_BASE+0x01) /* DMA count registers */ | ||
108 | #define DMA_CNT_1 (IO_DMA1_BASE+0x03) | ||
109 | #define DMA_CNT_2 (IO_DMA1_BASE+0x05) | ||
110 | #define DMA_CNT_3 (IO_DMA1_BASE+0x07) | ||
111 | #define DMA_CNT_4 (IO_DMA2_BASE+0x02) | ||
112 | #define DMA_CNT_5 (IO_DMA2_BASE+0x06) | ||
113 | #define DMA_CNT_6 (IO_DMA2_BASE+0x0A) | ||
114 | #define DMA_CNT_7 (IO_DMA2_BASE+0x0E) | ||
115 | |||
116 | #define DMA_MODE_READ 0x44 /* I/O to memory, no autoinit, increment, single mode */ | ||
117 | #define DMA_MODE_WRITE 0x48 /* memory to I/O, no autoinit, increment, single mode */ | ||
118 | #define DMA_MODE_CASCADE 0xC0 /* pass thru DREQ->HRQ, DACK<-HLDA only */ | ||
119 | |||
120 | #define DMA_AUTOINIT 0x10 | ||
121 | |||
122 | #define DMA_8BIT 0 | ||
123 | #define DMA_16BIT 1 | ||
124 | #define DMA_BUSMASTER 2 | ||
125 | |||
126 | extern spinlock_t dma_spin_lock; | ||
127 | |||
128 | static __inline__ unsigned long claim_dma_lock(void) | ||
129 | { | ||
130 | unsigned long flags; | ||
131 | spin_lock_irqsave(&dma_spin_lock, flags); | ||
132 | return flags; | ||
133 | } | ||
134 | |||
135 | static __inline__ void release_dma_lock(unsigned long flags) | ||
136 | { | ||
137 | spin_unlock_irqrestore(&dma_spin_lock, flags); | ||
138 | } | ||
139 | |||
140 | /* enable/disable a specific DMA channel */ | ||
141 | static __inline__ void enable_dma(unsigned int dmanr) | ||
142 | { | ||
143 | if (dmanr<=3) | ||
144 | dma_outb(dmanr, DMA1_MASK_REG); | ||
145 | else | ||
146 | dma_outb(dmanr & 3, DMA2_MASK_REG); | ||
147 | } | ||
148 | |||
149 | static __inline__ void disable_dma(unsigned int dmanr) | ||
150 | { | ||
151 | if (dmanr<=3) | ||
152 | dma_outb(dmanr | 4, DMA1_MASK_REG); | ||
153 | else | ||
154 | dma_outb((dmanr & 3) | 4, DMA2_MASK_REG); | ||
155 | } | ||
156 | |||
157 | /* Clear the 'DMA Pointer Flip Flop'. | ||
158 | * Write 0 for LSB/MSB, 1 for MSB/LSB access. | ||
159 | * Use this once to initialize the FF to a known state. | ||
160 | * After that, keep track of it. :-) | ||
161 | * --- In order to do that, the DMA routines below should --- | ||
162 | * --- only be used while holding the DMA lock ! --- | ||
163 | */ | ||
164 | static __inline__ void clear_dma_ff(unsigned int dmanr) | ||
165 | { | ||
166 | if (dmanr<=3) | ||
167 | dma_outb(0, DMA1_CLEAR_FF_REG); | ||
168 | else | ||
169 | dma_outb(0, DMA2_CLEAR_FF_REG); | ||
170 | } | ||
171 | |||
172 | /* set mode (above) for a specific DMA channel */ | ||
173 | static __inline__ void set_dma_mode(unsigned int dmanr, char mode) | ||
174 | { | ||
175 | if (dmanr<=3) | ||
176 | dma_outb(mode | dmanr, DMA1_MODE_REG); | ||
177 | else | ||
178 | dma_outb(mode | (dmanr&3), DMA2_MODE_REG); | ||
179 | } | ||
180 | |||
181 | /* Set transfer address & page bits for specific DMA channel. | ||
182 | * Assumes dma flipflop is clear. | ||
183 | */ | ||
184 | static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a) | ||
185 | { | ||
186 | if (dmanr <= 3) { | ||
187 | dma_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); | ||
188 | dma_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE ); | ||
189 | } else { | ||
190 | dma_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); | ||
191 | dma_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE ); | ||
192 | } | ||
193 | } | ||
194 | |||
195 | |||
196 | /* Set transfer size (max 64k for DMA1..3, 128k for DMA5..7) for | ||
197 | * a specific DMA channel. | ||
198 | * You must ensure the parameters are valid. | ||
199 | * NOTE: from a manual: "the number of transfers is one more | ||
200 | * than the initial word count"! This is taken into account. | ||
201 | * Assumes dma flip-flop is clear. | ||
202 | * NOTE 2: "count" represents _bytes_ and must be even for channels 5-7. | ||
203 | */ | ||
204 | static __inline__ void set_dma_count(unsigned int dmanr, unsigned int count) | ||
205 | { | ||
206 | count--; | ||
207 | if (dmanr <= 3) { | ||
208 | dma_outb( count & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE ); | ||
209 | dma_outb( (count>>8) & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE ); | ||
210 | } else { | ||
211 | dma_outb( (count>>1) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE ); | ||
212 | dma_outb( (count>>9) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE ); | ||
213 | } | ||
214 | } | ||
215 | |||
216 | |||
217 | /* Get DMA residue count. After a DMA transfer, this | ||
218 | * should return zero. Reading this while a DMA transfer is | ||
219 | * still in progress will return unpredictable results. | ||
220 | * If called before the channel has been used, it may return 1. | ||
221 | * Otherwise, it returns the number of _bytes_ left to transfer. | ||
222 | * | ||
223 | * Assumes DMA flip-flop is clear. | ||
224 | */ | ||
225 | static __inline__ int get_dma_residue(unsigned int dmanr) | ||
226 | { | ||
227 | unsigned int io_port = (dmanr<=3)? ((dmanr&3)<<1) + 1 + IO_DMA1_BASE | ||
228 | : ((dmanr&3)<<2) + 2 + IO_DMA2_BASE; | ||
229 | |||
230 | /* using short to get 16-bit wrap around */ | ||
231 | unsigned short count; | ||
232 | |||
233 | count = 1 + dma_inb(io_port); | ||
234 | count += dma_inb(io_port) << 8; | ||
235 | |||
236 | return (dmanr<=3)? count : (count<<1); | ||
237 | } | ||
238 | |||
239 | |||
240 | /* These are in kernel/dma.c: */ | ||
241 | extern int request_dma(unsigned int dmanr, const char * device_id); /* reserve a DMA channel */ | ||
242 | extern void free_dma(unsigned int dmanr); /* release it again */ | ||
243 | |||
244 | /* These are in arch/m68k/apollo/dma.c: */ | ||
245 | extern unsigned short dma_map_page(unsigned long phys_addr,int count,int type); | ||
246 | extern void dma_unmap_page(unsigned short dma_addr); | ||
247 | |||
248 | #endif /* _ASM_APOLLO_DMA_H */ | ||
diff --git a/arch/m68k/include/asm/apollohw.h b/arch/m68k/include/asm/apollohw.h index a1373b9aa281..635ef4f89010 100644 --- a/arch/m68k/include/asm/apollohw.h +++ b/arch/m68k/include/asm/apollohw.h | |||
@@ -98,7 +98,7 @@ extern u_long timer_physaddr; | |||
98 | #define cpuctrl (*(volatile unsigned int *)(IO_BASE + cpuctrl_physaddr)) | 98 | #define cpuctrl (*(volatile unsigned int *)(IO_BASE + cpuctrl_physaddr)) |
99 | #define pica (IO_BASE + pica_physaddr) | 99 | #define pica (IO_BASE + pica_physaddr) |
100 | #define picb (IO_BASE + picb_physaddr) | 100 | #define picb (IO_BASE + picb_physaddr) |
101 | #define timer (IO_BASE + timer_physaddr) | 101 | #define apollo_timer (IO_BASE + timer_physaddr) |
102 | #define addr_xlat_map ((unsigned short *)(IO_BASE + 0x17000)) | 102 | #define addr_xlat_map ((unsigned short *)(IO_BASE + 0x17000)) |
103 | 103 | ||
104 | #define isaIO2mem(x) (((((x) & 0x3f8) << 7) | (((x) & 0xfc00) >> 6) | ((x) & 0x7)) + 0x40000 + IO_BASE) | 104 | #define isaIO2mem(x) (((((x) & 0x3f8) << 7) | (((x) & 0xfc00) >> 6) | ((x) & 0x7)) + 0x40000 + IO_BASE) |
diff --git a/arch/m68k/include/asm/bitsperlong.h b/arch/m68k/include/asm/bitsperlong.h deleted file mode 100644 index 6dc0bb0c13b2..000000000000 --- a/arch/m68k/include/asm/bitsperlong.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-generic/bitsperlong.h> | ||
diff --git a/arch/m68k/include/asm/cputime.h b/arch/m68k/include/asm/cputime.h deleted file mode 100644 index c79c5e892305..000000000000 --- a/arch/m68k/include/asm/cputime.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef __M68K_CPUTIME_H | ||
2 | #define __M68K_CPUTIME_H | ||
3 | |||
4 | #include <asm-generic/cputime.h> | ||
5 | |||
6 | #endif /* __M68K_CPUTIME_H */ | ||
diff --git a/arch/m68k/include/asm/delay.h b/arch/m68k/include/asm/delay.h index 9c09becfd4c9..12d8fe4f1d30 100644 --- a/arch/m68k/include/asm/delay.h +++ b/arch/m68k/include/asm/delay.h | |||
@@ -43,7 +43,7 @@ static inline void __delay(unsigned long loops) | |||
43 | extern void __bad_udelay(void); | 43 | extern void __bad_udelay(void); |
44 | 44 | ||
45 | 45 | ||
46 | #if defined(CONFIG_M68000) || defined(CONFIG_COLDFIRE) | 46 | #ifdef CONFIG_CPU_HAS_NO_MULDIV64 |
47 | /* | 47 | /* |
48 | * The simpler m68k and ColdFire processors do not have a 32*32->64 | 48 | * The simpler m68k and ColdFire processors do not have a 32*32->64 |
49 | * multiply instruction. So we need to handle them a little differently. | 49 | * multiply instruction. So we need to handle them a little differently. |
diff --git a/arch/m68k/include/asm/device.h b/arch/m68k/include/asm/device.h deleted file mode 100644 index d8f9872b0e2d..000000000000 --- a/arch/m68k/include/asm/device.h +++ /dev/null | |||
@@ -1,7 +0,0 @@ | |||
1 | /* | ||
2 | * Arch specific extensions to struct device | ||
3 | * | ||
4 | * This file is released under the GPLv2 | ||
5 | */ | ||
6 | #include <asm-generic/device.h> | ||
7 | |||
diff --git a/arch/m68k/include/asm/emergency-restart.h b/arch/m68k/include/asm/emergency-restart.h deleted file mode 100644 index 108d8c48e42e..000000000000 --- a/arch/m68k/include/asm/emergency-restart.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef _ASM_EMERGENCY_RESTART_H | ||
2 | #define _ASM_EMERGENCY_RESTART_H | ||
3 | |||
4 | #include <asm-generic/emergency-restart.h> | ||
5 | |||
6 | #endif /* _ASM_EMERGENCY_RESTART_H */ | ||
diff --git a/arch/m68k/include/asm/errno.h b/arch/m68k/include/asm/errno.h deleted file mode 100644 index 0d4e188d6ef6..000000000000 --- a/arch/m68k/include/asm/errno.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef _M68K_ERRNO_H | ||
2 | #define _M68K_ERRNO_H | ||
3 | |||
4 | #include <asm-generic/errno.h> | ||
5 | |||
6 | #endif /* _M68K_ERRNO_H */ | ||
diff --git a/arch/m68k/include/asm/futex.h b/arch/m68k/include/asm/futex.h deleted file mode 100644 index 6a332a9f099c..000000000000 --- a/arch/m68k/include/asm/futex.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef _ASM_FUTEX_H | ||
2 | #define _ASM_FUTEX_H | ||
3 | |||
4 | #include <asm-generic/futex.h> | ||
5 | |||
6 | #endif | ||
diff --git a/arch/m68k/include/asm/ioctl.h b/arch/m68k/include/asm/ioctl.h deleted file mode 100644 index b279fe06dfe5..000000000000 --- a/arch/m68k/include/asm/ioctl.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-generic/ioctl.h> | ||
diff --git a/arch/m68k/include/asm/ipcbuf.h b/arch/m68k/include/asm/ipcbuf.h deleted file mode 100644 index 84c7e51cb6d0..000000000000 --- a/arch/m68k/include/asm/ipcbuf.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-generic/ipcbuf.h> | ||
diff --git a/arch/m68k/include/asm/irq_regs.h b/arch/m68k/include/asm/irq_regs.h deleted file mode 100644 index 3dd9c0b70270..000000000000 --- a/arch/m68k/include/asm/irq_regs.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-generic/irq_regs.h> | ||
diff --git a/arch/m68k/include/asm/kdebug.h b/arch/m68k/include/asm/kdebug.h deleted file mode 100644 index 6ece1b037665..000000000000 --- a/arch/m68k/include/asm/kdebug.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-generic/kdebug.h> | ||
diff --git a/arch/m68k/include/asm/kmap_types.h b/arch/m68k/include/asm/kmap_types.h deleted file mode 100644 index 3413cc1390ec..000000000000 --- a/arch/m68k/include/asm/kmap_types.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef __ASM_M68K_KMAP_TYPES_H | ||
2 | #define __ASM_M68K_KMAP_TYPES_H | ||
3 | |||
4 | #include <asm-generic/kmap_types.h> | ||
5 | |||
6 | #endif /* __ASM_M68K_KMAP_TYPES_H */ | ||
diff --git a/arch/m68k/include/asm/kvm_para.h b/arch/m68k/include/asm/kvm_para.h deleted file mode 100644 index 14fab8f0b957..000000000000 --- a/arch/m68k/include/asm/kvm_para.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-generic/kvm_para.h> | ||
diff --git a/arch/m68k/include/asm/local.h b/arch/m68k/include/asm/local.h deleted file mode 100644 index 6c259263e1f0..000000000000 --- a/arch/m68k/include/asm/local.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef _ASM_M68K_LOCAL_H | ||
2 | #define _ASM_M68K_LOCAL_H | ||
3 | |||
4 | #include <asm-generic/local.h> | ||
5 | |||
6 | #endif /* _ASM_M68K_LOCAL_H */ | ||
diff --git a/arch/m68k/include/asm/local64.h b/arch/m68k/include/asm/local64.h deleted file mode 100644 index 36c93b5cc239..000000000000 --- a/arch/m68k/include/asm/local64.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-generic/local64.h> | ||
diff --git a/arch/m68k/include/asm/mac_mouse.h b/arch/m68k/include/asm/mac_mouse.h deleted file mode 100644 index 39a5c292eaee..000000000000 --- a/arch/m68k/include/asm/mac_mouse.h +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | #ifndef _ASM_MAC_MOUSE_H | ||
2 | #define _ASM_MAC_MOUSE_H | ||
3 | |||
4 | /* | ||
5 | * linux/include/asm-m68k/mac_mouse.h | ||
6 | * header file for Macintosh ADB mouse driver | ||
7 | * 27-10-97 Michael Schmitz | ||
8 | * copied from: | ||
9 | * header file for Atari Mouse driver | ||
10 | * by Robert de Vries (robert@and.nl) on 19Jul93 | ||
11 | */ | ||
12 | |||
13 | struct mouse_status { | ||
14 | char buttons; | ||
15 | short dx; | ||
16 | short dy; | ||
17 | int ready; | ||
18 | int active; | ||
19 | wait_queue_head_t wait; | ||
20 | struct fasync_struct *fasyncptr; | ||
21 | }; | ||
22 | |||
23 | #endif | ||
diff --git a/arch/m68k/include/asm/mcfmbus.h b/arch/m68k/include/asm/mcfmbus.h deleted file mode 100644 index 319899c47a2c..000000000000 --- a/arch/m68k/include/asm/mcfmbus.h +++ /dev/null | |||
@@ -1,77 +0,0 @@ | |||
1 | /****************************************************************************/ | ||
2 | |||
3 | /* | ||
4 | * mcfmbus.h -- Coldfire MBUS support defines. | ||
5 | * | ||
6 | * (C) Copyright 1999, Martin Floeer (mfloeer@axcent.de) | ||
7 | */ | ||
8 | |||
9 | /****************************************************************************/ | ||
10 | |||
11 | |||
12 | #ifndef mcfmbus_h | ||
13 | #define mcfmbus_h | ||
14 | |||
15 | |||
16 | #define MCFMBUS_BASE 0x280 | ||
17 | #define MCFMBUS_IRQ_VECTOR 0x19 | ||
18 | #define MCFMBUS_IRQ 0x1 | ||
19 | #define MCFMBUS_CLK 0x3f | ||
20 | #define MCFMBUS_IRQ_LEVEL 0x07 /*IRQ Level 1*/ | ||
21 | #define MCFMBUS_ADDRESS 0x01 | ||
22 | |||
23 | |||
24 | /* | ||
25 | * Define the 5307 MBUS register set addresses | ||
26 | */ | ||
27 | |||
28 | #define MCFMBUS_MADR 0x00 | ||
29 | #define MCFMBUS_MFDR 0x04 | ||
30 | #define MCFMBUS_MBCR 0x08 | ||
31 | #define MCFMBUS_MBSR 0x0C | ||
32 | #define MCFMBUS_MBDR 0x10 | ||
33 | |||
34 | |||
35 | #define MCFMBUS_MADR_ADDR(a) (((a)&0x7F)<<0x01) /*Slave Address*/ | ||
36 | |||
37 | #define MCFMBUS_MFDR_MBC(a) ((a)&0x3F) /*M-Bus Clock*/ | ||
38 | |||
39 | /* | ||
40 | * Define bit flags in Control Register | ||
41 | */ | ||
42 | |||
43 | #define MCFMBUS_MBCR_MEN (0x80) /* M-Bus Enable */ | ||
44 | #define MCFMBUS_MBCR_MIEN (0x40) /* M-Bus Interrupt Enable */ | ||
45 | #define MCFMBUS_MBCR_MSTA (0x20) /* Master/Slave Mode Select Bit */ | ||
46 | #define MCFMBUS_MBCR_MTX (0x10) /* Transmit/Rcv Mode Select Bit */ | ||
47 | #define MCFMBUS_MBCR_TXAK (0x08) /* Transmit Acknowledge Enable */ | ||
48 | #define MCFMBUS_MBCR_RSTA (0x04) /* Repeat Start */ | ||
49 | |||
50 | /* | ||
51 | * Define bit flags in Status Register | ||
52 | */ | ||
53 | |||
54 | #define MCFMBUS_MBSR_MCF (0x80) /* Data Transfer Complete */ | ||
55 | #define MCFMBUS_MBSR_MAAS (0x40) /* Addressed as a Slave */ | ||
56 | #define MCFMBUS_MBSR_MBB (0x20) /* Bus Busy */ | ||
57 | #define MCFMBUS_MBSR_MAL (0x10) /* Arbitration Lost */ | ||
58 | #define MCFMBUS_MBSR_SRW (0x04) /* Slave Transmit */ | ||
59 | #define MCFMBUS_MBSR_MIF (0x02) /* M-Bus Interrupt */ | ||
60 | #define MCFMBUS_MBSR_RXAK (0x01) /* No Acknowledge Received */ | ||
61 | |||
62 | /* | ||
63 | * Define bit flags in DATA I/O Register | ||
64 | */ | ||
65 | |||
66 | #define MCFMBUS_MBDR_READ (0x01) /* 1=read 0=write MBUS */ | ||
67 | |||
68 | #define MBUSIOCSCLOCK 1 | ||
69 | #define MBUSIOCGCLOCK 2 | ||
70 | #define MBUSIOCSADDR 3 | ||
71 | #define MBUSIOCGADDR 4 | ||
72 | #define MBUSIOCSSLADDR 5 | ||
73 | #define MBUSIOCGSLADDR 6 | ||
74 | #define MBUSIOCSSUBADDR 7 | ||
75 | #define MBUSIOCGSUBADDR 8 | ||
76 | |||
77 | #endif | ||
diff --git a/arch/m68k/include/asm/mman.h b/arch/m68k/include/asm/mman.h deleted file mode 100644 index 8eebf89f5ab1..000000000000 --- a/arch/m68k/include/asm/mman.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-generic/mman.h> | ||
diff --git a/arch/m68k/include/asm/mutex.h b/arch/m68k/include/asm/mutex.h deleted file mode 100644 index 458c1f7fbc18..000000000000 --- a/arch/m68k/include/asm/mutex.h +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | /* | ||
2 | * Pull in the generic implementation for the mutex fastpath. | ||
3 | * | ||
4 | * TODO: implement optimized primitives instead, or leave the generic | ||
5 | * implementation in place, or pick the atomic_xchg() based generic | ||
6 | * implementation. (see asm-generic/mutex-xchg.h for details) | ||
7 | */ | ||
8 | |||
9 | #include <asm-generic/mutex-dec.h> | ||
diff --git a/arch/m68k/include/asm/percpu.h b/arch/m68k/include/asm/percpu.h deleted file mode 100644 index 0859d048faf5..000000000000 --- a/arch/m68k/include/asm/percpu.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef __ASM_M68K_PERCPU_H | ||
2 | #define __ASM_M68K_PERCPU_H | ||
3 | |||
4 | #include <asm-generic/percpu.h> | ||
5 | |||
6 | #endif /* __ASM_M68K_PERCPU_H */ | ||
diff --git a/arch/m68k/include/asm/resource.h b/arch/m68k/include/asm/resource.h deleted file mode 100644 index e7d35019f337..000000000000 --- a/arch/m68k/include/asm/resource.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef _M68K_RESOURCE_H | ||
2 | #define _M68K_RESOURCE_H | ||
3 | |||
4 | #include <asm-generic/resource.h> | ||
5 | |||
6 | #endif /* _M68K_RESOURCE_H */ | ||
diff --git a/arch/m68k/include/asm/sbus.h b/arch/m68k/include/asm/sbus.h deleted file mode 100644 index bfe3ba147f2e..000000000000 --- a/arch/m68k/include/asm/sbus.h +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
1 | /* | ||
2 | * some sbus structures and macros to make usage of sbus drivers possible | ||
3 | */ | ||
4 | |||
5 | #ifndef __M68K_SBUS_H | ||
6 | #define __M68K_SBUS_H | ||
7 | |||
8 | struct sbus_dev { | ||
9 | struct { | ||
10 | unsigned int which_io; | ||
11 | unsigned int phys_addr; | ||
12 | } reg_addrs[1]; | ||
13 | }; | ||
14 | |||
15 | /* sbus IO functions stolen from include/asm-sparc/io.h for the serial driver */ | ||
16 | /* No SBUS on the Sun3, kludge -- sam */ | ||
17 | |||
18 | static inline void _sbus_writeb(unsigned char val, unsigned long addr) | ||
19 | { | ||
20 | *(volatile unsigned char *)addr = val; | ||
21 | } | ||
22 | |||
23 | static inline unsigned char _sbus_readb(unsigned long addr) | ||
24 | { | ||
25 | return *(volatile unsigned char *)addr; | ||
26 | } | ||
27 | |||
28 | static inline void _sbus_writel(unsigned long val, unsigned long addr) | ||
29 | { | ||
30 | *(volatile unsigned long *)addr = val; | ||
31 | |||
32 | } | ||
33 | |||
34 | extern inline unsigned long _sbus_readl(unsigned long addr) | ||
35 | { | ||
36 | return *(volatile unsigned long *)addr; | ||
37 | } | ||
38 | |||
39 | |||
40 | #define sbus_readb(a) _sbus_readb((unsigned long)a) | ||
41 | #define sbus_writeb(v, a) _sbus_writeb(v, (unsigned long)a) | ||
42 | #define sbus_readl(a) _sbus_readl((unsigned long)a) | ||
43 | #define sbus_writel(v, a) _sbus_writel(v, (unsigned long)a) | ||
44 | |||
45 | #endif | ||
diff --git a/arch/m68k/include/asm/scatterlist.h b/arch/m68k/include/asm/scatterlist.h deleted file mode 100644 index 312505452a1e..000000000000 --- a/arch/m68k/include/asm/scatterlist.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef _M68K_SCATTERLIST_H | ||
2 | #define _M68K_SCATTERLIST_H | ||
3 | |||
4 | #include <asm-generic/scatterlist.h> | ||
5 | |||
6 | #endif /* !(_M68K_SCATTERLIST_H) */ | ||
diff --git a/arch/m68k/include/asm/sections.h b/arch/m68k/include/asm/sections.h deleted file mode 100644 index 5277e52715ec..000000000000 --- a/arch/m68k/include/asm/sections.h +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | #ifndef _ASM_M68K_SECTIONS_H | ||
2 | #define _ASM_M68K_SECTIONS_H | ||
3 | |||
4 | #include <asm-generic/sections.h> | ||
5 | |||
6 | extern char _sbss[], _ebss[]; | ||
7 | |||
8 | #endif /* _ASM_M68K_SECTIONS_H */ | ||
diff --git a/arch/m68k/include/asm/shm.h b/arch/m68k/include/asm/shm.h deleted file mode 100644 index fa56ec84a126..000000000000 --- a/arch/m68k/include/asm/shm.h +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | #ifndef _M68K_SHM_H | ||
2 | #define _M68K_SHM_H | ||
3 | |||
4 | |||
5 | /* format of page table entries that correspond to shared memory pages | ||
6 | currently out in swap space (see also mm/swap.c): | ||
7 | bits 0-1 (PAGE_PRESENT) is = 0 | ||
8 | bits 8..2 (SWP_TYPE) are = SHM_SWP_TYPE | ||
9 | bits 31..9 are used like this: | ||
10 | bits 15..9 (SHM_ID) the id of the shared memory segment | ||
11 | bits 30..16 (SHM_IDX) the index of the page within the shared memory segment | ||
12 | (actually only bits 25..16 get used since SHMMAX is so low) | ||
13 | bit 31 (SHM_READ_ONLY) flag whether the page belongs to a read-only attach | ||
14 | */ | ||
15 | /* on the m68k both bits 0 and 1 must be zero */ | ||
16 | /* format on the sun3 is similar, but bits 30, 31 are set to zero and all | ||
17 | others are reduced by 2. --m */ | ||
18 | |||
19 | #ifndef CONFIG_SUN3 | ||
20 | #define SHM_ID_SHIFT 9 | ||
21 | #else | ||
22 | #define SHM_ID_SHIFT 7 | ||
23 | #endif | ||
24 | #define _SHM_ID_BITS 7 | ||
25 | #define SHM_ID_MASK ((1<<_SHM_ID_BITS)-1) | ||
26 | |||
27 | #define SHM_IDX_SHIFT (SHM_ID_SHIFT+_SHM_ID_BITS) | ||
28 | #define _SHM_IDX_BITS 15 | ||
29 | #define SHM_IDX_MASK ((1<<_SHM_IDX_BITS)-1) | ||
30 | |||
31 | #endif /* _M68K_SHM_H */ | ||
diff --git a/arch/m68k/include/asm/siginfo.h b/arch/m68k/include/asm/siginfo.h deleted file mode 100644 index 851d3d784b53..000000000000 --- a/arch/m68k/include/asm/siginfo.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef _M68K_SIGINFO_H | ||
2 | #define _M68K_SIGINFO_H | ||
3 | |||
4 | #include <asm-generic/siginfo.h> | ||
5 | |||
6 | #endif | ||
diff --git a/arch/m68k/include/asm/statfs.h b/arch/m68k/include/asm/statfs.h deleted file mode 100644 index 08d93f14e061..000000000000 --- a/arch/m68k/include/asm/statfs.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef _M68K_STATFS_H | ||
2 | #define _M68K_STATFS_H | ||
3 | |||
4 | #include <asm-generic/statfs.h> | ||
5 | |||
6 | #endif /* _M68K_STATFS_H */ | ||
diff --git a/arch/m68k/include/asm/topology.h b/arch/m68k/include/asm/topology.h deleted file mode 100644 index ca173e9f26ff..000000000000 --- a/arch/m68k/include/asm/topology.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef _ASM_M68K_TOPOLOGY_H | ||
2 | #define _ASM_M68K_TOPOLOGY_H | ||
3 | |||
4 | #include <asm-generic/topology.h> | ||
5 | |||
6 | #endif /* _ASM_M68K_TOPOLOGY_H */ | ||
diff --git a/arch/m68k/include/asm/types.h b/arch/m68k/include/asm/types.h deleted file mode 100644 index 89705adcbd52..000000000000 --- a/arch/m68k/include/asm/types.h +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | #ifndef _M68K_TYPES_H | ||
2 | #define _M68K_TYPES_H | ||
3 | |||
4 | /* | ||
5 | * This file is never included by application software unless | ||
6 | * explicitly requested (e.g., via linux/types.h) in which case the | ||
7 | * application is Linux specific so (user-) name space pollution is | ||
8 | * not a major issue. However, for interoperability, libraries still | ||
9 | * need to be careful to avoid a name clashes. | ||
10 | */ | ||
11 | #include <asm-generic/int-ll64.h> | ||
12 | |||
13 | /* | ||
14 | * These aren't exported outside the kernel to avoid name space clashes | ||
15 | */ | ||
16 | #ifdef __KERNEL__ | ||
17 | |||
18 | #define BITS_PER_LONG 32 | ||
19 | |||
20 | #endif /* __KERNEL__ */ | ||
21 | |||
22 | #endif /* _M68K_TYPES_H */ | ||
diff --git a/arch/m68k/include/asm/unaligned.h b/arch/m68k/include/asm/unaligned.h index f4043ae63db1..2b3ca0bf7a0d 100644 --- a/arch/m68k/include/asm/unaligned.h +++ b/arch/m68k/include/asm/unaligned.h | |||
@@ -2,7 +2,7 @@ | |||
2 | #define _ASM_M68K_UNALIGNED_H | 2 | #define _ASM_M68K_UNALIGNED_H |
3 | 3 | ||
4 | 4 | ||
5 | #if defined(CONFIG_COLDFIRE) || defined(CONFIG_M68000) | 5 | #ifdef CONFIG_CPU_HAS_NO_UNALIGNED |
6 | #include <linux/unaligned/be_struct.h> | 6 | #include <linux/unaligned/be_struct.h> |
7 | #include <linux/unaligned/le_byteshift.h> | 7 | #include <linux/unaligned/le_byteshift.h> |
8 | #include <linux/unaligned/generic.h> | 8 | #include <linux/unaligned/generic.h> |
@@ -12,7 +12,7 @@ | |||
12 | 12 | ||
13 | #else | 13 | #else |
14 | /* | 14 | /* |
15 | * The m68k can do unaligned accesses itself. | 15 | * The m68k can do unaligned accesses itself. |
16 | */ | 16 | */ |
17 | #include <linux/unaligned/access_ok.h> | 17 | #include <linux/unaligned/access_ok.h> |
18 | #include <linux/unaligned/generic.h> | 18 | #include <linux/unaligned/generic.h> |
diff --git a/arch/m68k/include/asm/xor.h b/arch/m68k/include/asm/xor.h deleted file mode 100644 index c82eb12a5b18..000000000000 --- a/arch/m68k/include/asm/xor.h +++ /dev/null | |||
@@ -1 +0,0 @@ | |||
1 | #include <asm-generic/xor.h> | ||
diff --git a/arch/m68k/kernel/setup_no.c b/arch/m68k/kernel/setup_no.c index 7dc186b7a85f..71fb29938dba 100644 --- a/arch/m68k/kernel/setup_no.c +++ b/arch/m68k/kernel/setup_no.c | |||
@@ -218,13 +218,10 @@ void __init setup_arch(char **cmdline_p) | |||
218 | printk(KERN_INFO "Motorola M5235EVB support (C)2005 Syn-tech Systems, Inc. (Jate Sujjavanich)\n"); | 218 | printk(KERN_INFO "Motorola M5235EVB support (C)2005 Syn-tech Systems, Inc. (Jate Sujjavanich)\n"); |
219 | #endif | 219 | #endif |
220 | 220 | ||
221 | pr_debug("KERNEL -> TEXT=0x%06x-0x%06x DATA=0x%06x-0x%06x " | 221 | pr_debug("KERNEL -> TEXT=0x%p-0x%p DATA=0x%p-0x%p BSS=0x%p-0x%p\n", |
222 | "BSS=0x%06x-0x%06x\n", (int) &_stext, (int) &_etext, | 222 | _stext, _etext, _sdata, _edata, __bss_start, __bss_stop); |
223 | (int) &_sdata, (int) &_edata, | 223 | pr_debug("MEMORY -> ROMFS=0x%p-0x%06lx MEM=0x%06lx-0x%06lx\n ", |
224 | (int) &_sbss, (int) &_ebss); | 224 | __bss_stop, memory_start, memory_start, memory_end); |
225 | pr_debug("MEMORY -> ROMFS=0x%06x-0x%06x MEM=0x%06x-0x%06x\n ", | ||
226 | (int) &_ebss, (int) memory_start, | ||
227 | (int) memory_start, (int) memory_end); | ||
228 | 225 | ||
229 | /* Keep a copy of command line */ | 226 | /* Keep a copy of command line */ |
230 | *cmdline_p = &command_line[0]; | 227 | *cmdline_p = &command_line[0]; |
diff --git a/arch/m68k/kernel/sys_m68k.c b/arch/m68k/kernel/sys_m68k.c index 8623f8dc16f8..9a5932ec3689 100644 --- a/arch/m68k/kernel/sys_m68k.c +++ b/arch/m68k/kernel/sys_m68k.c | |||
@@ -479,9 +479,13 @@ sys_atomic_cmpxchg_32(unsigned long newval, int oldval, int d3, int d4, int d5, | |||
479 | goto bad_access; | 479 | goto bad_access; |
480 | } | 480 | } |
481 | 481 | ||
482 | mem_value = *mem; | 482 | /* |
483 | * No need to check for EFAULT; we know that the page is | ||
484 | * present and writable. | ||
485 | */ | ||
486 | __get_user(mem_value, mem); | ||
483 | if (mem_value == oldval) | 487 | if (mem_value == oldval) |
484 | *mem = newval; | 488 | __put_user(newval, mem); |
485 | 489 | ||
486 | pte_unmap_unlock(pte, ptl); | 490 | pte_unmap_unlock(pte, ptl); |
487 | up_read(&mm->mmap_sem); | 491 | up_read(&mm->mmap_sem); |
diff --git a/arch/m68k/kernel/vmlinux-nommu.lds b/arch/m68k/kernel/vmlinux-nommu.lds index 40e02d9c38b4..06a763f49fd3 100644 --- a/arch/m68k/kernel/vmlinux-nommu.lds +++ b/arch/m68k/kernel/vmlinux-nommu.lds | |||
@@ -78,9 +78,7 @@ SECTIONS { | |||
78 | __init_end = .; | 78 | __init_end = .; |
79 | } | 79 | } |
80 | 80 | ||
81 | _sbss = .; | ||
82 | BSS_SECTION(0, 0, 0) | 81 | BSS_SECTION(0, 0, 0) |
83 | _ebss = .; | ||
84 | 82 | ||
85 | _end = .; | 83 | _end = .; |
86 | 84 | ||
diff --git a/arch/m68k/kernel/vmlinux-std.lds b/arch/m68k/kernel/vmlinux-std.lds index 63407c836826..d0993594f558 100644 --- a/arch/m68k/kernel/vmlinux-std.lds +++ b/arch/m68k/kernel/vmlinux-std.lds | |||
@@ -31,9 +31,7 @@ SECTIONS | |||
31 | 31 | ||
32 | RW_DATA_SECTION(16, PAGE_SIZE, THREAD_SIZE) | 32 | RW_DATA_SECTION(16, PAGE_SIZE, THREAD_SIZE) |
33 | 33 | ||
34 | _sbss = .; | ||
35 | BSS_SECTION(0, 0, 0) | 34 | BSS_SECTION(0, 0, 0) |
36 | _ebss = .; | ||
37 | 35 | ||
38 | _edata = .; /* End of data section */ | 36 | _edata = .; /* End of data section */ |
39 | 37 | ||
diff --git a/arch/m68k/kernel/vmlinux-sun3.lds b/arch/m68k/kernel/vmlinux-sun3.lds index ad0f46d64c0b..8080469ee6c1 100644 --- a/arch/m68k/kernel/vmlinux-sun3.lds +++ b/arch/m68k/kernel/vmlinux-sun3.lds | |||
@@ -44,9 +44,7 @@ __init_begin = .; | |||
44 | . = ALIGN(PAGE_SIZE); | 44 | . = ALIGN(PAGE_SIZE); |
45 | __init_end = .; | 45 | __init_end = .; |
46 | 46 | ||
47 | _sbss = .; | ||
48 | BSS_SECTION(0, 0, 0) | 47 | BSS_SECTION(0, 0, 0) |
49 | _ebss = .; | ||
50 | 48 | ||
51 | _end = . ; | 49 | _end = . ; |
52 | 50 | ||
diff --git a/arch/m68k/lib/muldi3.c b/arch/m68k/lib/muldi3.c index 79e928a525d0..ee5f0b1b5c5d 100644 --- a/arch/m68k/lib/muldi3.c +++ b/arch/m68k/lib/muldi3.c | |||
@@ -19,7 +19,7 @@ along with GNU CC; see the file COPYING. If not, write to | |||
19 | the Free Software Foundation, 59 Temple Place - Suite 330, | 19 | the Free Software Foundation, 59 Temple Place - Suite 330, |
20 | Boston, MA 02111-1307, USA. */ | 20 | Boston, MA 02111-1307, USA. */ |
21 | 21 | ||
22 | #if defined(CONFIG_M68000) || defined(CONFIG_COLDFIRE) | 22 | #ifdef CONFIG_CPU_HAS_NO_MULDIV64 |
23 | 23 | ||
24 | #define SI_TYPE_SIZE 32 | 24 | #define SI_TYPE_SIZE 32 |
25 | #define __BITS4 (SI_TYPE_SIZE / 4) | 25 | #define __BITS4 (SI_TYPE_SIZE / 4) |
diff --git a/arch/m68k/mm/init_mm.c b/arch/m68k/mm/init_mm.c index f77f258dce3a..282f9de68966 100644 --- a/arch/m68k/mm/init_mm.c +++ b/arch/m68k/mm/init_mm.c | |||
@@ -104,7 +104,7 @@ void __init print_memmap(void) | |||
104 | MLK_ROUNDUP(__init_begin, __init_end), | 104 | MLK_ROUNDUP(__init_begin, __init_end), |
105 | MLK_ROUNDUP(_stext, _etext), | 105 | MLK_ROUNDUP(_stext, _etext), |
106 | MLK_ROUNDUP(_sdata, _edata), | 106 | MLK_ROUNDUP(_sdata, _edata), |
107 | MLK_ROUNDUP(_sbss, _ebss)); | 107 | MLK_ROUNDUP(__bss_start, __bss_stop)); |
108 | } | 108 | } |
109 | 109 | ||
110 | void __init mem_init(void) | 110 | void __init mem_init(void) |
diff --git a/arch/m68k/mm/init_no.c b/arch/m68k/mm/init_no.c index 345ec0d83e3d..688e3664aea0 100644 --- a/arch/m68k/mm/init_no.c +++ b/arch/m68k/mm/init_no.c | |||
@@ -91,7 +91,7 @@ void __init mem_init(void) | |||
91 | totalram_pages = free_all_bootmem(); | 91 | totalram_pages = free_all_bootmem(); |
92 | 92 | ||
93 | codek = (_etext - _stext) >> 10; | 93 | codek = (_etext - _stext) >> 10; |
94 | datak = (_ebss - _sdata) >> 10; | 94 | datak = (__bss_stop - _sdata) >> 10; |
95 | initk = (__init_begin - __init_end) >> 10; | 95 | initk = (__init_begin - __init_end) >> 10; |
96 | 96 | ||
97 | tmp = nr_free_pages() << PAGE_SHIFT; | 97 | tmp = nr_free_pages() << PAGE_SHIFT; |
diff --git a/arch/m68k/platform/68328/head-de2.S b/arch/m68k/platform/68328/head-de2.S index f632fdcb93e9..537d3245b539 100644 --- a/arch/m68k/platform/68328/head-de2.S +++ b/arch/m68k/platform/68328/head-de2.S | |||
@@ -60,8 +60,8 @@ _start: | |||
60 | * Move ROM filesystem above bss :-) | 60 | * Move ROM filesystem above bss :-) |
61 | */ | 61 | */ |
62 | 62 | ||
63 | moveal #_sbss, %a0 /* romfs at the start of bss */ | 63 | moveal #__bss_start, %a0 /* romfs at the start of bss */ |
64 | moveal #_ebss, %a1 /* Set up destination */ | 64 | moveal #__bss_stop, %a1 /* Set up destination */ |
65 | movel %a0, %a2 /* Copy of bss start */ | 65 | movel %a0, %a2 /* Copy of bss start */ |
66 | 66 | ||
67 | movel 8(%a0), %d1 /* Get size of ROMFS */ | 67 | movel 8(%a0), %d1 /* Get size of ROMFS */ |
@@ -84,8 +84,8 @@ _start: | |||
84 | * Initialize BSS segment to 0 | 84 | * Initialize BSS segment to 0 |
85 | */ | 85 | */ |
86 | 86 | ||
87 | lea _sbss, %a0 | 87 | lea __bss_start, %a0 |
88 | lea _ebss, %a1 | 88 | lea __bss_stop, %a1 |
89 | 89 | ||
90 | /* Copy 0 to %a0 until %a0 == %a1 */ | 90 | /* Copy 0 to %a0 until %a0 == %a1 */ |
91 | 2: cmpal %a0, %a1 | 91 | 2: cmpal %a0, %a1 |
diff --git a/arch/m68k/platform/68328/head-pilot.S b/arch/m68k/platform/68328/head-pilot.S index 2ebfd6420818..45a9dad29e3d 100644 --- a/arch/m68k/platform/68328/head-pilot.S +++ b/arch/m68k/platform/68328/head-pilot.S | |||
@@ -110,7 +110,7 @@ L0: | |||
110 | movel #CONFIG_VECTORBASE, %d7 | 110 | movel #CONFIG_VECTORBASE, %d7 |
111 | addl #16, %d7 | 111 | addl #16, %d7 |
112 | moveal %d7, %a0 | 112 | moveal %d7, %a0 |
113 | moveal #_ebss, %a1 | 113 | moveal #__bss_stop, %a1 |
114 | lea %a1@(512), %a2 | 114 | lea %a1@(512), %a2 |
115 | 115 | ||
116 | DBG_PUTC('C') | 116 | DBG_PUTC('C') |
@@ -138,8 +138,8 @@ LD1: | |||
138 | 138 | ||
139 | DBG_PUTC('E') | 139 | DBG_PUTC('E') |
140 | 140 | ||
141 | moveal #_sbss, %a0 | 141 | moveal #__bss_start, %a0 |
142 | moveal #_ebss, %a1 | 142 | moveal #__bss_stop, %a1 |
143 | 143 | ||
144 | /* Copy 0 to %a0 until %a0 == %a1 */ | 144 | /* Copy 0 to %a0 until %a0 == %a1 */ |
145 | L1: | 145 | L1: |
@@ -150,7 +150,7 @@ L1: | |||
150 | DBG_PUTC('F') | 150 | DBG_PUTC('F') |
151 | 151 | ||
152 | /* Copy command line from end of bss to command line */ | 152 | /* Copy command line from end of bss to command line */ |
153 | moveal #_ebss, %a0 | 153 | moveal #__bss_stop, %a0 |
154 | moveal #command_line, %a1 | 154 | moveal #command_line, %a1 |
155 | lea %a1@(512), %a2 | 155 | lea %a1@(512), %a2 |
156 | 156 | ||
@@ -165,7 +165,7 @@ L3: | |||
165 | 165 | ||
166 | movel #_sdata, %d0 | 166 | movel #_sdata, %d0 |
167 | movel %d0, _rambase | 167 | movel %d0, _rambase |
168 | movel #_ebss, %d0 | 168 | movel #__bss_stop, %d0 |
169 | movel %d0, _ramstart | 169 | movel %d0, _ramstart |
170 | 170 | ||
171 | movel %a4, %d0 | 171 | movel %a4, %d0 |
diff --git a/arch/m68k/platform/68328/head-ram.S b/arch/m68k/platform/68328/head-ram.S index 7f1aeeacb219..5189ef926098 100644 --- a/arch/m68k/platform/68328/head-ram.S +++ b/arch/m68k/platform/68328/head-ram.S | |||
@@ -76,8 +76,8 @@ pclp3: | |||
76 | beq pclp3 | 76 | beq pclp3 |
77 | #endif /* DEBUG */ | 77 | #endif /* DEBUG */ |
78 | moveal #0x007ffff0, %ssp | 78 | moveal #0x007ffff0, %ssp |
79 | moveal #_sbss, %a0 | 79 | moveal #__bss_start, %a0 |
80 | moveal #_ebss, %a1 | 80 | moveal #__bss_stop, %a1 |
81 | 81 | ||
82 | /* Copy 0 to %a0 until %a0 >= %a1 */ | 82 | /* Copy 0 to %a0 until %a0 >= %a1 */ |
83 | L1: | 83 | L1: |
diff --git a/arch/m68k/platform/68328/head-rom.S b/arch/m68k/platform/68328/head-rom.S index a5ff96d0295f..3dff98ba2e97 100644 --- a/arch/m68k/platform/68328/head-rom.S +++ b/arch/m68k/platform/68328/head-rom.S | |||
@@ -59,8 +59,8 @@ _stext: movew #0x2700,%sr | |||
59 | cmpal %a1, %a2 | 59 | cmpal %a1, %a2 |
60 | bhi 1b | 60 | bhi 1b |
61 | 61 | ||
62 | moveal #_sbss, %a0 | 62 | moveal #__bss_start, %a0 |
63 | moveal #_ebss, %a1 | 63 | moveal #__bss_stop, %a1 |
64 | /* Copy 0 to %a0 until %a0 == %a1 */ | 64 | /* Copy 0 to %a0 until %a0 == %a1 */ |
65 | 65 | ||
66 | 1: | 66 | 1: |
@@ -70,7 +70,7 @@ _stext: movew #0x2700,%sr | |||
70 | 70 | ||
71 | movel #_sdata, %d0 | 71 | movel #_sdata, %d0 |
72 | movel %d0, _rambase | 72 | movel %d0, _rambase |
73 | movel #_ebss, %d0 | 73 | movel #__bss_stop, %d0 |
74 | movel %d0, _ramstart | 74 | movel %d0, _ramstart |
75 | movel #RAMEND-CONFIG_MEMORY_RESERVE*0x100000, %d0 | 75 | movel #RAMEND-CONFIG_MEMORY_RESERVE*0x100000, %d0 |
76 | movel %d0, _ramend | 76 | movel %d0, _ramend |
diff --git a/arch/m68k/platform/68360/head-ram.S b/arch/m68k/platform/68360/head-ram.S index 8eb94fb6b971..acd213170d80 100644 --- a/arch/m68k/platform/68360/head-ram.S +++ b/arch/m68k/platform/68360/head-ram.S | |||
@@ -219,8 +219,8 @@ LD1: | |||
219 | cmp.l #_edata, %a1 | 219 | cmp.l #_edata, %a1 |
220 | blt LD1 | 220 | blt LD1 |
221 | 221 | ||
222 | moveal #_sbss, %a0 | 222 | moveal #__bss_start, %a0 |
223 | moveal #_ebss, %a1 | 223 | moveal #__bss_stop, %a1 |
224 | 224 | ||
225 | /* Copy 0 to %a0 until %a0 == %a1 */ | 225 | /* Copy 0 to %a0 until %a0 == %a1 */ |
226 | L1: | 226 | L1: |
@@ -234,7 +234,7 @@ load_quicc: | |||
234 | store_ram_size: | 234 | store_ram_size: |
235 | /* Set ram size information */ | 235 | /* Set ram size information */ |
236 | move.l #_sdata, _rambase | 236 | move.l #_sdata, _rambase |
237 | move.l #_ebss, _ramstart | 237 | move.l #__bss_stop, _ramstart |
238 | move.l #RAMEND, %d0 | 238 | move.l #RAMEND, %d0 |
239 | sub.l #0x1000, %d0 /* Reserve 4K for stack space.*/ | 239 | sub.l #0x1000, %d0 /* Reserve 4K for stack space.*/ |
240 | move.l %d0, _ramend /* Different from RAMEND.*/ | 240 | move.l %d0, _ramend /* Different from RAMEND.*/ |
diff --git a/arch/m68k/platform/68360/head-rom.S b/arch/m68k/platform/68360/head-rom.S index 97510e55b802..dfc756d99886 100644 --- a/arch/m68k/platform/68360/head-rom.S +++ b/arch/m68k/platform/68360/head-rom.S | |||
@@ -13,7 +13,7 @@ | |||
13 | */ | 13 | */ |
14 | 14 | ||
15 | .global _stext | 15 | .global _stext |
16 | .global _sbss | 16 | .global __bss_start |
17 | .global _start | 17 | .global _start |
18 | 18 | ||
19 | .global _rambase | 19 | .global _rambase |
@@ -229,8 +229,8 @@ LD1: | |||
229 | cmp.l #_edata, %a1 | 229 | cmp.l #_edata, %a1 |
230 | blt LD1 | 230 | blt LD1 |
231 | 231 | ||
232 | moveal #_sbss, %a0 | 232 | moveal #__bss_start, %a0 |
233 | moveal #_ebss, %a1 | 233 | moveal #__bss_stop, %a1 |
234 | 234 | ||
235 | /* Copy 0 to %a0 until %a0 == %a1 */ | 235 | /* Copy 0 to %a0 until %a0 == %a1 */ |
236 | L1: | 236 | L1: |
@@ -244,7 +244,7 @@ load_quicc: | |||
244 | store_ram_size: | 244 | store_ram_size: |
245 | /* Set ram size information */ | 245 | /* Set ram size information */ |
246 | move.l #_sdata, _rambase | 246 | move.l #_sdata, _rambase |
247 | move.l #_ebss, _ramstart | 247 | move.l #__bss_stop, _ramstart |
248 | move.l #RAMEND, %d0 | 248 | move.l #RAMEND, %d0 |
249 | sub.l #0x1000, %d0 /* Reserve 4K for stack space.*/ | 249 | sub.l #0x1000, %d0 /* Reserve 4K for stack space.*/ |
250 | move.l %d0, _ramend /* Different from RAMEND.*/ | 250 | move.l %d0, _ramend /* Different from RAMEND.*/ |
diff --git a/arch/m68k/platform/coldfire/head.S b/arch/m68k/platform/coldfire/head.S index 4e0c9eb3bd1f..b88f5716f357 100644 --- a/arch/m68k/platform/coldfire/head.S +++ b/arch/m68k/platform/coldfire/head.S | |||
@@ -230,8 +230,8 @@ _vstart: | |||
230 | /* | 230 | /* |
231 | * Move ROM filesystem above bss :-) | 231 | * Move ROM filesystem above bss :-) |
232 | */ | 232 | */ |
233 | lea _sbss,%a0 /* get start of bss */ | 233 | lea __bss_start,%a0 /* get start of bss */ |
234 | lea _ebss,%a1 /* set up destination */ | 234 | lea __bss_stop,%a1 /* set up destination */ |
235 | movel %a0,%a2 /* copy of bss start */ | 235 | movel %a0,%a2 /* copy of bss start */ |
236 | 236 | ||
237 | movel 8(%a0),%d0 /* get size of ROMFS */ | 237 | movel 8(%a0),%d0 /* get size of ROMFS */ |
@@ -249,7 +249,7 @@ _copy_romfs: | |||
249 | bne _copy_romfs | 249 | bne _copy_romfs |
250 | 250 | ||
251 | #else /* CONFIG_ROMFS_FS */ | 251 | #else /* CONFIG_ROMFS_FS */ |
252 | lea _ebss,%a1 | 252 | lea __bss_stop,%a1 |
253 | movel %a1,_ramstart | 253 | movel %a1,_ramstart |
254 | #endif /* CONFIG_ROMFS_FS */ | 254 | #endif /* CONFIG_ROMFS_FS */ |
255 | 255 | ||
@@ -257,8 +257,8 @@ _copy_romfs: | |||
257 | /* | 257 | /* |
258 | * Zero out the bss region. | 258 | * Zero out the bss region. |
259 | */ | 259 | */ |
260 | lea _sbss,%a0 /* get start of bss */ | 260 | lea __bss_start,%a0 /* get start of bss */ |
261 | lea _ebss,%a1 /* get end of bss */ | 261 | lea __bss_stop,%a1 /* get end of bss */ |
262 | clrl %d0 /* set value */ | 262 | clrl %d0 /* set value */ |
263 | _clear_bss: | 263 | _clear_bss: |
264 | movel %d0,(%a0)+ /* clear each word */ | 264 | movel %d0,(%a0)+ /* clear each word */ |
diff --git a/arch/m68k/sun3/prom/init.c b/arch/m68k/sun3/prom/init.c index d8e6349336b4..eeba067d565f 100644 --- a/arch/m68k/sun3/prom/init.c +++ b/arch/m68k/sun3/prom/init.c | |||
@@ -22,57 +22,13 @@ int prom_root_node; | |||
22 | struct linux_nodeops *prom_nodeops; | 22 | struct linux_nodeops *prom_nodeops; |
23 | 23 | ||
24 | /* You must call prom_init() before you attempt to use any of the | 24 | /* You must call prom_init() before you attempt to use any of the |
25 | * routines in the prom library. It returns 0 on success, 1 on | 25 | * routines in the prom library. |
26 | * failure. It gets passed the pointer to the PROM vector. | 26 | * It gets passed the pointer to the PROM vector. |
27 | */ | 27 | */ |
28 | 28 | ||
29 | extern void prom_meminit(void); | ||
30 | extern void prom_ranges_init(void); | ||
31 | |||
32 | void __init prom_init(struct linux_romvec *rp) | 29 | void __init prom_init(struct linux_romvec *rp) |
33 | { | 30 | { |
34 | romvec = rp; | 31 | romvec = rp; |
35 | #ifndef CONFIG_SUN3 | ||
36 | switch(romvec->pv_romvers) { | ||
37 | case 0: | ||
38 | prom_vers = PROM_V0; | ||
39 | break; | ||
40 | case 2: | ||
41 | prom_vers = PROM_V2; | ||
42 | break; | ||
43 | case 3: | ||
44 | prom_vers = PROM_V3; | ||
45 | break; | ||
46 | case 4: | ||
47 | prom_vers = PROM_P1275; | ||
48 | prom_printf("PROMLIB: Sun IEEE Prom not supported yet\n"); | ||
49 | prom_halt(); | ||
50 | break; | ||
51 | default: | ||
52 | prom_printf("PROMLIB: Bad PROM version %d\n", | ||
53 | romvec->pv_romvers); | ||
54 | prom_halt(); | ||
55 | break; | ||
56 | }; | ||
57 | |||
58 | prom_rev = romvec->pv_plugin_revision; | ||
59 | prom_prev = romvec->pv_printrev; | ||
60 | prom_nodeops = romvec->pv_nodeops; | ||
61 | |||
62 | prom_root_node = prom_getsibling(0); | ||
63 | if((prom_root_node == 0) || (prom_root_node == -1)) | ||
64 | prom_halt(); | ||
65 | |||
66 | if((((unsigned long) prom_nodeops) == 0) || | ||
67 | (((unsigned long) prom_nodeops) == -1)) | ||
68 | prom_halt(); | ||
69 | |||
70 | prom_meminit(); | ||
71 | |||
72 | prom_ranges_init(); | ||
73 | #endif | ||
74 | // printk("PROMLIB: Sun Boot Prom Version %d Revision %d\n", | ||
75 | // romvec->pv_romvers, prom_rev); | ||
76 | 32 | ||
77 | /* Initialization successful. */ | 33 | /* Initialization successful. */ |
78 | return; | 34 | return; |
diff --git a/arch/microblaze/include/asm/sections.h b/arch/microblaze/include/asm/sections.h index 4487e150b455..c07ed5d2a820 100644 --- a/arch/microblaze/include/asm/sections.h +++ b/arch/microblaze/include/asm/sections.h | |||
@@ -18,10 +18,6 @@ extern char _ssbss[], _esbss[]; | |||
18 | extern unsigned long __ivt_start[], __ivt_end[]; | 18 | extern unsigned long __ivt_start[], __ivt_end[]; |
19 | extern char _etext[], _stext[]; | 19 | extern char _etext[], _stext[]; |
20 | 20 | ||
21 | # ifdef CONFIG_MTD_UCLINUX | ||
22 | extern char *_ebss; | ||
23 | # endif | ||
24 | |||
25 | extern u32 _fdt_start[], _fdt_end[]; | 21 | extern u32 _fdt_start[], _fdt_end[]; |
26 | 22 | ||
27 | # endif /* !__ASSEMBLY__ */ | 23 | # endif /* !__ASSEMBLY__ */ |
diff --git a/arch/microblaze/kernel/microblaze_ksyms.c b/arch/microblaze/kernel/microblaze_ksyms.c index bb4907c828dc..2b25bcf05c00 100644 --- a/arch/microblaze/kernel/microblaze_ksyms.c +++ b/arch/microblaze/kernel/microblaze_ksyms.c | |||
@@ -21,9 +21,6 @@ | |||
21 | #include <linux/ftrace.h> | 21 | #include <linux/ftrace.h> |
22 | #include <linux/uaccess.h> | 22 | #include <linux/uaccess.h> |
23 | 23 | ||
24 | extern char *_ebss; | ||
25 | EXPORT_SYMBOL_GPL(_ebss); | ||
26 | |||
27 | #ifdef CONFIG_FUNCTION_TRACER | 24 | #ifdef CONFIG_FUNCTION_TRACER |
28 | extern void _mcount(void); | 25 | extern void _mcount(void); |
29 | EXPORT_SYMBOL(_mcount); | 26 | EXPORT_SYMBOL(_mcount); |
diff --git a/arch/microblaze/kernel/setup.c b/arch/microblaze/kernel/setup.c index 16d8dfd9094b..4da971d4392f 100644 --- a/arch/microblaze/kernel/setup.c +++ b/arch/microblaze/kernel/setup.c | |||
@@ -121,7 +121,7 @@ void __init machine_early_init(const char *cmdline, unsigned int ram, | |||
121 | 121 | ||
122 | /* Move ROMFS out of BSS before clearing it */ | 122 | /* Move ROMFS out of BSS before clearing it */ |
123 | if (romfs_size > 0) { | 123 | if (romfs_size > 0) { |
124 | memmove(&_ebss, (int *)romfs_base, romfs_size); | 124 | memmove(&__bss_stop, (int *)romfs_base, romfs_size); |
125 | klimit += romfs_size; | 125 | klimit += romfs_size; |
126 | } | 126 | } |
127 | #endif | 127 | #endif |
@@ -165,7 +165,7 @@ void __init machine_early_init(const char *cmdline, unsigned int ram, | |||
165 | BUG_ON(romfs_size < 0); /* What else can we do? */ | 165 | BUG_ON(romfs_size < 0); /* What else can we do? */ |
166 | 166 | ||
167 | printk("Moved 0x%08x bytes from 0x%08x to 0x%08x\n", | 167 | printk("Moved 0x%08x bytes from 0x%08x to 0x%08x\n", |
168 | romfs_size, romfs_base, (unsigned)&_ebss); | 168 | romfs_size, romfs_base, (unsigned)&__bss_stop); |
169 | 169 | ||
170 | printk("New klimit: 0x%08x\n", (unsigned)klimit); | 170 | printk("New klimit: 0x%08x\n", (unsigned)klimit); |
171 | #endif | 171 | #endif |
diff --git a/arch/microblaze/kernel/vmlinux.lds.S b/arch/microblaze/kernel/vmlinux.lds.S index 109e9d86ade4..936d01a689d7 100644 --- a/arch/microblaze/kernel/vmlinux.lds.S +++ b/arch/microblaze/kernel/vmlinux.lds.S | |||
@@ -131,7 +131,6 @@ SECTIONS { | |||
131 | *(COMMON) | 131 | *(COMMON) |
132 | . = ALIGN (4) ; | 132 | . = ALIGN (4) ; |
133 | __bss_stop = . ; | 133 | __bss_stop = . ; |
134 | _ebss = . ; | ||
135 | } | 134 | } |
136 | . = ALIGN(PAGE_SIZE); | 135 | . = ALIGN(PAGE_SIZE); |
137 | _end = .; | 136 | _end = .; |
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 331d574df99c..faf65286574e 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig | |||
@@ -89,6 +89,7 @@ config ATH79 | |||
89 | select CEVT_R4K | 89 | select CEVT_R4K |
90 | select CSRC_R4K | 90 | select CSRC_R4K |
91 | select DMA_NONCOHERENT | 91 | select DMA_NONCOHERENT |
92 | select HAVE_CLK | ||
92 | select IRQ_CPU | 93 | select IRQ_CPU |
93 | select MIPS_MACHINE | 94 | select MIPS_MACHINE |
94 | select SYS_HAS_CPU_MIPS32_R2 | 95 | select SYS_HAS_CPU_MIPS32_R2 |
diff --git a/arch/mips/alchemy/board-mtx1.c b/arch/mips/alchemy/board-mtx1.c index 99969484c475..a124c251c0c9 100644 --- a/arch/mips/alchemy/board-mtx1.c +++ b/arch/mips/alchemy/board-mtx1.c | |||
@@ -228,6 +228,8 @@ static int mtx1_pci_idsel(unsigned int devsel, int assert) | |||
228 | * adapter on the mtx-1 "singleboard" variant. It triggers a custom | 228 | * adapter on the mtx-1 "singleboard" variant. It triggers a custom |
229 | * logic chip connected to EXT_IO3 (GPIO1) to suppress IDSEL signals. | 229 | * logic chip connected to EXT_IO3 (GPIO1) to suppress IDSEL signals. |
230 | */ | 230 | */ |
231 | udelay(1); | ||
232 | |||
231 | if (assert && devsel != 0) | 233 | if (assert && devsel != 0) |
232 | /* Suppress signal to Cardbus */ | 234 | /* Suppress signal to Cardbus */ |
233 | alchemy_gpio_set_value(1, 0); /* set EXT_IO3 OFF */ | 235 | alchemy_gpio_set_value(1, 0); /* set EXT_IO3 OFF */ |
diff --git a/arch/mips/ath79/dev-usb.c b/arch/mips/ath79/dev-usb.c index 36e9570e7bc4..b2a2311ec85b 100644 --- a/arch/mips/ath79/dev-usb.c +++ b/arch/mips/ath79/dev-usb.c | |||
@@ -145,6 +145,8 @@ static void __init ar7240_usb_setup(void) | |||
145 | 145 | ||
146 | ath79_ohci_resources[0].start = AR7240_OHCI_BASE; | 146 | ath79_ohci_resources[0].start = AR7240_OHCI_BASE; |
147 | ath79_ohci_resources[0].end = AR7240_OHCI_BASE + AR7240_OHCI_SIZE - 1; | 147 | ath79_ohci_resources[0].end = AR7240_OHCI_BASE + AR7240_OHCI_SIZE - 1; |
148 | ath79_ohci_resources[1].start = ATH79_CPU_IRQ_USB; | ||
149 | ath79_ohci_resources[1].end = ATH79_CPU_IRQ_USB; | ||
148 | platform_device_register(&ath79_ohci_device); | 150 | platform_device_register(&ath79_ohci_device); |
149 | } | 151 | } |
150 | 152 | ||
diff --git a/arch/mips/ath79/gpio.c b/arch/mips/ath79/gpio.c index 29054f211832..48fe762d2526 100644 --- a/arch/mips/ath79/gpio.c +++ b/arch/mips/ath79/gpio.c | |||
@@ -188,8 +188,10 @@ void __init ath79_gpio_init(void) | |||
188 | 188 | ||
189 | if (soc_is_ar71xx()) | 189 | if (soc_is_ar71xx()) |
190 | ath79_gpio_count = AR71XX_GPIO_COUNT; | 190 | ath79_gpio_count = AR71XX_GPIO_COUNT; |
191 | else if (soc_is_ar724x()) | 191 | else if (soc_is_ar7240()) |
192 | ath79_gpio_count = AR724X_GPIO_COUNT; | 192 | ath79_gpio_count = AR7240_GPIO_COUNT; |
193 | else if (soc_is_ar7241() || soc_is_ar7242()) | ||
194 | ath79_gpio_count = AR7241_GPIO_COUNT; | ||
193 | else if (soc_is_ar913x()) | 195 | else if (soc_is_ar913x()) |
194 | ath79_gpio_count = AR913X_GPIO_COUNT; | 196 | ath79_gpio_count = AR913X_GPIO_COUNT; |
195 | else if (soc_is_ar933x()) | 197 | else if (soc_is_ar933x()) |
diff --git a/arch/mips/bcm63xx/dev-spi.c b/arch/mips/bcm63xx/dev-spi.c index e39f73048d4f..f1c9c3e2f678 100644 --- a/arch/mips/bcm63xx/dev-spi.c +++ b/arch/mips/bcm63xx/dev-spi.c | |||
@@ -106,11 +106,15 @@ int __init bcm63xx_spi_register(void) | |||
106 | if (BCMCPU_IS_6338() || BCMCPU_IS_6348()) { | 106 | if (BCMCPU_IS_6338() || BCMCPU_IS_6348()) { |
107 | spi_resources[0].end += BCM_6338_RSET_SPI_SIZE - 1; | 107 | spi_resources[0].end += BCM_6338_RSET_SPI_SIZE - 1; |
108 | spi_pdata.fifo_size = SPI_6338_MSG_DATA_SIZE; | 108 | spi_pdata.fifo_size = SPI_6338_MSG_DATA_SIZE; |
109 | spi_pdata.msg_type_shift = SPI_6338_MSG_TYPE_SHIFT; | ||
110 | spi_pdata.msg_ctl_width = SPI_6338_MSG_CTL_WIDTH; | ||
109 | } | 111 | } |
110 | 112 | ||
111 | if (BCMCPU_IS_6358() || BCMCPU_IS_6368()) { | 113 | if (BCMCPU_IS_6358() || BCMCPU_IS_6368()) { |
112 | spi_resources[0].end += BCM_6358_RSET_SPI_SIZE - 1; | 114 | spi_resources[0].end += BCM_6358_RSET_SPI_SIZE - 1; |
113 | spi_pdata.fifo_size = SPI_6358_MSG_DATA_SIZE; | 115 | spi_pdata.fifo_size = SPI_6358_MSG_DATA_SIZE; |
116 | spi_pdata.msg_type_shift = SPI_6358_MSG_TYPE_SHIFT; | ||
117 | spi_pdata.msg_ctl_width = SPI_6358_MSG_CTL_WIDTH; | ||
114 | } | 118 | } |
115 | 119 | ||
116 | bcm63xx_spi_regs_init(); | 120 | bcm63xx_spi_regs_init(); |
diff --git a/arch/mips/cavium-octeon/octeon-irq.c b/arch/mips/cavium-octeon/octeon-irq.c index 7fb1f222b8a5..274cd4fad30c 100644 --- a/arch/mips/cavium-octeon/octeon-irq.c +++ b/arch/mips/cavium-octeon/octeon-irq.c | |||
@@ -61,6 +61,12 @@ static void octeon_irq_set_ciu_mapping(int irq, int line, int bit, | |||
61 | octeon_irq_ciu_to_irq[line][bit] = irq; | 61 | octeon_irq_ciu_to_irq[line][bit] = irq; |
62 | } | 62 | } |
63 | 63 | ||
64 | static void octeon_irq_force_ciu_mapping(struct irq_domain *domain, | ||
65 | int irq, int line, int bit) | ||
66 | { | ||
67 | irq_domain_associate(domain, irq, line << 6 | bit); | ||
68 | } | ||
69 | |||
64 | static int octeon_coreid_for_cpu(int cpu) | 70 | static int octeon_coreid_for_cpu(int cpu) |
65 | { | 71 | { |
66 | #ifdef CONFIG_SMP | 72 | #ifdef CONFIG_SMP |
@@ -183,19 +189,9 @@ static void __init octeon_irq_init_core(void) | |||
183 | mutex_init(&cd->core_irq_mutex); | 189 | mutex_init(&cd->core_irq_mutex); |
184 | 190 | ||
185 | irq = OCTEON_IRQ_SW0 + i; | 191 | irq = OCTEON_IRQ_SW0 + i; |
186 | switch (irq) { | 192 | irq_set_chip_data(irq, cd); |
187 | case OCTEON_IRQ_TIMER: | 193 | irq_set_chip_and_handler(irq, &octeon_irq_chip_core, |
188 | case OCTEON_IRQ_SW0: | 194 | handle_percpu_irq); |
189 | case OCTEON_IRQ_SW1: | ||
190 | case OCTEON_IRQ_5: | ||
191 | case OCTEON_IRQ_PERF: | ||
192 | irq_set_chip_data(irq, cd); | ||
193 | irq_set_chip_and_handler(irq, &octeon_irq_chip_core, | ||
194 | handle_percpu_irq); | ||
195 | break; | ||
196 | default: | ||
197 | break; | ||
198 | } | ||
199 | } | 195 | } |
200 | } | 196 | } |
201 | 197 | ||
@@ -890,7 +886,6 @@ static int octeon_irq_gpio_xlat(struct irq_domain *d, | |||
890 | unsigned int type; | 886 | unsigned int type; |
891 | unsigned int pin; | 887 | unsigned int pin; |
892 | unsigned int trigger; | 888 | unsigned int trigger; |
893 | struct octeon_irq_gpio_domain_data *gpiod; | ||
894 | 889 | ||
895 | if (d->of_node != node) | 890 | if (d->of_node != node) |
896 | return -EINVAL; | 891 | return -EINVAL; |
@@ -925,8 +920,7 @@ static int octeon_irq_gpio_xlat(struct irq_domain *d, | |||
925 | break; | 920 | break; |
926 | } | 921 | } |
927 | *out_type = type; | 922 | *out_type = type; |
928 | gpiod = d->host_data; | 923 | *out_hwirq = pin; |
929 | *out_hwirq = gpiod->base_hwirq + pin; | ||
930 | 924 | ||
931 | return 0; | 925 | return 0; |
932 | } | 926 | } |
@@ -996,19 +990,21 @@ static int octeon_irq_ciu_map(struct irq_domain *d, | |||
996 | static int octeon_irq_gpio_map(struct irq_domain *d, | 990 | static int octeon_irq_gpio_map(struct irq_domain *d, |
997 | unsigned int virq, irq_hw_number_t hw) | 991 | unsigned int virq, irq_hw_number_t hw) |
998 | { | 992 | { |
999 | unsigned int line = hw >> 6; | 993 | struct octeon_irq_gpio_domain_data *gpiod = d->host_data; |
1000 | unsigned int bit = hw & 63; | 994 | unsigned int line, bit; |
1001 | 995 | ||
1002 | if (!octeon_irq_virq_in_range(virq)) | 996 | if (!octeon_irq_virq_in_range(virq)) |
1003 | return -EINVAL; | 997 | return -EINVAL; |
1004 | 998 | ||
999 | hw += gpiod->base_hwirq; | ||
1000 | line = hw >> 6; | ||
1001 | bit = hw & 63; | ||
1005 | if (line > 1 || octeon_irq_ciu_to_irq[line][bit] != 0) | 1002 | if (line > 1 || octeon_irq_ciu_to_irq[line][bit] != 0) |
1006 | return -EINVAL; | 1003 | return -EINVAL; |
1007 | 1004 | ||
1008 | octeon_irq_set_ciu_mapping(virq, line, bit, | 1005 | octeon_irq_set_ciu_mapping(virq, line, bit, |
1009 | octeon_irq_gpio_chip, | 1006 | octeon_irq_gpio_chip, |
1010 | octeon_irq_handle_gpio); | 1007 | octeon_irq_handle_gpio); |
1011 | |||
1012 | return 0; | 1008 | return 0; |
1013 | } | 1009 | } |
1014 | 1010 | ||
@@ -1149,6 +1145,7 @@ static void __init octeon_irq_init_ciu(void) | |||
1149 | struct irq_chip *chip_wd; | 1145 | struct irq_chip *chip_wd; |
1150 | struct device_node *gpio_node; | 1146 | struct device_node *gpio_node; |
1151 | struct device_node *ciu_node; | 1147 | struct device_node *ciu_node; |
1148 | struct irq_domain *ciu_domain = NULL; | ||
1152 | 1149 | ||
1153 | octeon_irq_init_ciu_percpu(); | 1150 | octeon_irq_init_ciu_percpu(); |
1154 | octeon_irq_setup_secondary = octeon_irq_setup_secondary_ciu; | 1151 | octeon_irq_setup_secondary = octeon_irq_setup_secondary_ciu; |
@@ -1177,31 +1174,6 @@ static void __init octeon_irq_init_ciu(void) | |||
1177 | /* Mips internal */ | 1174 | /* Mips internal */ |
1178 | octeon_irq_init_core(); | 1175 | octeon_irq_init_core(); |
1179 | 1176 | ||
1180 | /* CIU_0 */ | ||
1181 | for (i = 0; i < 16; i++) | ||
1182 | octeon_irq_set_ciu_mapping(i + OCTEON_IRQ_WORKQ0, 0, i + 0, chip, handle_level_irq); | ||
1183 | |||
1184 | octeon_irq_set_ciu_mapping(OCTEON_IRQ_MBOX0, 0, 32, chip_mbox, handle_percpu_irq); | ||
1185 | octeon_irq_set_ciu_mapping(OCTEON_IRQ_MBOX1, 0, 33, chip_mbox, handle_percpu_irq); | ||
1186 | |||
1187 | for (i = 0; i < 4; i++) | ||
1188 | octeon_irq_set_ciu_mapping(i + OCTEON_IRQ_PCI_INT0, 0, i + 36, chip, handle_level_irq); | ||
1189 | for (i = 0; i < 4; i++) | ||
1190 | octeon_irq_set_ciu_mapping(i + OCTEON_IRQ_PCI_MSI0, 0, i + 40, chip, handle_level_irq); | ||
1191 | |||
1192 | octeon_irq_set_ciu_mapping(OCTEON_IRQ_RML, 0, 46, chip, handle_level_irq); | ||
1193 | for (i = 0; i < 4; i++) | ||
1194 | octeon_irq_set_ciu_mapping(i + OCTEON_IRQ_TIMER0, 0, i + 52, chip, handle_edge_irq); | ||
1195 | |||
1196 | octeon_irq_set_ciu_mapping(OCTEON_IRQ_USB0, 0, 56, chip, handle_level_irq); | ||
1197 | octeon_irq_set_ciu_mapping(OCTEON_IRQ_BOOTDMA, 0, 63, chip, handle_level_irq); | ||
1198 | |||
1199 | /* CIU_1 */ | ||
1200 | for (i = 0; i < 16; i++) | ||
1201 | octeon_irq_set_ciu_mapping(i + OCTEON_IRQ_WDOG0, 1, i + 0, chip_wd, handle_level_irq); | ||
1202 | |||
1203 | octeon_irq_set_ciu_mapping(OCTEON_IRQ_USB1, 1, 17, chip, handle_level_irq); | ||
1204 | |||
1205 | gpio_node = of_find_compatible_node(NULL, NULL, "cavium,octeon-3860-gpio"); | 1177 | gpio_node = of_find_compatible_node(NULL, NULL, "cavium,octeon-3860-gpio"); |
1206 | if (gpio_node) { | 1178 | if (gpio_node) { |
1207 | struct octeon_irq_gpio_domain_data *gpiod; | 1179 | struct octeon_irq_gpio_domain_data *gpiod; |
@@ -1219,10 +1191,35 @@ static void __init octeon_irq_init_ciu(void) | |||
1219 | 1191 | ||
1220 | ciu_node = of_find_compatible_node(NULL, NULL, "cavium,octeon-3860-ciu"); | 1192 | ciu_node = of_find_compatible_node(NULL, NULL, "cavium,octeon-3860-ciu"); |
1221 | if (ciu_node) { | 1193 | if (ciu_node) { |
1222 | irq_domain_add_tree(ciu_node, &octeon_irq_domain_ciu_ops, NULL); | 1194 | ciu_domain = irq_domain_add_tree(ciu_node, &octeon_irq_domain_ciu_ops, NULL); |
1223 | of_node_put(ciu_node); | 1195 | of_node_put(ciu_node); |
1224 | } else | 1196 | } else |
1225 | pr_warn("Cannot find device node for cavium,octeon-3860-ciu.\n"); | 1197 | panic("Cannot find device node for cavium,octeon-3860-ciu."); |
1198 | |||
1199 | /* CIU_0 */ | ||
1200 | for (i = 0; i < 16; i++) | ||
1201 | octeon_irq_force_ciu_mapping(ciu_domain, i + OCTEON_IRQ_WORKQ0, 0, i + 0); | ||
1202 | |||
1203 | octeon_irq_set_ciu_mapping(OCTEON_IRQ_MBOX0, 0, 32, chip_mbox, handle_percpu_irq); | ||
1204 | octeon_irq_set_ciu_mapping(OCTEON_IRQ_MBOX1, 0, 33, chip_mbox, handle_percpu_irq); | ||
1205 | |||
1206 | for (i = 0; i < 4; i++) | ||
1207 | octeon_irq_force_ciu_mapping(ciu_domain, i + OCTEON_IRQ_PCI_INT0, 0, i + 36); | ||
1208 | for (i = 0; i < 4; i++) | ||
1209 | octeon_irq_force_ciu_mapping(ciu_domain, i + OCTEON_IRQ_PCI_MSI0, 0, i + 40); | ||
1210 | |||
1211 | octeon_irq_force_ciu_mapping(ciu_domain, OCTEON_IRQ_RML, 0, 46); | ||
1212 | for (i = 0; i < 4; i++) | ||
1213 | octeon_irq_force_ciu_mapping(ciu_domain, i + OCTEON_IRQ_TIMER0, 0, i + 52); | ||
1214 | |||
1215 | octeon_irq_force_ciu_mapping(ciu_domain, OCTEON_IRQ_USB0, 0, 56); | ||
1216 | octeon_irq_force_ciu_mapping(ciu_domain, OCTEON_IRQ_BOOTDMA, 0, 63); | ||
1217 | |||
1218 | /* CIU_1 */ | ||
1219 | for (i = 0; i < 16; i++) | ||
1220 | octeon_irq_set_ciu_mapping(i + OCTEON_IRQ_WDOG0, 1, i + 0, chip_wd, handle_level_irq); | ||
1221 | |||
1222 | octeon_irq_force_ciu_mapping(ciu_domain, OCTEON_IRQ_USB1, 1, 17); | ||
1226 | 1223 | ||
1227 | /* Enable the CIU lines */ | 1224 | /* Enable the CIU lines */ |
1228 | set_c0_status(STATUSF_IP3 | STATUSF_IP2); | 1225 | set_c0_status(STATUSF_IP3 | STATUSF_IP2); |
diff --git a/arch/mips/include/asm/mach-ath79/ar71xx_regs.h b/arch/mips/include/asm/mach-ath79/ar71xx_regs.h index 1caa78ad06d5..dde504477fac 100644 --- a/arch/mips/include/asm/mach-ath79/ar71xx_regs.h +++ b/arch/mips/include/asm/mach-ath79/ar71xx_regs.h | |||
@@ -393,7 +393,8 @@ | |||
393 | #define AR71XX_GPIO_REG_FUNC 0x28 | 393 | #define AR71XX_GPIO_REG_FUNC 0x28 |
394 | 394 | ||
395 | #define AR71XX_GPIO_COUNT 16 | 395 | #define AR71XX_GPIO_COUNT 16 |
396 | #define AR724X_GPIO_COUNT 18 | 396 | #define AR7240_GPIO_COUNT 18 |
397 | #define AR7241_GPIO_COUNT 20 | ||
397 | #define AR913X_GPIO_COUNT 22 | 398 | #define AR913X_GPIO_COUNT 22 |
398 | #define AR933X_GPIO_COUNT 30 | 399 | #define AR933X_GPIO_COUNT 30 |
399 | #define AR934X_GPIO_COUNT 23 | 400 | #define AR934X_GPIO_COUNT 23 |
diff --git a/arch/mips/include/asm/mach-ath79/cpu-feature-overrides.h b/arch/mips/include/asm/mach-ath79/cpu-feature-overrides.h index 4476fa03bf36..6ddae926bf79 100644 --- a/arch/mips/include/asm/mach-ath79/cpu-feature-overrides.h +++ b/arch/mips/include/asm/mach-ath79/cpu-feature-overrides.h | |||
@@ -42,7 +42,6 @@ | |||
42 | #define cpu_has_mips64r1 0 | 42 | #define cpu_has_mips64r1 0 |
43 | #define cpu_has_mips64r2 0 | 43 | #define cpu_has_mips64r2 0 |
44 | 44 | ||
45 | #define cpu_has_dsp 0 | ||
46 | #define cpu_has_mipsmt 0 | 45 | #define cpu_has_mipsmt 0 |
47 | 46 | ||
48 | #define cpu_has_64bits 0 | 47 | #define cpu_has_64bits 0 |
diff --git a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_spi.h b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_spi.h index 7d98dbe5d4b5..c9bae1362606 100644 --- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_spi.h +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_dev_spi.h | |||
@@ -9,6 +9,8 @@ int __init bcm63xx_spi_register(void); | |||
9 | 9 | ||
10 | struct bcm63xx_spi_pdata { | 10 | struct bcm63xx_spi_pdata { |
11 | unsigned int fifo_size; | 11 | unsigned int fifo_size; |
12 | unsigned int msg_type_shift; | ||
13 | unsigned int msg_ctl_width; | ||
12 | int bus_num; | 14 | int bus_num; |
13 | int num_chipselect; | 15 | int num_chipselect; |
14 | u32 speed_hz; | 16 | u32 speed_hz; |
diff --git a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_regs.h b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_regs.h index 4ccc2a748aff..61f2a2a5099d 100644 --- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_regs.h +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_regs.h | |||
@@ -1054,7 +1054,8 @@ | |||
1054 | #define SPI_6338_FILL_BYTE 0x07 | 1054 | #define SPI_6338_FILL_BYTE 0x07 |
1055 | #define SPI_6338_MSG_TAIL 0x09 | 1055 | #define SPI_6338_MSG_TAIL 0x09 |
1056 | #define SPI_6338_RX_TAIL 0x0b | 1056 | #define SPI_6338_RX_TAIL 0x0b |
1057 | #define SPI_6338_MSG_CTL 0x40 | 1057 | #define SPI_6338_MSG_CTL 0x40 /* 8-bits register */ |
1058 | #define SPI_6338_MSG_CTL_WIDTH 8 | ||
1058 | #define SPI_6338_MSG_DATA 0x41 | 1059 | #define SPI_6338_MSG_DATA 0x41 |
1059 | #define SPI_6338_MSG_DATA_SIZE 0x3f | 1060 | #define SPI_6338_MSG_DATA_SIZE 0x3f |
1060 | #define SPI_6338_RX_DATA 0x80 | 1061 | #define SPI_6338_RX_DATA 0x80 |
@@ -1070,7 +1071,8 @@ | |||
1070 | #define SPI_6348_FILL_BYTE 0x07 | 1071 | #define SPI_6348_FILL_BYTE 0x07 |
1071 | #define SPI_6348_MSG_TAIL 0x09 | 1072 | #define SPI_6348_MSG_TAIL 0x09 |
1072 | #define SPI_6348_RX_TAIL 0x0b | 1073 | #define SPI_6348_RX_TAIL 0x0b |
1073 | #define SPI_6348_MSG_CTL 0x40 | 1074 | #define SPI_6348_MSG_CTL 0x40 /* 8-bits register */ |
1075 | #define SPI_6348_MSG_CTL_WIDTH 8 | ||
1074 | #define SPI_6348_MSG_DATA 0x41 | 1076 | #define SPI_6348_MSG_DATA 0x41 |
1075 | #define SPI_6348_MSG_DATA_SIZE 0x3f | 1077 | #define SPI_6348_MSG_DATA_SIZE 0x3f |
1076 | #define SPI_6348_RX_DATA 0x80 | 1078 | #define SPI_6348_RX_DATA 0x80 |
@@ -1078,6 +1080,7 @@ | |||
1078 | 1080 | ||
1079 | /* BCM 6358 SPI core */ | 1081 | /* BCM 6358 SPI core */ |
1080 | #define SPI_6358_MSG_CTL 0x00 /* 16-bits register */ | 1082 | #define SPI_6358_MSG_CTL 0x00 /* 16-bits register */ |
1083 | #define SPI_6358_MSG_CTL_WIDTH 16 | ||
1081 | #define SPI_6358_MSG_DATA 0x02 | 1084 | #define SPI_6358_MSG_DATA 0x02 |
1082 | #define SPI_6358_MSG_DATA_SIZE 0x21e | 1085 | #define SPI_6358_MSG_DATA_SIZE 0x21e |
1083 | #define SPI_6358_RX_DATA 0x400 | 1086 | #define SPI_6358_RX_DATA 0x400 |
@@ -1094,6 +1097,7 @@ | |||
1094 | 1097 | ||
1095 | /* BCM 6358 SPI core */ | 1098 | /* BCM 6358 SPI core */ |
1096 | #define SPI_6368_MSG_CTL 0x00 /* 16-bits register */ | 1099 | #define SPI_6368_MSG_CTL 0x00 /* 16-bits register */ |
1100 | #define SPI_6368_MSG_CTL_WIDTH 16 | ||
1097 | #define SPI_6368_MSG_DATA 0x02 | 1101 | #define SPI_6368_MSG_DATA 0x02 |
1098 | #define SPI_6368_MSG_DATA_SIZE 0x21e | 1102 | #define SPI_6368_MSG_DATA_SIZE 0x21e |
1099 | #define SPI_6368_RX_DATA 0x400 | 1103 | #define SPI_6368_RX_DATA 0x400 |
@@ -1115,7 +1119,10 @@ | |||
1115 | #define SPI_HD_W 0x01 | 1119 | #define SPI_HD_W 0x01 |
1116 | #define SPI_HD_R 0x02 | 1120 | #define SPI_HD_R 0x02 |
1117 | #define SPI_BYTE_CNT_SHIFT 0 | 1121 | #define SPI_BYTE_CNT_SHIFT 0 |
1118 | #define SPI_MSG_TYPE_SHIFT 14 | 1122 | #define SPI_6338_MSG_TYPE_SHIFT 6 |
1123 | #define SPI_6348_MSG_TYPE_SHIFT 6 | ||
1124 | #define SPI_6358_MSG_TYPE_SHIFT 14 | ||
1125 | #define SPI_6368_MSG_TYPE_SHIFT 14 | ||
1119 | 1126 | ||
1120 | /* Command */ | 1127 | /* Command */ |
1121 | #define SPI_CMD_NOOP 0x00 | 1128 | #define SPI_CMD_NOOP 0x00 |
diff --git a/arch/mips/include/asm/mach-cavium-octeon/irq.h b/arch/mips/include/asm/mach-cavium-octeon/irq.h index 418992042f6f..c22a3078bf11 100644 --- a/arch/mips/include/asm/mach-cavium-octeon/irq.h +++ b/arch/mips/include/asm/mach-cavium-octeon/irq.h | |||
@@ -21,14 +21,10 @@ enum octeon_irq { | |||
21 | OCTEON_IRQ_TIMER, | 21 | OCTEON_IRQ_TIMER, |
22 | /* sources in CIU_INTX_EN0 */ | 22 | /* sources in CIU_INTX_EN0 */ |
23 | OCTEON_IRQ_WORKQ0, | 23 | OCTEON_IRQ_WORKQ0, |
24 | OCTEON_IRQ_GPIO0 = OCTEON_IRQ_WORKQ0 + 16, | 24 | OCTEON_IRQ_WDOG0 = OCTEON_IRQ_WORKQ0 + 16, |
25 | OCTEON_IRQ_WDOG0 = OCTEON_IRQ_GPIO0 + 16, | ||
26 | OCTEON_IRQ_WDOG15 = OCTEON_IRQ_WDOG0 + 15, | 25 | OCTEON_IRQ_WDOG15 = OCTEON_IRQ_WDOG0 + 15, |
27 | OCTEON_IRQ_MBOX0 = OCTEON_IRQ_WDOG0 + 16, | 26 | OCTEON_IRQ_MBOX0 = OCTEON_IRQ_WDOG0 + 16, |
28 | OCTEON_IRQ_MBOX1, | 27 | OCTEON_IRQ_MBOX1, |
29 | OCTEON_IRQ_UART0, | ||
30 | OCTEON_IRQ_UART1, | ||
31 | OCTEON_IRQ_UART2, | ||
32 | OCTEON_IRQ_PCI_INT0, | 28 | OCTEON_IRQ_PCI_INT0, |
33 | OCTEON_IRQ_PCI_INT1, | 29 | OCTEON_IRQ_PCI_INT1, |
34 | OCTEON_IRQ_PCI_INT2, | 30 | OCTEON_IRQ_PCI_INT2, |
@@ -38,8 +34,6 @@ enum octeon_irq { | |||
38 | OCTEON_IRQ_PCI_MSI2, | 34 | OCTEON_IRQ_PCI_MSI2, |
39 | OCTEON_IRQ_PCI_MSI3, | 35 | OCTEON_IRQ_PCI_MSI3, |
40 | 36 | ||
41 | OCTEON_IRQ_TWSI, | ||
42 | OCTEON_IRQ_TWSI2, | ||
43 | OCTEON_IRQ_RML, | 37 | OCTEON_IRQ_RML, |
44 | OCTEON_IRQ_TIMER0, | 38 | OCTEON_IRQ_TIMER0, |
45 | OCTEON_IRQ_TIMER1, | 39 | OCTEON_IRQ_TIMER1, |
@@ -47,8 +41,6 @@ enum octeon_irq { | |||
47 | OCTEON_IRQ_TIMER3, | 41 | OCTEON_IRQ_TIMER3, |
48 | OCTEON_IRQ_USB0, | 42 | OCTEON_IRQ_USB0, |
49 | OCTEON_IRQ_USB1, | 43 | OCTEON_IRQ_USB1, |
50 | OCTEON_IRQ_MII0, | ||
51 | OCTEON_IRQ_MII1, | ||
52 | OCTEON_IRQ_BOOTDMA, | 44 | OCTEON_IRQ_BOOTDMA, |
53 | #ifndef CONFIG_PCI_MSI | 45 | #ifndef CONFIG_PCI_MSI |
54 | OCTEON_IRQ_LAST = 127 | 46 | OCTEON_IRQ_LAST = 127 |
diff --git a/arch/mips/include/asm/module.h b/arch/mips/include/asm/module.h index 7531ecd654d6..dca8bce8c7ab 100644 --- a/arch/mips/include/asm/module.h +++ b/arch/mips/include/asm/module.h | |||
@@ -10,6 +10,7 @@ struct mod_arch_specific { | |||
10 | struct list_head dbe_list; | 10 | struct list_head dbe_list; |
11 | const struct exception_table_entry *dbe_start; | 11 | const struct exception_table_entry *dbe_start; |
12 | const struct exception_table_entry *dbe_end; | 12 | const struct exception_table_entry *dbe_end; |
13 | struct mips_hi16 *r_mips_hi16_list; | ||
13 | }; | 14 | }; |
14 | 15 | ||
15 | typedef uint8_t Elf64_Byte; /* Type for a 8-bit quantity. */ | 16 | typedef uint8_t Elf64_Byte; /* Type for a 8-bit quantity. */ |
diff --git a/arch/mips/include/asm/r4k-timer.h b/arch/mips/include/asm/r4k-timer.h index a37d12b3b61c..afe9e0e03fe9 100644 --- a/arch/mips/include/asm/r4k-timer.h +++ b/arch/mips/include/asm/r4k-timer.h | |||
@@ -12,16 +12,16 @@ | |||
12 | 12 | ||
13 | #ifdef CONFIG_SYNC_R4K | 13 | #ifdef CONFIG_SYNC_R4K |
14 | 14 | ||
15 | extern void synchronise_count_master(void); | 15 | extern void synchronise_count_master(int cpu); |
16 | extern void synchronise_count_slave(void); | 16 | extern void synchronise_count_slave(int cpu); |
17 | 17 | ||
18 | #else | 18 | #else |
19 | 19 | ||
20 | static inline void synchronise_count_master(void) | 20 | static inline void synchronise_count_master(int cpu) |
21 | { | 21 | { |
22 | } | 22 | } |
23 | 23 | ||
24 | static inline void synchronise_count_slave(void) | 24 | static inline void synchronise_count_slave(int cpu) |
25 | { | 25 | { |
26 | } | 26 | } |
27 | 27 | ||
diff --git a/arch/mips/kernel/module.c b/arch/mips/kernel/module.c index a5066b1c3de3..4f8c3cba8c0c 100644 --- a/arch/mips/kernel/module.c +++ b/arch/mips/kernel/module.c | |||
@@ -39,8 +39,6 @@ struct mips_hi16 { | |||
39 | Elf_Addr value; | 39 | Elf_Addr value; |
40 | }; | 40 | }; |
41 | 41 | ||
42 | static struct mips_hi16 *mips_hi16_list; | ||
43 | |||
44 | static LIST_HEAD(dbe_list); | 42 | static LIST_HEAD(dbe_list); |
45 | static DEFINE_SPINLOCK(dbe_lock); | 43 | static DEFINE_SPINLOCK(dbe_lock); |
46 | 44 | ||
@@ -128,8 +126,8 @@ static int apply_r_mips_hi16_rel(struct module *me, u32 *location, Elf_Addr v) | |||
128 | 126 | ||
129 | n->addr = (Elf_Addr *)location; | 127 | n->addr = (Elf_Addr *)location; |
130 | n->value = v; | 128 | n->value = v; |
131 | n->next = mips_hi16_list; | 129 | n->next = me->arch.r_mips_hi16_list; |
132 | mips_hi16_list = n; | 130 | me->arch.r_mips_hi16_list = n; |
133 | 131 | ||
134 | return 0; | 132 | return 0; |
135 | } | 133 | } |
@@ -142,18 +140,28 @@ static int apply_r_mips_hi16_rela(struct module *me, u32 *location, Elf_Addr v) | |||
142 | return 0; | 140 | return 0; |
143 | } | 141 | } |
144 | 142 | ||
143 | static void free_relocation_chain(struct mips_hi16 *l) | ||
144 | { | ||
145 | struct mips_hi16 *next; | ||
146 | |||
147 | while (l) { | ||
148 | next = l->next; | ||
149 | kfree(l); | ||
150 | l = next; | ||
151 | } | ||
152 | } | ||
153 | |||
145 | static int apply_r_mips_lo16_rel(struct module *me, u32 *location, Elf_Addr v) | 154 | static int apply_r_mips_lo16_rel(struct module *me, u32 *location, Elf_Addr v) |
146 | { | 155 | { |
147 | unsigned long insnlo = *location; | 156 | unsigned long insnlo = *location; |
157 | struct mips_hi16 *l; | ||
148 | Elf_Addr val, vallo; | 158 | Elf_Addr val, vallo; |
149 | 159 | ||
150 | /* Sign extend the addend we extract from the lo insn. */ | 160 | /* Sign extend the addend we extract from the lo insn. */ |
151 | vallo = ((insnlo & 0xffff) ^ 0x8000) - 0x8000; | 161 | vallo = ((insnlo & 0xffff) ^ 0x8000) - 0x8000; |
152 | 162 | ||
153 | if (mips_hi16_list != NULL) { | 163 | if (me->arch.r_mips_hi16_list != NULL) { |
154 | struct mips_hi16 *l; | 164 | l = me->arch.r_mips_hi16_list; |
155 | |||
156 | l = mips_hi16_list; | ||
157 | while (l != NULL) { | 165 | while (l != NULL) { |
158 | struct mips_hi16 *next; | 166 | struct mips_hi16 *next; |
159 | unsigned long insn; | 167 | unsigned long insn; |
@@ -188,7 +196,7 @@ static int apply_r_mips_lo16_rel(struct module *me, u32 *location, Elf_Addr v) | |||
188 | l = next; | 196 | l = next; |
189 | } | 197 | } |
190 | 198 | ||
191 | mips_hi16_list = NULL; | 199 | me->arch.r_mips_hi16_list = NULL; |
192 | } | 200 | } |
193 | 201 | ||
194 | /* | 202 | /* |
@@ -201,6 +209,9 @@ static int apply_r_mips_lo16_rel(struct module *me, u32 *location, Elf_Addr v) | |||
201 | return 0; | 209 | return 0; |
202 | 210 | ||
203 | out_danger: | 211 | out_danger: |
212 | free_relocation_chain(l); | ||
213 | me->arch.r_mips_hi16_list = NULL; | ||
214 | |||
204 | pr_err("module %s: dangerous R_MIPS_LO16 REL relocation\n", me->name); | 215 | pr_err("module %s: dangerous R_MIPS_LO16 REL relocation\n", me->name); |
205 | 216 | ||
206 | return -ENOEXEC; | 217 | return -ENOEXEC; |
@@ -273,6 +284,7 @@ int apply_relocate(Elf_Shdr *sechdrs, const char *strtab, | |||
273 | pr_debug("Applying relocate section %u to %u\n", relsec, | 284 | pr_debug("Applying relocate section %u to %u\n", relsec, |
274 | sechdrs[relsec].sh_info); | 285 | sechdrs[relsec].sh_info); |
275 | 286 | ||
287 | me->arch.r_mips_hi16_list = NULL; | ||
276 | for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) { | 288 | for (i = 0; i < sechdrs[relsec].sh_size / sizeof(*rel); i++) { |
277 | /* This is where to make the change */ | 289 | /* This is where to make the change */ |
278 | location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr | 290 | location = (void *)sechdrs[sechdrs[relsec].sh_info].sh_addr |
@@ -296,6 +308,19 @@ int apply_relocate(Elf_Shdr *sechdrs, const char *strtab, | |||
296 | return res; | 308 | return res; |
297 | } | 309 | } |
298 | 310 | ||
311 | /* | ||
312 | * Normally the hi16 list should be deallocated at this point. A | ||
313 | * malformed binary however could contain a series of R_MIPS_HI16 | ||
314 | * relocations not followed by a R_MIPS_LO16 relocation. In that | ||
315 | * case, free up the list and return an error. | ||
316 | */ | ||
317 | if (me->arch.r_mips_hi16_list) { | ||
318 | free_relocation_chain(me->arch.r_mips_hi16_list); | ||
319 | me->arch.r_mips_hi16_list = NULL; | ||
320 | |||
321 | return -ENOEXEC; | ||
322 | } | ||
323 | |||
299 | return 0; | 324 | return 0; |
300 | } | 325 | } |
301 | 326 | ||
diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c index 31637d8c8738..9005bf9fb859 100644 --- a/arch/mips/kernel/smp.c +++ b/arch/mips/kernel/smp.c | |||
@@ -130,7 +130,7 @@ asmlinkage __cpuinit void start_secondary(void) | |||
130 | 130 | ||
131 | cpu_set(cpu, cpu_callin_map); | 131 | cpu_set(cpu, cpu_callin_map); |
132 | 132 | ||
133 | synchronise_count_slave(); | 133 | synchronise_count_slave(cpu); |
134 | 134 | ||
135 | /* | 135 | /* |
136 | * irq will be enabled in ->smp_finish(), enabling it too early | 136 | * irq will be enabled in ->smp_finish(), enabling it too early |
@@ -173,7 +173,6 @@ void smp_send_stop(void) | |||
173 | void __init smp_cpus_done(unsigned int max_cpus) | 173 | void __init smp_cpus_done(unsigned int max_cpus) |
174 | { | 174 | { |
175 | mp_ops->cpus_done(); | 175 | mp_ops->cpus_done(); |
176 | synchronise_count_master(); | ||
177 | } | 176 | } |
178 | 177 | ||
179 | /* called from main before smp_init() */ | 178 | /* called from main before smp_init() */ |
@@ -206,6 +205,7 @@ int __cpuinit __cpu_up(unsigned int cpu, struct task_struct *tidle) | |||
206 | while (!cpu_isset(cpu, cpu_callin_map)) | 205 | while (!cpu_isset(cpu, cpu_callin_map)) |
207 | udelay(100); | 206 | udelay(100); |
208 | 207 | ||
208 | synchronise_count_master(cpu); | ||
209 | return 0; | 209 | return 0; |
210 | } | 210 | } |
211 | 211 | ||
diff --git a/arch/mips/kernel/sync-r4k.c b/arch/mips/kernel/sync-r4k.c index 842d55e411fd..7f1eca3858de 100644 --- a/arch/mips/kernel/sync-r4k.c +++ b/arch/mips/kernel/sync-r4k.c | |||
@@ -28,12 +28,11 @@ static atomic_t __cpuinitdata count_reference = ATOMIC_INIT(0); | |||
28 | #define COUNTON 100 | 28 | #define COUNTON 100 |
29 | #define NR_LOOPS 5 | 29 | #define NR_LOOPS 5 |
30 | 30 | ||
31 | void __cpuinit synchronise_count_master(void) | 31 | void __cpuinit synchronise_count_master(int cpu) |
32 | { | 32 | { |
33 | int i; | 33 | int i; |
34 | unsigned long flags; | 34 | unsigned long flags; |
35 | unsigned int initcount; | 35 | unsigned int initcount; |
36 | int nslaves; | ||
37 | 36 | ||
38 | #ifdef CONFIG_MIPS_MT_SMTC | 37 | #ifdef CONFIG_MIPS_MT_SMTC |
39 | /* | 38 | /* |
@@ -43,8 +42,7 @@ void __cpuinit synchronise_count_master(void) | |||
43 | return; | 42 | return; |
44 | #endif | 43 | #endif |
45 | 44 | ||
46 | printk(KERN_INFO "Synchronize counters across %u CPUs: ", | 45 | printk(KERN_INFO "Synchronize counters for CPU %u: ", cpu); |
47 | num_online_cpus()); | ||
48 | 46 | ||
49 | local_irq_save(flags); | 47 | local_irq_save(flags); |
50 | 48 | ||
@@ -52,7 +50,7 @@ void __cpuinit synchronise_count_master(void) | |||
52 | * Notify the slaves that it's time to start | 50 | * Notify the slaves that it's time to start |
53 | */ | 51 | */ |
54 | atomic_set(&count_reference, read_c0_count()); | 52 | atomic_set(&count_reference, read_c0_count()); |
55 | atomic_set(&count_start_flag, 1); | 53 | atomic_set(&count_start_flag, cpu); |
56 | smp_wmb(); | 54 | smp_wmb(); |
57 | 55 | ||
58 | /* Count will be initialised to current timer for all CPU's */ | 56 | /* Count will be initialised to current timer for all CPU's */ |
@@ -69,10 +67,9 @@ void __cpuinit synchronise_count_master(void) | |||
69 | * two CPUs. | 67 | * two CPUs. |
70 | */ | 68 | */ |
71 | 69 | ||
72 | nslaves = num_online_cpus()-1; | ||
73 | for (i = 0; i < NR_LOOPS; i++) { | 70 | for (i = 0; i < NR_LOOPS; i++) { |
74 | /* slaves loop on '!= ncpus' */ | 71 | /* slaves loop on '!= 2' */ |
75 | while (atomic_read(&count_count_start) != nslaves) | 72 | while (atomic_read(&count_count_start) != 1) |
76 | mb(); | 73 | mb(); |
77 | atomic_set(&count_count_stop, 0); | 74 | atomic_set(&count_count_stop, 0); |
78 | smp_wmb(); | 75 | smp_wmb(); |
@@ -89,7 +86,7 @@ void __cpuinit synchronise_count_master(void) | |||
89 | /* | 86 | /* |
90 | * Wait for all slaves to leave the synchronization point: | 87 | * Wait for all slaves to leave the synchronization point: |
91 | */ | 88 | */ |
92 | while (atomic_read(&count_count_stop) != nslaves) | 89 | while (atomic_read(&count_count_stop) != 1) |
93 | mb(); | 90 | mb(); |
94 | atomic_set(&count_count_start, 0); | 91 | atomic_set(&count_count_start, 0); |
95 | smp_wmb(); | 92 | smp_wmb(); |
@@ -97,6 +94,7 @@ void __cpuinit synchronise_count_master(void) | |||
97 | } | 94 | } |
98 | /* Arrange for an interrupt in a short while */ | 95 | /* Arrange for an interrupt in a short while */ |
99 | write_c0_compare(read_c0_count() + COUNTON); | 96 | write_c0_compare(read_c0_count() + COUNTON); |
97 | atomic_set(&count_start_flag, 0); | ||
100 | 98 | ||
101 | local_irq_restore(flags); | 99 | local_irq_restore(flags); |
102 | 100 | ||
@@ -108,11 +106,10 @@ void __cpuinit synchronise_count_master(void) | |||
108 | printk("done.\n"); | 106 | printk("done.\n"); |
109 | } | 107 | } |
110 | 108 | ||
111 | void __cpuinit synchronise_count_slave(void) | 109 | void __cpuinit synchronise_count_slave(int cpu) |
112 | { | 110 | { |
113 | int i; | 111 | int i; |
114 | unsigned int initcount; | 112 | unsigned int initcount; |
115 | int ncpus; | ||
116 | 113 | ||
117 | #ifdef CONFIG_MIPS_MT_SMTC | 114 | #ifdef CONFIG_MIPS_MT_SMTC |
118 | /* | 115 | /* |
@@ -127,16 +124,15 @@ void __cpuinit synchronise_count_slave(void) | |||
127 | * so we first wait for the master to say everyone is ready | 124 | * so we first wait for the master to say everyone is ready |
128 | */ | 125 | */ |
129 | 126 | ||
130 | while (!atomic_read(&count_start_flag)) | 127 | while (atomic_read(&count_start_flag) != cpu) |
131 | mb(); | 128 | mb(); |
132 | 129 | ||
133 | /* Count will be initialised to next expire for all CPU's */ | 130 | /* Count will be initialised to next expire for all CPU's */ |
134 | initcount = atomic_read(&count_reference); | 131 | initcount = atomic_read(&count_reference); |
135 | 132 | ||
136 | ncpus = num_online_cpus(); | ||
137 | for (i = 0; i < NR_LOOPS; i++) { | 133 | for (i = 0; i < NR_LOOPS; i++) { |
138 | atomic_inc(&count_count_start); | 134 | atomic_inc(&count_count_start); |
139 | while (atomic_read(&count_count_start) != ncpus) | 135 | while (atomic_read(&count_count_start) != 2) |
140 | mb(); | 136 | mb(); |
141 | 137 | ||
142 | /* | 138 | /* |
@@ -146,7 +142,7 @@ void __cpuinit synchronise_count_slave(void) | |||
146 | write_c0_count(initcount); | 142 | write_c0_count(initcount); |
147 | 143 | ||
148 | atomic_inc(&count_count_stop); | 144 | atomic_inc(&count_count_stop); |
149 | while (atomic_read(&count_count_stop) != ncpus) | 145 | while (atomic_read(&count_count_stop) != 2) |
150 | mb(); | 146 | mb(); |
151 | } | 147 | } |
152 | /* Arrange for an interrupt in a short while */ | 148 | /* Arrange for an interrupt in a short while */ |
diff --git a/arch/mips/mti-malta/malta-pci.c b/arch/mips/mti-malta/malta-pci.c index 284dea54faf5..2147cb34e705 100644 --- a/arch/mips/mti-malta/malta-pci.c +++ b/arch/mips/mti-malta/malta-pci.c | |||
@@ -252,16 +252,3 @@ void __init mips_pcibios_init(void) | |||
252 | 252 | ||
253 | register_pci_controller(controller); | 253 | register_pci_controller(controller); |
254 | } | 254 | } |
255 | |||
256 | /* Enable PCI 2.1 compatibility in PIIX4 */ | ||
257 | static void __devinit quirk_dlcsetup(struct pci_dev *dev) | ||
258 | { | ||
259 | u8 odlc, ndlc; | ||
260 | (void) pci_read_config_byte(dev, 0x82, &odlc); | ||
261 | /* Enable passive releases and delayed transaction */ | ||
262 | ndlc = odlc | 7; | ||
263 | (void) pci_write_config_byte(dev, 0x82, ndlc); | ||
264 | } | ||
265 | |||
266 | DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_0, | ||
267 | quirk_dlcsetup); | ||
diff --git a/arch/mips/pci/pci-ar724x.c b/arch/mips/pci/pci-ar724x.c index 414a7459858d..86d77a666458 100644 --- a/arch/mips/pci/pci-ar724x.c +++ b/arch/mips/pci/pci-ar724x.c | |||
@@ -23,9 +23,12 @@ | |||
23 | #define AR724X_PCI_MEM_BASE 0x10000000 | 23 | #define AR724X_PCI_MEM_BASE 0x10000000 |
24 | #define AR724X_PCI_MEM_SIZE 0x08000000 | 24 | #define AR724X_PCI_MEM_SIZE 0x08000000 |
25 | 25 | ||
26 | #define AR724X_PCI_REG_RESET 0x18 | ||
26 | #define AR724X_PCI_REG_INT_STATUS 0x4c | 27 | #define AR724X_PCI_REG_INT_STATUS 0x4c |
27 | #define AR724X_PCI_REG_INT_MASK 0x50 | 28 | #define AR724X_PCI_REG_INT_MASK 0x50 |
28 | 29 | ||
30 | #define AR724X_PCI_RESET_LINK_UP BIT(0) | ||
31 | |||
29 | #define AR724X_PCI_INT_DEV0 BIT(14) | 32 | #define AR724X_PCI_INT_DEV0 BIT(14) |
30 | 33 | ||
31 | #define AR724X_PCI_IRQ_COUNT 1 | 34 | #define AR724X_PCI_IRQ_COUNT 1 |
@@ -38,6 +41,15 @@ static void __iomem *ar724x_pci_ctrl_base; | |||
38 | 41 | ||
39 | static u32 ar724x_pci_bar0_value; | 42 | static u32 ar724x_pci_bar0_value; |
40 | static bool ar724x_pci_bar0_is_cached; | 43 | static bool ar724x_pci_bar0_is_cached; |
44 | static bool ar724x_pci_link_up; | ||
45 | |||
46 | static inline bool ar724x_pci_check_link(void) | ||
47 | { | ||
48 | u32 reset; | ||
49 | |||
50 | reset = __raw_readl(ar724x_pci_ctrl_base + AR724X_PCI_REG_RESET); | ||
51 | return reset & AR724X_PCI_RESET_LINK_UP; | ||
52 | } | ||
41 | 53 | ||
42 | static int ar724x_pci_read(struct pci_bus *bus, unsigned int devfn, int where, | 54 | static int ar724x_pci_read(struct pci_bus *bus, unsigned int devfn, int where, |
43 | int size, uint32_t *value) | 55 | int size, uint32_t *value) |
@@ -46,6 +58,9 @@ static int ar724x_pci_read(struct pci_bus *bus, unsigned int devfn, int where, | |||
46 | void __iomem *base; | 58 | void __iomem *base; |
47 | u32 data; | 59 | u32 data; |
48 | 60 | ||
61 | if (!ar724x_pci_link_up) | ||
62 | return PCIBIOS_DEVICE_NOT_FOUND; | ||
63 | |||
49 | if (devfn) | 64 | if (devfn) |
50 | return PCIBIOS_DEVICE_NOT_FOUND; | 65 | return PCIBIOS_DEVICE_NOT_FOUND; |
51 | 66 | ||
@@ -96,6 +111,9 @@ static int ar724x_pci_write(struct pci_bus *bus, unsigned int devfn, int where, | |||
96 | u32 data; | 111 | u32 data; |
97 | int s; | 112 | int s; |
98 | 113 | ||
114 | if (!ar724x_pci_link_up) | ||
115 | return PCIBIOS_DEVICE_NOT_FOUND; | ||
116 | |||
99 | if (devfn) | 117 | if (devfn) |
100 | return PCIBIOS_DEVICE_NOT_FOUND; | 118 | return PCIBIOS_DEVICE_NOT_FOUND; |
101 | 119 | ||
@@ -280,6 +298,10 @@ int __init ar724x_pcibios_init(int irq) | |||
280 | if (ar724x_pci_ctrl_base == NULL) | 298 | if (ar724x_pci_ctrl_base == NULL) |
281 | goto err_unmap_devcfg; | 299 | goto err_unmap_devcfg; |
282 | 300 | ||
301 | ar724x_pci_link_up = ar724x_pci_check_link(); | ||
302 | if (!ar724x_pci_link_up) | ||
303 | pr_warn("ar724x: PCIe link is down\n"); | ||
304 | |||
283 | ar724x_pci_irq_init(irq); | 305 | ar724x_pci_irq_init(irq); |
284 | register_pci_controller(&ar724x_pci_controller); | 306 | register_pci_controller(&ar724x_pci_controller); |
285 | 307 | ||
diff --git a/arch/parisc/include/asm/atomic.h b/arch/parisc/include/asm/atomic.h index 6c6defc24619..af9cf30ed474 100644 --- a/arch/parisc/include/asm/atomic.h +++ b/arch/parisc/include/asm/atomic.h | |||
@@ -141,7 +141,7 @@ static __inline__ int __atomic_add_unless(atomic_t *v, int a, int u) | |||
141 | 141 | ||
142 | #define atomic_sub_and_test(i,v) (atomic_sub_return((i),(v)) == 0) | 142 | #define atomic_sub_and_test(i,v) (atomic_sub_return((i),(v)) == 0) |
143 | 143 | ||
144 | #define ATOMIC_INIT(i) ((atomic_t) { (i) }) | 144 | #define ATOMIC_INIT(i) { (i) } |
145 | 145 | ||
146 | #define smp_mb__before_atomic_dec() smp_mb() | 146 | #define smp_mb__before_atomic_dec() smp_mb() |
147 | #define smp_mb__after_atomic_dec() smp_mb() | 147 | #define smp_mb__after_atomic_dec() smp_mb() |
@@ -150,7 +150,7 @@ static __inline__ int __atomic_add_unless(atomic_t *v, int a, int u) | |||
150 | 150 | ||
151 | #ifdef CONFIG_64BIT | 151 | #ifdef CONFIG_64BIT |
152 | 152 | ||
153 | #define ATOMIC64_INIT(i) ((atomic64_t) { (i) }) | 153 | #define ATOMIC64_INIT(i) { (i) } |
154 | 154 | ||
155 | static __inline__ s64 | 155 | static __inline__ s64 |
156 | __atomic64_add_return(s64 i, atomic64_t *v) | 156 | __atomic64_add_return(s64 i, atomic64_t *v) |
diff --git a/arch/parisc/kernel/process.c b/arch/parisc/kernel/process.c index d4b94b395c16..2c05a9292a81 100644 --- a/arch/parisc/kernel/process.c +++ b/arch/parisc/kernel/process.c | |||
@@ -309,7 +309,7 @@ copy_thread(unsigned long clone_flags, unsigned long usp, | |||
309 | cregs->ksp = (unsigned long)stack | 309 | cregs->ksp = (unsigned long)stack |
310 | + (pregs->gr[21] & (THREAD_SIZE - 1)); | 310 | + (pregs->gr[21] & (THREAD_SIZE - 1)); |
311 | cregs->gr[30] = usp; | 311 | cregs->gr[30] = usp; |
312 | if (p->personality == PER_HPUX) { | 312 | if (personality(p->personality) == PER_HPUX) { |
313 | #ifdef CONFIG_HPUX | 313 | #ifdef CONFIG_HPUX |
314 | cregs->kpc = (unsigned long) &hpux_child_return; | 314 | cregs->kpc = (unsigned long) &hpux_child_return; |
315 | #else | 315 | #else |
diff --git a/arch/parisc/kernel/sys_parisc.c b/arch/parisc/kernel/sys_parisc.c index c9b932260f47..7426e40699bd 100644 --- a/arch/parisc/kernel/sys_parisc.c +++ b/arch/parisc/kernel/sys_parisc.c | |||
@@ -225,12 +225,12 @@ long parisc_personality(unsigned long personality) | |||
225 | long err; | 225 | long err; |
226 | 226 | ||
227 | if (personality(current->personality) == PER_LINUX32 | 227 | if (personality(current->personality) == PER_LINUX32 |
228 | && personality == PER_LINUX) | 228 | && personality(personality) == PER_LINUX) |
229 | personality = PER_LINUX32; | 229 | personality = (personality & ~PER_MASK) | PER_LINUX32; |
230 | 230 | ||
231 | err = sys_personality(personality); | 231 | err = sys_personality(personality); |
232 | if (err == PER_LINUX32) | 232 | if (personality(err) == PER_LINUX32) |
233 | err = PER_LINUX; | 233 | err = (err & ~PER_MASK) | PER_LINUX; |
234 | 234 | ||
235 | return err; | 235 | return err; |
236 | } | 236 | } |
diff --git a/arch/powerpc/boot/dts/fsl/p4080si-post.dtsi b/arch/powerpc/boot/dts/fsl/p4080si-post.dtsi index 8d35d2c1f694..4f9c9f682ecf 100644 --- a/arch/powerpc/boot/dts/fsl/p4080si-post.dtsi +++ b/arch/powerpc/boot/dts/fsl/p4080si-post.dtsi | |||
@@ -345,6 +345,13 @@ | |||
345 | /include/ "qoriq-duart-1.dtsi" | 345 | /include/ "qoriq-duart-1.dtsi" |
346 | /include/ "qoriq-gpio-0.dtsi" | 346 | /include/ "qoriq-gpio-0.dtsi" |
347 | /include/ "qoriq-usb2-mph-0.dtsi" | 347 | /include/ "qoriq-usb2-mph-0.dtsi" |
348 | usb@210000 { | ||
349 | compatible = "fsl-usb2-mph-v1.6", "fsl,mpc85xx-usb2-mph", "fsl-usb2-mph"; | ||
350 | port0; | ||
351 | }; | ||
348 | /include/ "qoriq-usb2-dr-0.dtsi" | 352 | /include/ "qoriq-usb2-dr-0.dtsi" |
353 | usb@211000 { | ||
354 | compatible = "fsl-usb2-dr-v1.6", "fsl,mpc85xx-usb2-dr", "fsl-usb2-dr"; | ||
355 | }; | ||
349 | /include/ "qoriq-sec4.0-0.dtsi" | 356 | /include/ "qoriq-sec4.0-0.dtsi" |
350 | }; | 357 | }; |
diff --git a/arch/powerpc/configs/85xx/p1023rds_defconfig b/arch/powerpc/configs/85xx/p1023rds_defconfig index f4337bacd0e7..26e541c4662b 100644 --- a/arch/powerpc/configs/85xx/p1023rds_defconfig +++ b/arch/powerpc/configs/85xx/p1023rds_defconfig | |||
@@ -6,28 +6,27 @@ CONFIG_SYSVIPC=y | |||
6 | CONFIG_POSIX_MQUEUE=y | 6 | CONFIG_POSIX_MQUEUE=y |
7 | CONFIG_BSD_PROCESS_ACCT=y | 7 | CONFIG_BSD_PROCESS_ACCT=y |
8 | CONFIG_AUDIT=y | 8 | CONFIG_AUDIT=y |
9 | CONFIG_SPARSE_IRQ=y | 9 | CONFIG_IRQ_DOMAIN_DEBUG=y |
10 | CONFIG_NO_HZ=y | ||
11 | CONFIG_HIGH_RES_TIMERS=y | ||
10 | CONFIG_IKCONFIG=y | 12 | CONFIG_IKCONFIG=y |
11 | CONFIG_IKCONFIG_PROC=y | 13 | CONFIG_IKCONFIG_PROC=y |
12 | CONFIG_LOG_BUF_SHIFT=14 | 14 | CONFIG_LOG_BUF_SHIFT=14 |
13 | CONFIG_BLK_DEV_INITRD=y | 15 | CONFIG_BLK_DEV_INITRD=y |
14 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
15 | CONFIG_KALLSYMS_ALL=y | 16 | CONFIG_KALLSYMS_ALL=y |
16 | CONFIG_KALLSYMS_EXTRA_PASS=y | ||
17 | CONFIG_EMBEDDED=y | 17 | CONFIG_EMBEDDED=y |
18 | CONFIG_MODULES=y | 18 | CONFIG_MODULES=y |
19 | CONFIG_MODULE_UNLOAD=y | 19 | CONFIG_MODULE_UNLOAD=y |
20 | CONFIG_MODULE_FORCE_UNLOAD=y | 20 | CONFIG_MODULE_FORCE_UNLOAD=y |
21 | CONFIG_MODVERSIONS=y | 21 | CONFIG_MODVERSIONS=y |
22 | # CONFIG_BLK_DEV_BSG is not set | 22 | # CONFIG_BLK_DEV_BSG is not set |
23 | CONFIG_PARTITION_ADVANCED=y | ||
24 | CONFIG_MAC_PARTITION=y | ||
23 | CONFIG_P1023_RDS=y | 25 | CONFIG_P1023_RDS=y |
24 | CONFIG_QUICC_ENGINE=y | 26 | CONFIG_QUICC_ENGINE=y |
25 | CONFIG_QE_GPIO=y | 27 | CONFIG_QE_GPIO=y |
26 | CONFIG_CPM2=y | 28 | CONFIG_CPM2=y |
27 | CONFIG_GPIO_MPC8XXX=y | ||
28 | CONFIG_HIGHMEM=y | 29 | CONFIG_HIGHMEM=y |
29 | CONFIG_NO_HZ=y | ||
30 | CONFIG_HIGH_RES_TIMERS=y | ||
31 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 30 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
32 | CONFIG_BINFMT_MISC=m | 31 | CONFIG_BINFMT_MISC=m |
33 | CONFIG_MATH_EMULATION=y | 32 | CONFIG_MATH_EMULATION=y |
@@ -63,11 +62,11 @@ CONFIG_INET_ESP=y | |||
63 | CONFIG_IPV6=y | 62 | CONFIG_IPV6=y |
64 | CONFIG_IP_SCTP=m | 63 | CONFIG_IP_SCTP=m |
65 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 64 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
65 | CONFIG_DEVTMPFS=y | ||
66 | CONFIG_PROC_DEVICETREE=y | 66 | CONFIG_PROC_DEVICETREE=y |
67 | CONFIG_BLK_DEV_LOOP=y | 67 | CONFIG_BLK_DEV_LOOP=y |
68 | CONFIG_BLK_DEV_RAM=y | 68 | CONFIG_BLK_DEV_RAM=y |
69 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 69 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
70 | CONFIG_MISC_DEVICES=y | ||
71 | CONFIG_EEPROM_LEGACY=y | 70 | CONFIG_EEPROM_LEGACY=y |
72 | CONFIG_BLK_DEV_SD=y | 71 | CONFIG_BLK_DEV_SD=y |
73 | CONFIG_CHR_DEV_ST=y | 72 | CONFIG_CHR_DEV_ST=y |
@@ -80,15 +79,14 @@ CONFIG_SATA_FSL=y | |||
80 | CONFIG_SATA_SIL24=y | 79 | CONFIG_SATA_SIL24=y |
81 | CONFIG_NETDEVICES=y | 80 | CONFIG_NETDEVICES=y |
82 | CONFIG_DUMMY=y | 81 | CONFIG_DUMMY=y |
82 | CONFIG_FS_ENET=y | ||
83 | CONFIG_FSL_PQ_MDIO=y | ||
84 | CONFIG_E1000E=y | ||
83 | CONFIG_MARVELL_PHY=y | 85 | CONFIG_MARVELL_PHY=y |
84 | CONFIG_DAVICOM_PHY=y | 86 | CONFIG_DAVICOM_PHY=y |
85 | CONFIG_CICADA_PHY=y | 87 | CONFIG_CICADA_PHY=y |
86 | CONFIG_VITESSE_PHY=y | 88 | CONFIG_VITESSE_PHY=y |
87 | CONFIG_FIXED_PHY=y | 89 | CONFIG_FIXED_PHY=y |
88 | CONFIG_NET_ETHERNET=y | ||
89 | CONFIG_FS_ENET=y | ||
90 | CONFIG_E1000E=y | ||
91 | CONFIG_FSL_PQ_MDIO=y | ||
92 | CONFIG_INPUT_FF_MEMLESS=m | 90 | CONFIG_INPUT_FF_MEMLESS=m |
93 | # CONFIG_INPUT_MOUSEDEV is not set | 91 | # CONFIG_INPUT_MOUSEDEV is not set |
94 | # CONFIG_INPUT_KEYBOARD is not set | 92 | # CONFIG_INPUT_KEYBOARD is not set |
@@ -98,16 +96,15 @@ CONFIG_SERIAL_8250=y | |||
98 | CONFIG_SERIAL_8250_CONSOLE=y | 96 | CONFIG_SERIAL_8250_CONSOLE=y |
99 | CONFIG_SERIAL_8250_NR_UARTS=2 | 97 | CONFIG_SERIAL_8250_NR_UARTS=2 |
100 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | 98 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 |
101 | CONFIG_SERIAL_8250_EXTENDED=y | ||
102 | CONFIG_SERIAL_8250_MANY_PORTS=y | 99 | CONFIG_SERIAL_8250_MANY_PORTS=y |
103 | CONFIG_SERIAL_8250_DETECT_IRQ=y | 100 | CONFIG_SERIAL_8250_DETECT_IRQ=y |
104 | CONFIG_SERIAL_8250_RSA=y | 101 | CONFIG_SERIAL_8250_RSA=y |
105 | CONFIG_SERIAL_QE=m | 102 | CONFIG_SERIAL_QE=m |
106 | CONFIG_HW_RANDOM=y | ||
107 | CONFIG_NVRAM=y | 103 | CONFIG_NVRAM=y |
108 | CONFIG_I2C=y | 104 | CONFIG_I2C=y |
109 | CONFIG_I2C_CPM=m | 105 | CONFIG_I2C_CPM=m |
110 | CONFIG_I2C_MPC=y | 106 | CONFIG_I2C_MPC=y |
107 | CONFIG_GPIO_MPC8XXX=y | ||
111 | # CONFIG_HWMON is not set | 108 | # CONFIG_HWMON is not set |
112 | CONFIG_VIDEO_OUTPUT_CONTROL=y | 109 | CONFIG_VIDEO_OUTPUT_CONTROL=y |
113 | CONFIG_SOUND=y | 110 | CONFIG_SOUND=y |
@@ -123,7 +120,6 @@ CONFIG_DMADEVICES=y | |||
123 | CONFIG_FSL_DMA=y | 120 | CONFIG_FSL_DMA=y |
124 | # CONFIG_NET_DMA is not set | 121 | # CONFIG_NET_DMA is not set |
125 | CONFIG_STAGING=y | 122 | CONFIG_STAGING=y |
126 | # CONFIG_STAGING_EXCLUDE_BUILD is not set | ||
127 | CONFIG_EXT2_FS=y | 123 | CONFIG_EXT2_FS=y |
128 | CONFIG_EXT3_FS=y | 124 | CONFIG_EXT3_FS=y |
129 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | 125 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set |
@@ -150,22 +146,15 @@ CONFIG_QNX4FS_FS=m | |||
150 | CONFIG_SYSV_FS=m | 146 | CONFIG_SYSV_FS=m |
151 | CONFIG_UFS_FS=m | 147 | CONFIG_UFS_FS=m |
152 | CONFIG_NFS_FS=y | 148 | CONFIG_NFS_FS=y |
153 | CONFIG_NFS_V3=y | ||
154 | CONFIG_NFS_V4=y | 149 | CONFIG_NFS_V4=y |
155 | CONFIG_ROOT_NFS=y | 150 | CONFIG_ROOT_NFS=y |
156 | CONFIG_NFSD=y | 151 | CONFIG_NFSD=y |
157 | CONFIG_PARTITION_ADVANCED=y | ||
158 | CONFIG_MAC_PARTITION=y | ||
159 | CONFIG_CRC_T10DIF=y | 152 | CONFIG_CRC_T10DIF=y |
160 | CONFIG_FRAME_WARN=8092 | 153 | CONFIG_FRAME_WARN=8092 |
161 | CONFIG_DEBUG_FS=y | 154 | CONFIG_DEBUG_FS=y |
162 | CONFIG_DEBUG_KERNEL=y | ||
163 | CONFIG_DETECT_HUNG_TASK=y | 155 | CONFIG_DETECT_HUNG_TASK=y |
164 | # CONFIG_DEBUG_BUGVERBOSE is not set | 156 | # CONFIG_DEBUG_BUGVERBOSE is not set |
165 | CONFIG_DEBUG_INFO=y | 157 | CONFIG_DEBUG_INFO=y |
166 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
167 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
168 | CONFIG_IRQ_DOMAIN_DEBUG=y | ||
169 | CONFIG_CRYPTO_PCBC=m | 158 | CONFIG_CRYPTO_PCBC=m |
170 | CONFIG_CRYPTO_SHA256=y | 159 | CONFIG_CRYPTO_SHA256=y |
171 | CONFIG_CRYPTO_SHA512=y | 160 | CONFIG_CRYPTO_SHA512=y |
diff --git a/arch/powerpc/configs/corenet32_smp_defconfig b/arch/powerpc/configs/corenet32_smp_defconfig index cbb98c1234fd..8b3d57c1ebe8 100644 --- a/arch/powerpc/configs/corenet32_smp_defconfig +++ b/arch/powerpc/configs/corenet32_smp_defconfig | |||
@@ -6,8 +6,8 @@ CONFIG_SYSVIPC=y | |||
6 | CONFIG_POSIX_MQUEUE=y | 6 | CONFIG_POSIX_MQUEUE=y |
7 | CONFIG_BSD_PROCESS_ACCT=y | 7 | CONFIG_BSD_PROCESS_ACCT=y |
8 | CONFIG_AUDIT=y | 8 | CONFIG_AUDIT=y |
9 | CONFIG_SPARSE_IRQ=y | 9 | CONFIG_NO_HZ=y |
10 | CONFIG_RCU_TRACE=y | 10 | CONFIG_HIGH_RES_TIMERS=y |
11 | CONFIG_IKCONFIG=y | 11 | CONFIG_IKCONFIG=y |
12 | CONFIG_IKCONFIG_PROC=y | 12 | CONFIG_IKCONFIG_PROC=y |
13 | CONFIG_LOG_BUF_SHIFT=14 | 13 | CONFIG_LOG_BUF_SHIFT=14 |
@@ -21,23 +21,22 @@ CONFIG_MODULE_UNLOAD=y | |||
21 | CONFIG_MODULE_FORCE_UNLOAD=y | 21 | CONFIG_MODULE_FORCE_UNLOAD=y |
22 | CONFIG_MODVERSIONS=y | 22 | CONFIG_MODVERSIONS=y |
23 | # CONFIG_BLK_DEV_BSG is not set | 23 | # CONFIG_BLK_DEV_BSG is not set |
24 | CONFIG_PARTITION_ADVANCED=y | ||
25 | CONFIG_MAC_PARTITION=y | ||
24 | CONFIG_P2041_RDB=y | 26 | CONFIG_P2041_RDB=y |
25 | CONFIG_P3041_DS=y | 27 | CONFIG_P3041_DS=y |
26 | CONFIG_P4080_DS=y | 28 | CONFIG_P4080_DS=y |
27 | CONFIG_P5020_DS=y | 29 | CONFIG_P5020_DS=y |
28 | CONFIG_HIGHMEM=y | 30 | CONFIG_HIGHMEM=y |
29 | CONFIG_NO_HZ=y | ||
30 | CONFIG_HIGH_RES_TIMERS=y | ||
31 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set | 31 | # CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set |
32 | CONFIG_BINFMT_MISC=m | 32 | CONFIG_BINFMT_MISC=m |
33 | CONFIG_KEXEC=y | 33 | CONFIG_KEXEC=y |
34 | CONFIG_IRQ_ALL_CPUS=y | 34 | CONFIG_IRQ_ALL_CPUS=y |
35 | CONFIG_FORCE_MAX_ZONEORDER=13 | 35 | CONFIG_FORCE_MAX_ZONEORDER=13 |
36 | CONFIG_FSL_LBC=y | ||
37 | CONFIG_PCI=y | 36 | CONFIG_PCI=y |
38 | CONFIG_PCIEPORTBUS=y | 37 | CONFIG_PCIEPORTBUS=y |
39 | CONFIG_PCI_MSI=y | ||
40 | # CONFIG_PCIEASPM is not set | 38 | # CONFIG_PCIEASPM is not set |
39 | CONFIG_PCI_MSI=y | ||
41 | CONFIG_RAPIDIO=y | 40 | CONFIG_RAPIDIO=y |
42 | CONFIG_FSL_RIO=y | 41 | CONFIG_FSL_RIO=y |
43 | CONFIG_NET=y | 42 | CONFIG_NET=y |
@@ -70,6 +69,7 @@ CONFIG_INET_IPCOMP=y | |||
70 | CONFIG_IPV6=y | 69 | CONFIG_IPV6=y |
71 | CONFIG_IP_SCTP=m | 70 | CONFIG_IP_SCTP=m |
72 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 71 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
72 | CONFIG_DEVTMPFS=y | ||
73 | CONFIG_MTD=y | 73 | CONFIG_MTD=y |
74 | CONFIG_MTD_CMDLINE_PARTS=y | 74 | CONFIG_MTD_CMDLINE_PARTS=y |
75 | CONFIG_MTD_CHAR=y | 75 | CONFIG_MTD_CHAR=y |
@@ -77,17 +77,14 @@ CONFIG_MTD_BLOCK=y | |||
77 | CONFIG_MTD_CFI=y | 77 | CONFIG_MTD_CFI=y |
78 | CONFIG_MTD_CFI_AMDSTD=y | 78 | CONFIG_MTD_CFI_AMDSTD=y |
79 | CONFIG_MTD_PHYSMAP_OF=y | 79 | CONFIG_MTD_PHYSMAP_OF=y |
80 | CONFIG_MTD_M25P80=y | ||
80 | CONFIG_MTD_NAND=y | 81 | CONFIG_MTD_NAND=y |
81 | CONFIG_MTD_NAND_ECC=y | ||
82 | CONFIG_MTD_NAND_IDS=y | ||
83 | CONFIG_MTD_NAND_FSL_IFC=y | ||
84 | CONFIG_MTD_NAND_FSL_ELBC=y | 82 | CONFIG_MTD_NAND_FSL_ELBC=y |
85 | CONFIG_MTD_M25P80=y | 83 | CONFIG_MTD_NAND_FSL_IFC=y |
86 | CONFIG_PROC_DEVICETREE=y | 84 | CONFIG_PROC_DEVICETREE=y |
87 | CONFIG_BLK_DEV_LOOP=y | 85 | CONFIG_BLK_DEV_LOOP=y |
88 | CONFIG_BLK_DEV_RAM=y | 86 | CONFIG_BLK_DEV_RAM=y |
89 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 87 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
90 | CONFIG_MISC_DEVICES=y | ||
91 | CONFIG_BLK_DEV_SD=y | 88 | CONFIG_BLK_DEV_SD=y |
92 | CONFIG_CHR_DEV_ST=y | 89 | CONFIG_CHR_DEV_ST=y |
93 | CONFIG_BLK_DEV_SR=y | 90 | CONFIG_BLK_DEV_SR=y |
@@ -115,11 +112,9 @@ CONFIG_SERIO_LIBPS2=y | |||
115 | CONFIG_PPC_EPAPR_HV_BYTECHAN=y | 112 | CONFIG_PPC_EPAPR_HV_BYTECHAN=y |
116 | CONFIG_SERIAL_8250=y | 113 | CONFIG_SERIAL_8250=y |
117 | CONFIG_SERIAL_8250_CONSOLE=y | 114 | CONFIG_SERIAL_8250_CONSOLE=y |
118 | CONFIG_SERIAL_8250_EXTENDED=y | ||
119 | CONFIG_SERIAL_8250_MANY_PORTS=y | 115 | CONFIG_SERIAL_8250_MANY_PORTS=y |
120 | CONFIG_SERIAL_8250_DETECT_IRQ=y | 116 | CONFIG_SERIAL_8250_DETECT_IRQ=y |
121 | CONFIG_SERIAL_8250_RSA=y | 117 | CONFIG_SERIAL_8250_RSA=y |
122 | CONFIG_HW_RANDOM=y | ||
123 | CONFIG_NVRAM=y | 118 | CONFIG_NVRAM=y |
124 | CONFIG_I2C=y | 119 | CONFIG_I2C=y |
125 | CONFIG_I2C_CHARDEV=y | 120 | CONFIG_I2C_CHARDEV=y |
@@ -132,7 +127,6 @@ CONFIG_SPI_FSL_ESPI=y | |||
132 | CONFIG_VIDEO_OUTPUT_CONTROL=y | 127 | CONFIG_VIDEO_OUTPUT_CONTROL=y |
133 | CONFIG_USB_HID=m | 128 | CONFIG_USB_HID=m |
134 | CONFIG_USB=y | 129 | CONFIG_USB=y |
135 | CONFIG_USB_DEVICEFS=y | ||
136 | CONFIG_USB_MON=y | 130 | CONFIG_USB_MON=y |
137 | CONFIG_USB_EHCI_HCD=y | 131 | CONFIG_USB_EHCI_HCD=y |
138 | CONFIG_USB_EHCI_FSL=y | 132 | CONFIG_USB_EHCI_FSL=y |
@@ -142,8 +136,6 @@ CONFIG_USB_OHCI_HCD_PPC_OF_LE=y | |||
142 | CONFIG_USB_STORAGE=y | 136 | CONFIG_USB_STORAGE=y |
143 | CONFIG_MMC=y | 137 | CONFIG_MMC=y |
144 | CONFIG_MMC_SDHCI=y | 138 | CONFIG_MMC_SDHCI=y |
145 | CONFIG_MMC_SDHCI_OF=y | ||
146 | CONFIG_MMC_SDHCI_OF_ESDHC=y | ||
147 | CONFIG_EDAC=y | 139 | CONFIG_EDAC=y |
148 | CONFIG_EDAC_MM_EDAC=y | 140 | CONFIG_EDAC_MM_EDAC=y |
149 | CONFIG_EDAC_MPC85XX=y | 141 | CONFIG_EDAC_MPC85XX=y |
@@ -170,19 +162,16 @@ CONFIG_HUGETLBFS=y | |||
170 | CONFIG_JFFS2_FS=y | 162 | CONFIG_JFFS2_FS=y |
171 | CONFIG_CRAMFS=y | 163 | CONFIG_CRAMFS=y |
172 | CONFIG_NFS_FS=y | 164 | CONFIG_NFS_FS=y |
173 | CONFIG_NFS_V3=y | ||
174 | CONFIG_NFS_V4=y | 165 | CONFIG_NFS_V4=y |
175 | CONFIG_ROOT_NFS=y | 166 | CONFIG_ROOT_NFS=y |
176 | CONFIG_NFSD=m | 167 | CONFIG_NFSD=m |
177 | CONFIG_PARTITION_ADVANCED=y | ||
178 | CONFIG_MAC_PARTITION=y | ||
179 | CONFIG_NLS_ISO8859_1=y | 168 | CONFIG_NLS_ISO8859_1=y |
180 | CONFIG_NLS_UTF8=m | 169 | CONFIG_NLS_UTF8=m |
181 | CONFIG_MAGIC_SYSRQ=y | 170 | CONFIG_MAGIC_SYSRQ=y |
182 | CONFIG_DEBUG_SHIRQ=y | 171 | CONFIG_DEBUG_SHIRQ=y |
183 | CONFIG_DETECT_HUNG_TASK=y | 172 | CONFIG_DETECT_HUNG_TASK=y |
184 | CONFIG_DEBUG_INFO=y | 173 | CONFIG_DEBUG_INFO=y |
185 | CONFIG_SYSCTL_SYSCALL_CHECK=y | 174 | CONFIG_RCU_TRACE=y |
186 | CONFIG_CRYPTO_NULL=y | 175 | CONFIG_CRYPTO_NULL=y |
187 | CONFIG_CRYPTO_PCBC=m | 176 | CONFIG_CRYPTO_PCBC=m |
188 | CONFIG_CRYPTO_MD4=y | 177 | CONFIG_CRYPTO_MD4=y |
diff --git a/arch/powerpc/configs/corenet64_smp_defconfig b/arch/powerpc/configs/corenet64_smp_defconfig index dd89de8b0b7f..0516e22ca3de 100644 --- a/arch/powerpc/configs/corenet64_smp_defconfig +++ b/arch/powerpc/configs/corenet64_smp_defconfig | |||
@@ -56,6 +56,7 @@ CONFIG_INET_ESP=y | |||
56 | CONFIG_IPV6=y | 56 | CONFIG_IPV6=y |
57 | CONFIG_IP_SCTP=m | 57 | CONFIG_IP_SCTP=m |
58 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 58 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
59 | CONFIG_DEVTMPFS=y | ||
59 | CONFIG_MTD=y | 60 | CONFIG_MTD=y |
60 | CONFIG_MTD_CMDLINE_PARTS=y | 61 | CONFIG_MTD_CMDLINE_PARTS=y |
61 | CONFIG_MTD_CHAR=y | 62 | CONFIG_MTD_CHAR=y |
diff --git a/arch/powerpc/configs/g5_defconfig b/arch/powerpc/configs/g5_defconfig index 15130066e5e2..07b7f2af2dca 100644 --- a/arch/powerpc/configs/g5_defconfig +++ b/arch/powerpc/configs/g5_defconfig | |||
@@ -1,8 +1,10 @@ | |||
1 | CONFIG_PPC64=y | ||
2 | CONFIG_ALTIVEC=y | ||
3 | CONFIG_SMP=y | ||
4 | CONFIG_NR_CPUS=4 | ||
1 | CONFIG_EXPERIMENTAL=y | 5 | CONFIG_EXPERIMENTAL=y |
2 | CONFIG_SYSVIPC=y | 6 | CONFIG_SYSVIPC=y |
3 | CONFIG_POSIX_MQUEUE=y | 7 | CONFIG_POSIX_MQUEUE=y |
4 | CONFIG_NO_HZ=y | ||
5 | CONFIG_HIGH_RES_TIMERS=y | ||
6 | CONFIG_IKCONFIG=y | 8 | CONFIG_IKCONFIG=y |
7 | CONFIG_IKCONFIG_PROC=y | 9 | CONFIG_IKCONFIG_PROC=y |
8 | CONFIG_BLK_DEV_INITRD=y | 10 | CONFIG_BLK_DEV_INITRD=y |
@@ -13,15 +15,16 @@ CONFIG_MODULES=y | |||
13 | CONFIG_MODULE_UNLOAD=y | 15 | CONFIG_MODULE_UNLOAD=y |
14 | CONFIG_MODVERSIONS=y | 16 | CONFIG_MODVERSIONS=y |
15 | CONFIG_MODULE_SRCVERSION_ALL=y | 17 | CONFIG_MODULE_SRCVERSION_ALL=y |
16 | CONFIG_PARTITION_ADVANCED=y | 18 | # CONFIG_PPC_PSERIES is not set |
17 | CONFIG_MAC_PARTITION=y | ||
18 | CONFIG_SMP=y | ||
19 | CONFIG_NR_CPUS=4 | ||
20 | CONFIG_KEXEC=y | ||
21 | # CONFIG_RELOCATABLE is not set | ||
22 | CONFIG_CPU_FREQ=y | 19 | CONFIG_CPU_FREQ=y |
23 | CONFIG_CPU_FREQ_GOV_POWERSAVE=y | 20 | CONFIG_CPU_FREQ_GOV_POWERSAVE=y |
24 | CONFIG_CPU_FREQ_GOV_USERSPACE=y | 21 | CONFIG_CPU_FREQ_GOV_USERSPACE=y |
22 | CONFIG_CPU_FREQ_PMAC64=y | ||
23 | CONFIG_NO_HZ=y | ||
24 | CONFIG_HIGH_RES_TIMERS=y | ||
25 | CONFIG_KEXEC=y | ||
26 | CONFIG_IRQ_ALL_CPUS=y | ||
27 | # CONFIG_MIGRATION is not set | ||
25 | CONFIG_PCI_MSI=y | 28 | CONFIG_PCI_MSI=y |
26 | CONFIG_NET=y | 29 | CONFIG_NET=y |
27 | CONFIG_PACKET=y | 30 | CONFIG_PACKET=y |
@@ -49,6 +52,7 @@ CONFIG_NF_CT_NETLINK=m | |||
49 | CONFIG_NF_CONNTRACK_IPV4=m | 52 | CONFIG_NF_CONNTRACK_IPV4=m |
50 | CONFIG_IP_NF_QUEUE=m | 53 | CONFIG_IP_NF_QUEUE=m |
51 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 54 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
55 | CONFIG_PROC_DEVICETREE=y | ||
52 | CONFIG_BLK_DEV_LOOP=y | 56 | CONFIG_BLK_DEV_LOOP=y |
53 | CONFIG_BLK_DEV_NBD=m | 57 | CONFIG_BLK_DEV_NBD=m |
54 | CONFIG_BLK_DEV_RAM=y | 58 | CONFIG_BLK_DEV_RAM=y |
@@ -56,6 +60,8 @@ CONFIG_BLK_DEV_RAM_SIZE=65536 | |||
56 | CONFIG_CDROM_PKTCDVD=m | 60 | CONFIG_CDROM_PKTCDVD=m |
57 | CONFIG_IDE=y | 61 | CONFIG_IDE=y |
58 | CONFIG_BLK_DEV_IDECD=y | 62 | CONFIG_BLK_DEV_IDECD=y |
63 | CONFIG_BLK_DEV_IDE_PMAC=y | ||
64 | CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y | ||
59 | CONFIG_BLK_DEV_SD=y | 65 | CONFIG_BLK_DEV_SD=y |
60 | CONFIG_CHR_DEV_ST=y | 66 | CONFIG_CHR_DEV_ST=y |
61 | CONFIG_BLK_DEV_SR=y | 67 | CONFIG_BLK_DEV_SR=y |
@@ -79,24 +85,33 @@ CONFIG_DM_CRYPT=m | |||
79 | CONFIG_DM_SNAPSHOT=m | 85 | CONFIG_DM_SNAPSHOT=m |
80 | CONFIG_DM_MIRROR=m | 86 | CONFIG_DM_MIRROR=m |
81 | CONFIG_DM_ZERO=m | 87 | CONFIG_DM_ZERO=m |
82 | CONFIG_MACINTOSH_DRIVERS=y | 88 | CONFIG_IEEE1394=y |
89 | CONFIG_IEEE1394_OHCI1394=y | ||
90 | CONFIG_IEEE1394_SBP2=m | ||
91 | CONFIG_IEEE1394_ETH1394=m | ||
92 | CONFIG_IEEE1394_RAWIO=y | ||
93 | CONFIG_IEEE1394_VIDEO1394=m | ||
94 | CONFIG_IEEE1394_DV1394=m | ||
95 | CONFIG_ADB_PMU=y | ||
96 | CONFIG_PMAC_SMU=y | ||
83 | CONFIG_MAC_EMUMOUSEBTN=y | 97 | CONFIG_MAC_EMUMOUSEBTN=y |
98 | CONFIG_THERM_PM72=y | ||
99 | CONFIG_WINDFARM=y | ||
100 | CONFIG_WINDFARM_PM81=y | ||
101 | CONFIG_WINDFARM_PM91=y | ||
102 | CONFIG_WINDFARM_PM112=y | ||
103 | CONFIG_WINDFARM_PM121=y | ||
84 | CONFIG_NETDEVICES=y | 104 | CONFIG_NETDEVICES=y |
85 | CONFIG_BONDING=m | ||
86 | CONFIG_DUMMY=m | 105 | CONFIG_DUMMY=m |
87 | CONFIG_MII=y | 106 | CONFIG_BONDING=m |
88 | CONFIG_TUN=m | 107 | CONFIG_TUN=m |
108 | CONFIG_NET_ETHERNET=y | ||
109 | CONFIG_MII=y | ||
110 | CONFIG_SUNGEM=y | ||
89 | CONFIG_ACENIC=m | 111 | CONFIG_ACENIC=m |
90 | CONFIG_ACENIC_OMIT_TIGON_I=y | 112 | CONFIG_ACENIC_OMIT_TIGON_I=y |
91 | CONFIG_TIGON3=y | ||
92 | CONFIG_E1000=y | 113 | CONFIG_E1000=y |
93 | CONFIG_SUNGEM=y | 114 | CONFIG_TIGON3=y |
94 | CONFIG_PPP=m | ||
95 | CONFIG_PPP_BSDCOMP=m | ||
96 | CONFIG_PPP_DEFLATE=m | ||
97 | CONFIG_PPPOE=m | ||
98 | CONFIG_PPP_ASYNC=m | ||
99 | CONFIG_PPP_SYNC_TTY=m | ||
100 | CONFIG_USB_CATC=m | 115 | CONFIG_USB_CATC=m |
101 | CONFIG_USB_KAWETH=m | 116 | CONFIG_USB_KAWETH=m |
102 | CONFIG_USB_PEGASUS=m | 117 | CONFIG_USB_PEGASUS=m |
@@ -106,24 +121,36 @@ CONFIG_USB_USBNET=m | |||
106 | # CONFIG_USB_NET_NET1080 is not set | 121 | # CONFIG_USB_NET_NET1080 is not set |
107 | # CONFIG_USB_NET_CDC_SUBSET is not set | 122 | # CONFIG_USB_NET_CDC_SUBSET is not set |
108 | # CONFIG_USB_NET_ZAURUS is not set | 123 | # CONFIG_USB_NET_ZAURUS is not set |
124 | CONFIG_PPP=m | ||
125 | CONFIG_PPP_ASYNC=m | ||
126 | CONFIG_PPP_SYNC_TTY=m | ||
127 | CONFIG_PPP_DEFLATE=m | ||
128 | CONFIG_PPP_BSDCOMP=m | ||
129 | CONFIG_PPPOE=m | ||
109 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set | 130 | # CONFIG_INPUT_MOUSEDEV_PSAUX is not set |
110 | CONFIG_INPUT_JOYDEV=m | 131 | CONFIG_INPUT_JOYDEV=m |
111 | CONFIG_INPUT_EVDEV=y | 132 | CONFIG_INPUT_EVDEV=y |
133 | # CONFIG_KEYBOARD_ATKBD is not set | ||
112 | # CONFIG_MOUSE_PS2 is not set | 134 | # CONFIG_MOUSE_PS2 is not set |
135 | # CONFIG_SERIO_I8042 is not set | ||
113 | # CONFIG_SERIO_SERPORT is not set | 136 | # CONFIG_SERIO_SERPORT is not set |
114 | CONFIG_VT_HW_CONSOLE_BINDING=y | ||
115 | # CONFIG_HW_RANDOM is not set | 137 | # CONFIG_HW_RANDOM is not set |
116 | CONFIG_GEN_RTC=y | 138 | CONFIG_GEN_RTC=y |
117 | CONFIG_RAW_DRIVER=y | 139 | CONFIG_RAW_DRIVER=y |
118 | CONFIG_I2C_CHARDEV=y | 140 | CONFIG_I2C_CHARDEV=y |
119 | # CONFIG_HWMON is not set | 141 | # CONFIG_HWMON is not set |
120 | CONFIG_AGP=y | 142 | CONFIG_AGP=m |
121 | CONFIG_DRM=y | 143 | CONFIG_AGP_UNINORTH=m |
122 | CONFIG_DRM_NOUVEAU=y | ||
123 | CONFIG_VIDEO_OUTPUT_CONTROL=m | 144 | CONFIG_VIDEO_OUTPUT_CONTROL=m |
145 | CONFIG_FB=y | ||
124 | CONFIG_FIRMWARE_EDID=y | 146 | CONFIG_FIRMWARE_EDID=y |
125 | CONFIG_FB_TILEBLITTING=y | 147 | CONFIG_FB_TILEBLITTING=y |
148 | CONFIG_FB_OF=y | ||
149 | CONFIG_FB_NVIDIA=y | ||
150 | CONFIG_FB_NVIDIA_I2C=y | ||
126 | CONFIG_FB_RADEON=y | 151 | CONFIG_FB_RADEON=y |
152 | # CONFIG_VGA_CONSOLE is not set | ||
153 | CONFIG_FRAMEBUFFER_CONSOLE=y | ||
127 | CONFIG_LOGO=y | 154 | CONFIG_LOGO=y |
128 | CONFIG_SOUND=m | 155 | CONFIG_SOUND=m |
129 | CONFIG_SND=m | 156 | CONFIG_SND=m |
@@ -131,7 +158,15 @@ CONFIG_SND_SEQUENCER=m | |||
131 | CONFIG_SND_MIXER_OSS=m | 158 | CONFIG_SND_MIXER_OSS=m |
132 | CONFIG_SND_PCM_OSS=m | 159 | CONFIG_SND_PCM_OSS=m |
133 | CONFIG_SND_SEQUENCER_OSS=y | 160 | CONFIG_SND_SEQUENCER_OSS=y |
161 | CONFIG_SND_POWERMAC=m | ||
162 | CONFIG_SND_AOA=m | ||
163 | CONFIG_SND_AOA_FABRIC_LAYOUT=m | ||
164 | CONFIG_SND_AOA_ONYX=m | ||
165 | CONFIG_SND_AOA_TAS=m | ||
166 | CONFIG_SND_AOA_TOONIE=m | ||
134 | CONFIG_SND_USB_AUDIO=m | 167 | CONFIG_SND_USB_AUDIO=m |
168 | CONFIG_HID_PID=y | ||
169 | CONFIG_USB_HIDDEV=y | ||
135 | CONFIG_HID_GYRATION=y | 170 | CONFIG_HID_GYRATION=y |
136 | CONFIG_LOGITECH_FF=y | 171 | CONFIG_LOGITECH_FF=y |
137 | CONFIG_HID_PANTHERLORD=y | 172 | CONFIG_HID_PANTHERLORD=y |
@@ -139,12 +174,13 @@ CONFIG_HID_PETALYNX=y | |||
139 | CONFIG_HID_SAMSUNG=y | 174 | CONFIG_HID_SAMSUNG=y |
140 | CONFIG_HID_SONY=y | 175 | CONFIG_HID_SONY=y |
141 | CONFIG_HID_SUNPLUS=y | 176 | CONFIG_HID_SUNPLUS=y |
142 | CONFIG_HID_PID=y | ||
143 | CONFIG_USB_HIDDEV=y | ||
144 | CONFIG_USB=y | 177 | CONFIG_USB=y |
178 | CONFIG_USB_DEVICEFS=y | ||
145 | CONFIG_USB_MON=y | 179 | CONFIG_USB_MON=y |
146 | CONFIG_USB_EHCI_HCD=y | 180 | CONFIG_USB_EHCI_HCD=y |
181 | # CONFIG_USB_EHCI_HCD_PPC_OF is not set | ||
147 | CONFIG_USB_OHCI_HCD=y | 182 | CONFIG_USB_OHCI_HCD=y |
183 | CONFIG_USB_OHCI_HCD_PPC_OF_BE=y | ||
148 | CONFIG_USB_ACM=m | 184 | CONFIG_USB_ACM=m |
149 | CONFIG_USB_PRINTER=y | 185 | CONFIG_USB_PRINTER=y |
150 | CONFIG_USB_STORAGE=y | 186 | CONFIG_USB_STORAGE=y |
@@ -208,6 +244,8 @@ CONFIG_REISERFS_FS_POSIX_ACL=y | |||
208 | CONFIG_REISERFS_FS_SECURITY=y | 244 | CONFIG_REISERFS_FS_SECURITY=y |
209 | CONFIG_XFS_FS=m | 245 | CONFIG_XFS_FS=m |
210 | CONFIG_XFS_POSIX_ACL=y | 246 | CONFIG_XFS_POSIX_ACL=y |
247 | CONFIG_INOTIFY=y | ||
248 | CONFIG_AUTOFS_FS=m | ||
211 | CONFIG_ISO9660_FS=y | 249 | CONFIG_ISO9660_FS=y |
212 | CONFIG_JOLIET=y | 250 | CONFIG_JOLIET=y |
213 | CONFIG_ZISOFS=y | 251 | CONFIG_ZISOFS=y |
@@ -221,12 +259,14 @@ CONFIG_HFS_FS=m | |||
221 | CONFIG_HFSPLUS_FS=m | 259 | CONFIG_HFSPLUS_FS=m |
222 | CONFIG_CRAMFS=y | 260 | CONFIG_CRAMFS=y |
223 | CONFIG_NFS_FS=y | 261 | CONFIG_NFS_FS=y |
262 | CONFIG_NFS_V3=y | ||
224 | CONFIG_NFS_V3_ACL=y | 263 | CONFIG_NFS_V3_ACL=y |
225 | CONFIG_NFS_V4=y | 264 | CONFIG_NFS_V4=y |
226 | CONFIG_NFSD=y | 265 | CONFIG_NFSD=y |
227 | CONFIG_NFSD_V3_ACL=y | 266 | CONFIG_NFSD_V3_ACL=y |
228 | CONFIG_NFSD_V4=y | 267 | CONFIG_NFSD_V4=y |
229 | CONFIG_CIFS=m | 268 | CONFIG_CIFS=m |
269 | CONFIG_PARTITION_ADVANCED=y | ||
230 | CONFIG_NLS_CODEPAGE_437=y | 270 | CONFIG_NLS_CODEPAGE_437=y |
231 | CONFIG_NLS_CODEPAGE_1250=y | 271 | CONFIG_NLS_CODEPAGE_1250=y |
232 | CONFIG_NLS_CODEPAGE_1251=y | 272 | CONFIG_NLS_CODEPAGE_1251=y |
@@ -234,23 +274,29 @@ CONFIG_NLS_ASCII=y | |||
234 | CONFIG_NLS_ISO8859_1=y | 274 | CONFIG_NLS_ISO8859_1=y |
235 | CONFIG_NLS_ISO8859_15=y | 275 | CONFIG_NLS_ISO8859_15=y |
236 | CONFIG_NLS_UTF8=y | 276 | CONFIG_NLS_UTF8=y |
277 | CONFIG_CRC_T10DIF=y | ||
278 | CONFIG_LIBCRC32C=m | ||
237 | CONFIG_MAGIC_SYSRQ=y | 279 | CONFIG_MAGIC_SYSRQ=y |
238 | # CONFIG_UNUSED_SYMBOLS is not set | ||
239 | CONFIG_DEBUG_FS=y | 280 | CONFIG_DEBUG_FS=y |
240 | CONFIG_DEBUG_KERNEL=y | 281 | CONFIG_DEBUG_KERNEL=y |
241 | CONFIG_DEBUG_MUTEXES=y | 282 | CONFIG_DEBUG_MUTEXES=y |
283 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
242 | CONFIG_LATENCYTOP=y | 284 | CONFIG_LATENCYTOP=y |
243 | CONFIG_STRICT_DEVMEM=y | 285 | CONFIG_SYSCTL_SYSCALL_CHECK=y |
286 | CONFIG_BOOTX_TEXT=y | ||
244 | CONFIG_CRYPTO_NULL=m | 287 | CONFIG_CRYPTO_NULL=m |
245 | CONFIG_CRYPTO_TEST=m | 288 | CONFIG_CRYPTO_TEST=m |
289 | CONFIG_CRYPTO_ECB=m | ||
246 | CONFIG_CRYPTO_PCBC=m | 290 | CONFIG_CRYPTO_PCBC=m |
247 | CONFIG_CRYPTO_HMAC=y | 291 | CONFIG_CRYPTO_HMAC=y |
292 | CONFIG_CRYPTO_MD4=m | ||
248 | CONFIG_CRYPTO_MICHAEL_MIC=m | 293 | CONFIG_CRYPTO_MICHAEL_MIC=m |
249 | CONFIG_CRYPTO_SHA256=m | 294 | CONFIG_CRYPTO_SHA256=m |
250 | CONFIG_CRYPTO_SHA512=m | 295 | CONFIG_CRYPTO_SHA512=m |
251 | CONFIG_CRYPTO_WP512=m | 296 | CONFIG_CRYPTO_WP512=m |
252 | CONFIG_CRYPTO_AES=m | 297 | CONFIG_CRYPTO_AES=m |
253 | CONFIG_CRYPTO_ANUBIS=m | 298 | CONFIG_CRYPTO_ANUBIS=m |
299 | CONFIG_CRYPTO_ARC4=m | ||
254 | CONFIG_CRYPTO_BLOWFISH=m | 300 | CONFIG_CRYPTO_BLOWFISH=m |
255 | CONFIG_CRYPTO_CAST5=m | 301 | CONFIG_CRYPTO_CAST5=m |
256 | CONFIG_CRYPTO_CAST6=m | 302 | CONFIG_CRYPTO_CAST6=m |
@@ -260,6 +306,3 @@ CONFIG_CRYPTO_TEA=m | |||
260 | CONFIG_CRYPTO_TWOFISH=m | 306 | CONFIG_CRYPTO_TWOFISH=m |
261 | # CONFIG_CRYPTO_ANSI_CPRNG is not set | 307 | # CONFIG_CRYPTO_ANSI_CPRNG is not set |
262 | # CONFIG_CRYPTO_HW is not set | 308 | # CONFIG_CRYPTO_HW is not set |
263 | # CONFIG_VIRTUALIZATION is not set | ||
264 | CONFIG_CRC_T10DIF=y | ||
265 | CONFIG_LIBCRC32C=m | ||
diff --git a/arch/powerpc/configs/mpc83xx_defconfig b/arch/powerpc/configs/mpc83xx_defconfig index 5aac9a8bc53b..9352e4430c3b 100644 --- a/arch/powerpc/configs/mpc83xx_defconfig +++ b/arch/powerpc/configs/mpc83xx_defconfig | |||
@@ -2,12 +2,12 @@ CONFIG_EXPERIMENTAL=y | |||
2 | CONFIG_SYSVIPC=y | 2 | CONFIG_SYSVIPC=y |
3 | CONFIG_LOG_BUF_SHIFT=14 | 3 | CONFIG_LOG_BUF_SHIFT=14 |
4 | CONFIG_BLK_DEV_INITRD=y | 4 | CONFIG_BLK_DEV_INITRD=y |
5 | # CONFIG_CC_OPTIMIZE_FOR_SIZE is not set | ||
6 | CONFIG_EXPERT=y | 5 | CONFIG_EXPERT=y |
7 | CONFIG_SLAB=y | 6 | CONFIG_SLAB=y |
8 | CONFIG_MODULES=y | 7 | CONFIG_MODULES=y |
9 | CONFIG_MODULE_UNLOAD=y | 8 | CONFIG_MODULE_UNLOAD=y |
10 | # CONFIG_BLK_DEV_BSG is not set | 9 | # CONFIG_BLK_DEV_BSG is not set |
10 | CONFIG_PARTITION_ADVANCED=y | ||
11 | # CONFIG_PPC_CHRP is not set | 11 | # CONFIG_PPC_CHRP is not set |
12 | # CONFIG_PPC_PMAC is not set | 12 | # CONFIG_PPC_PMAC is not set |
13 | CONFIG_PPC_83xx=y | 13 | CONFIG_PPC_83xx=y |
@@ -25,7 +25,6 @@ CONFIG_ASP834x=y | |||
25 | CONFIG_QUICC_ENGINE=y | 25 | CONFIG_QUICC_ENGINE=y |
26 | CONFIG_QE_GPIO=y | 26 | CONFIG_QE_GPIO=y |
27 | CONFIG_MATH_EMULATION=y | 27 | CONFIG_MATH_EMULATION=y |
28 | CONFIG_SPARSE_IRQ=y | ||
29 | CONFIG_PCI=y | 28 | CONFIG_PCI=y |
30 | CONFIG_NET=y | 29 | CONFIG_NET=y |
31 | CONFIG_PACKET=y | 30 | CONFIG_PACKET=y |
@@ -42,10 +41,9 @@ CONFIG_INET_ESP=y | |||
42 | # CONFIG_INET_LRO is not set | 41 | # CONFIG_INET_LRO is not set |
43 | # CONFIG_IPV6 is not set | 42 | # CONFIG_IPV6 is not set |
44 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 43 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
44 | CONFIG_DEVTMPFS=y | ||
45 | # CONFIG_FW_LOADER is not set | 45 | # CONFIG_FW_LOADER is not set |
46 | CONFIG_MTD=y | 46 | CONFIG_MTD=y |
47 | CONFIG_MTD_PARTITIONS=y | ||
48 | CONFIG_MTD_OF_PARTS=y | ||
49 | CONFIG_MTD_CHAR=y | 47 | CONFIG_MTD_CHAR=y |
50 | CONFIG_MTD_BLOCK=y | 48 | CONFIG_MTD_BLOCK=y |
51 | CONFIG_MTD_CFI=y | 49 | CONFIG_MTD_CFI=y |
@@ -64,15 +62,14 @@ CONFIG_ATA=y | |||
64 | CONFIG_SATA_FSL=y | 62 | CONFIG_SATA_FSL=y |
65 | CONFIG_SATA_SIL=y | 63 | CONFIG_SATA_SIL=y |
66 | CONFIG_NETDEVICES=y | 64 | CONFIG_NETDEVICES=y |
65 | CONFIG_MII=y | ||
66 | CONFIG_UCC_GETH=y | ||
67 | CONFIG_GIANFAR=y | ||
67 | CONFIG_MARVELL_PHY=y | 68 | CONFIG_MARVELL_PHY=y |
68 | CONFIG_DAVICOM_PHY=y | 69 | CONFIG_DAVICOM_PHY=y |
69 | CONFIG_VITESSE_PHY=y | 70 | CONFIG_VITESSE_PHY=y |
70 | CONFIG_ICPLUS_PHY=y | 71 | CONFIG_ICPLUS_PHY=y |
71 | CONFIG_FIXED_PHY=y | 72 | CONFIG_FIXED_PHY=y |
72 | CONFIG_NET_ETHERNET=y | ||
73 | CONFIG_MII=y | ||
74 | CONFIG_GIANFAR=y | ||
75 | CONFIG_UCC_GETH=y | ||
76 | CONFIG_INPUT_FF_MEMLESS=m | 73 | CONFIG_INPUT_FF_MEMLESS=m |
77 | # CONFIG_INPUT_MOUSEDEV is not set | 74 | # CONFIG_INPUT_MOUSEDEV is not set |
78 | # CONFIG_INPUT_KEYBOARD is not set | 75 | # CONFIG_INPUT_KEYBOARD is not set |
@@ -112,17 +109,12 @@ CONFIG_RTC_DRV_DS1374=y | |||
112 | CONFIG_EXT2_FS=y | 109 | CONFIG_EXT2_FS=y |
113 | CONFIG_EXT3_FS=y | 110 | CONFIG_EXT3_FS=y |
114 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set | 111 | # CONFIG_EXT3_DEFAULTS_TO_ORDERED is not set |
115 | CONFIG_INOTIFY=y | ||
116 | CONFIG_PROC_KCORE=y | 112 | CONFIG_PROC_KCORE=y |
117 | CONFIG_TMPFS=y | 113 | CONFIG_TMPFS=y |
118 | CONFIG_NFS_FS=y | 114 | CONFIG_NFS_FS=y |
119 | CONFIG_NFS_V3=y | ||
120 | CONFIG_NFS_V4=y | 115 | CONFIG_NFS_V4=y |
121 | CONFIG_ROOT_NFS=y | 116 | CONFIG_ROOT_NFS=y |
122 | CONFIG_PARTITION_ADVANCED=y | ||
123 | CONFIG_CRC_T10DIF=y | 117 | CONFIG_CRC_T10DIF=y |
124 | # CONFIG_RCU_CPU_STALL_DETECTOR is not set | ||
125 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
126 | CONFIG_CRYPTO_ECB=m | 118 | CONFIG_CRYPTO_ECB=m |
127 | CONFIG_CRYPTO_PCBC=m | 119 | CONFIG_CRYPTO_PCBC=m |
128 | CONFIG_CRYPTO_SHA256=y | 120 | CONFIG_CRYPTO_SHA256=y |
diff --git a/arch/powerpc/configs/mpc85xx_defconfig b/arch/powerpc/configs/mpc85xx_defconfig index 03ee911c4577..8b5bda27d248 100644 --- a/arch/powerpc/configs/mpc85xx_defconfig +++ b/arch/powerpc/configs/mpc85xx_defconfig | |||
@@ -5,7 +5,9 @@ CONFIG_SYSVIPC=y | |||
5 | CONFIG_POSIX_MQUEUE=y | 5 | CONFIG_POSIX_MQUEUE=y |
6 | CONFIG_BSD_PROCESS_ACCT=y | 6 | CONFIG_BSD_PROCESS_ACCT=y |
7 | CONFIG_AUDIT=y | 7 | CONFIG_AUDIT=y |
8 | CONFIG_SPARSE_IRQ=y | 8 | CONFIG_IRQ_DOMAIN_DEBUG=y |
9 | CONFIG_NO_HZ=y | ||
10 | CONFIG_HIGH_RES_TIMERS=y | ||
9 | CONFIG_IKCONFIG=y | 11 | CONFIG_IKCONFIG=y |
10 | CONFIG_IKCONFIG_PROC=y | 12 | CONFIG_IKCONFIG_PROC=y |
11 | CONFIG_LOG_BUF_SHIFT=14 | 13 | CONFIG_LOG_BUF_SHIFT=14 |
@@ -17,6 +19,8 @@ CONFIG_MODULE_UNLOAD=y | |||
17 | CONFIG_MODULE_FORCE_UNLOAD=y | 19 | CONFIG_MODULE_FORCE_UNLOAD=y |
18 | CONFIG_MODVERSIONS=y | 20 | CONFIG_MODVERSIONS=y |
19 | # CONFIG_BLK_DEV_BSG is not set | 21 | # CONFIG_BLK_DEV_BSG is not set |
22 | CONFIG_PARTITION_ADVANCED=y | ||
23 | CONFIG_MAC_PARTITION=y | ||
20 | CONFIG_MPC8540_ADS=y | 24 | CONFIG_MPC8540_ADS=y |
21 | CONFIG_MPC8560_ADS=y | 25 | CONFIG_MPC8560_ADS=y |
22 | CONFIG_MPC85xx_CDS=y | 26 | CONFIG_MPC85xx_CDS=y |
@@ -40,8 +44,6 @@ CONFIG_SBC8548=y | |||
40 | CONFIG_QUICC_ENGINE=y | 44 | CONFIG_QUICC_ENGINE=y |
41 | CONFIG_QE_GPIO=y | 45 | CONFIG_QE_GPIO=y |
42 | CONFIG_HIGHMEM=y | 46 | CONFIG_HIGHMEM=y |
43 | CONFIG_NO_HZ=y | ||
44 | CONFIG_HIGH_RES_TIMERS=y | ||
45 | CONFIG_BINFMT_MISC=m | 47 | CONFIG_BINFMT_MISC=m |
46 | CONFIG_MATH_EMULATION=y | 48 | CONFIG_MATH_EMULATION=y |
47 | CONFIG_FORCE_MAX_ZONEORDER=12 | 49 | CONFIG_FORCE_MAX_ZONEORDER=12 |
@@ -74,36 +76,25 @@ CONFIG_INET_ESP=y | |||
74 | CONFIG_IPV6=y | 76 | CONFIG_IPV6=y |
75 | CONFIG_IP_SCTP=m | 77 | CONFIG_IP_SCTP=m |
76 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 78 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
79 | CONFIG_DEVTMPFS=y | ||
77 | CONFIG_MTD=y | 80 | CONFIG_MTD=y |
78 | CONFIG_MTD_CMDLINE_PARTS=y | 81 | CONFIG_MTD_CMDLINE_PARTS=y |
79 | CONFIG_MTD_CHAR=y | 82 | CONFIG_MTD_CHAR=y |
80 | CONFIG_MTD_BLOCK=y | 83 | CONFIG_MTD_BLOCK=y |
81 | CONFIG_MTD_CFI=y | ||
82 | CONFIG_FTL=y | 84 | CONFIG_FTL=y |
83 | CONFIG_MTD_GEN_PROBE=y | 85 | CONFIG_MTD_CFI=y |
84 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
85 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
86 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
87 | CONFIG_MTD_CFI_I1=y | ||
88 | CONFIG_MTD_CFI_I2=y | ||
89 | CONFIG_MTD_CFI_INTELEXT=y | 86 | CONFIG_MTD_CFI_INTELEXT=y |
90 | CONFIG_MTD_CFI_AMDSTD=y | 87 | CONFIG_MTD_CFI_AMDSTD=y |
91 | CONFIG_MTD_CFI_UTIL=y | ||
92 | CONFIG_MTD_PHYSMAP_OF=y | 88 | CONFIG_MTD_PHYSMAP_OF=y |
93 | CONFIG_MTD_PARTITIONS=y | 89 | CONFIG_MTD_M25P80=y |
94 | CONFIG_MTD_OF_PARTS=y | ||
95 | CONFIG_MTD_NAND=y | 90 | CONFIG_MTD_NAND=y |
96 | CONFIG_MTD_NAND_FSL_ELBC=y | 91 | CONFIG_MTD_NAND_FSL_ELBC=y |
97 | CONFIG_MTD_NAND_FSL_IFC=y | 92 | CONFIG_MTD_NAND_FSL_IFC=y |
98 | CONFIG_MTD_NAND_IDS=y | ||
99 | CONFIG_MTD_NAND_ECC=y | ||
100 | CONFIG_MTD_M25P80=y | ||
101 | CONFIG_PROC_DEVICETREE=y | 93 | CONFIG_PROC_DEVICETREE=y |
102 | CONFIG_BLK_DEV_LOOP=y | 94 | CONFIG_BLK_DEV_LOOP=y |
103 | CONFIG_BLK_DEV_NBD=y | 95 | CONFIG_BLK_DEV_NBD=y |
104 | CONFIG_BLK_DEV_RAM=y | 96 | CONFIG_BLK_DEV_RAM=y |
105 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 97 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
106 | CONFIG_MISC_DEVICES=y | ||
107 | CONFIG_EEPROM_LEGACY=y | 98 | CONFIG_EEPROM_LEGACY=y |
108 | CONFIG_BLK_DEV_SD=y | 99 | CONFIG_BLK_DEV_SD=y |
109 | CONFIG_CHR_DEV_ST=y | 100 | CONFIG_CHR_DEV_ST=y |
@@ -115,6 +106,7 @@ CONFIG_ATA=y | |||
115 | CONFIG_SATA_AHCI=y | 106 | CONFIG_SATA_AHCI=y |
116 | CONFIG_SATA_FSL=y | 107 | CONFIG_SATA_FSL=y |
117 | CONFIG_PATA_ALI=y | 108 | CONFIG_PATA_ALI=y |
109 | CONFIG_PATA_VIA=y | ||
118 | CONFIG_NETDEVICES=y | 110 | CONFIG_NETDEVICES=y |
119 | CONFIG_DUMMY=y | 111 | CONFIG_DUMMY=y |
120 | CONFIG_FS_ENET=y | 112 | CONFIG_FS_ENET=y |
@@ -134,7 +126,6 @@ CONFIG_SERIAL_8250=y | |||
134 | CONFIG_SERIAL_8250_CONSOLE=y | 126 | CONFIG_SERIAL_8250_CONSOLE=y |
135 | CONFIG_SERIAL_8250_NR_UARTS=2 | 127 | CONFIG_SERIAL_8250_NR_UARTS=2 |
136 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | 128 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 |
137 | CONFIG_SERIAL_8250_EXTENDED=y | ||
138 | CONFIG_SERIAL_8250_MANY_PORTS=y | 129 | CONFIG_SERIAL_8250_MANY_PORTS=y |
139 | CONFIG_SERIAL_8250_DETECT_IRQ=y | 130 | CONFIG_SERIAL_8250_DETECT_IRQ=y |
140 | CONFIG_SERIAL_8250_RSA=y | 131 | CONFIG_SERIAL_8250_RSA=y |
@@ -183,7 +174,6 @@ CONFIG_HID_SAMSUNG=y | |||
183 | CONFIG_HID_SONY=y | 174 | CONFIG_HID_SONY=y |
184 | CONFIG_HID_SUNPLUS=y | 175 | CONFIG_HID_SUNPLUS=y |
185 | CONFIG_USB=y | 176 | CONFIG_USB=y |
186 | CONFIG_USB_DEVICEFS=y | ||
187 | CONFIG_USB_MON=y | 177 | CONFIG_USB_MON=y |
188 | CONFIG_USB_EHCI_HCD=y | 178 | CONFIG_USB_EHCI_HCD=y |
189 | CONFIG_USB_EHCI_FSL=y | 179 | CONFIG_USB_EHCI_FSL=y |
@@ -229,18 +219,13 @@ CONFIG_QNX4FS_FS=m | |||
229 | CONFIG_SYSV_FS=m | 219 | CONFIG_SYSV_FS=m |
230 | CONFIG_UFS_FS=m | 220 | CONFIG_UFS_FS=m |
231 | CONFIG_NFS_FS=y | 221 | CONFIG_NFS_FS=y |
232 | CONFIG_NFS_V3=y | ||
233 | CONFIG_NFS_V4=y | 222 | CONFIG_NFS_V4=y |
234 | CONFIG_ROOT_NFS=y | 223 | CONFIG_ROOT_NFS=y |
235 | CONFIG_NFSD=y | 224 | CONFIG_NFSD=y |
236 | CONFIG_PARTITION_ADVANCED=y | ||
237 | CONFIG_MAC_PARTITION=y | ||
238 | CONFIG_CRC_T10DIF=y | 225 | CONFIG_CRC_T10DIF=y |
239 | CONFIG_DEBUG_FS=y | 226 | CONFIG_DEBUG_FS=y |
240 | CONFIG_DETECT_HUNG_TASK=y | 227 | CONFIG_DETECT_HUNG_TASK=y |
241 | CONFIG_DEBUG_INFO=y | 228 | CONFIG_DEBUG_INFO=y |
242 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
243 | CONFIG_IRQ_DOMAIN_DEBUG=y | ||
244 | CONFIG_CRYPTO_PCBC=m | 229 | CONFIG_CRYPTO_PCBC=m |
245 | CONFIG_CRYPTO_SHA256=y | 230 | CONFIG_CRYPTO_SHA256=y |
246 | CONFIG_CRYPTO_SHA512=y | 231 | CONFIG_CRYPTO_SHA512=y |
diff --git a/arch/powerpc/configs/mpc85xx_smp_defconfig b/arch/powerpc/configs/mpc85xx_smp_defconfig index fdfa84dc908f..b0974e7e98ae 100644 --- a/arch/powerpc/configs/mpc85xx_smp_defconfig +++ b/arch/powerpc/configs/mpc85xx_smp_defconfig | |||
@@ -7,7 +7,9 @@ CONFIG_SYSVIPC=y | |||
7 | CONFIG_POSIX_MQUEUE=y | 7 | CONFIG_POSIX_MQUEUE=y |
8 | CONFIG_BSD_PROCESS_ACCT=y | 8 | CONFIG_BSD_PROCESS_ACCT=y |
9 | CONFIG_AUDIT=y | 9 | CONFIG_AUDIT=y |
10 | CONFIG_SPARSE_IRQ=y | 10 | CONFIG_IRQ_DOMAIN_DEBUG=y |
11 | CONFIG_NO_HZ=y | ||
12 | CONFIG_HIGH_RES_TIMERS=y | ||
11 | CONFIG_IKCONFIG=y | 13 | CONFIG_IKCONFIG=y |
12 | CONFIG_IKCONFIG_PROC=y | 14 | CONFIG_IKCONFIG_PROC=y |
13 | CONFIG_LOG_BUF_SHIFT=14 | 15 | CONFIG_LOG_BUF_SHIFT=14 |
@@ -19,6 +21,8 @@ CONFIG_MODULE_UNLOAD=y | |||
19 | CONFIG_MODULE_FORCE_UNLOAD=y | 21 | CONFIG_MODULE_FORCE_UNLOAD=y |
20 | CONFIG_MODVERSIONS=y | 22 | CONFIG_MODVERSIONS=y |
21 | # CONFIG_BLK_DEV_BSG is not set | 23 | # CONFIG_BLK_DEV_BSG is not set |
24 | CONFIG_PARTITION_ADVANCED=y | ||
25 | CONFIG_MAC_PARTITION=y | ||
22 | CONFIG_MPC8540_ADS=y | 26 | CONFIG_MPC8540_ADS=y |
23 | CONFIG_MPC8560_ADS=y | 27 | CONFIG_MPC8560_ADS=y |
24 | CONFIG_MPC85xx_CDS=y | 28 | CONFIG_MPC85xx_CDS=y |
@@ -42,8 +46,6 @@ CONFIG_SBC8548=y | |||
42 | CONFIG_QUICC_ENGINE=y | 46 | CONFIG_QUICC_ENGINE=y |
43 | CONFIG_QE_GPIO=y | 47 | CONFIG_QE_GPIO=y |
44 | CONFIG_HIGHMEM=y | 48 | CONFIG_HIGHMEM=y |
45 | CONFIG_NO_HZ=y | ||
46 | CONFIG_HIGH_RES_TIMERS=y | ||
47 | CONFIG_BINFMT_MISC=m | 49 | CONFIG_BINFMT_MISC=m |
48 | CONFIG_MATH_EMULATION=y | 50 | CONFIG_MATH_EMULATION=y |
49 | CONFIG_IRQ_ALL_CPUS=y | 51 | CONFIG_IRQ_ALL_CPUS=y |
@@ -77,36 +79,25 @@ CONFIG_INET_ESP=y | |||
77 | CONFIG_IPV6=y | 79 | CONFIG_IPV6=y |
78 | CONFIG_IP_SCTP=m | 80 | CONFIG_IP_SCTP=m |
79 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" | 81 | CONFIG_UEVENT_HELPER_PATH="/sbin/hotplug" |
82 | CONFIG_DEVTMPFS=y | ||
80 | CONFIG_MTD=y | 83 | CONFIG_MTD=y |
81 | CONFIG_MTD_CMDLINE_PARTS=y | 84 | CONFIG_MTD_CMDLINE_PARTS=y |
82 | CONFIG_MTD_CHAR=y | 85 | CONFIG_MTD_CHAR=y |
83 | CONFIG_MTD_BLOCK=y | 86 | CONFIG_MTD_BLOCK=y |
84 | CONFIG_MTD_CFI=y | ||
85 | CONFIG_FTL=y | 87 | CONFIG_FTL=y |
86 | CONFIG_MTD_GEN_PROBE=y | 88 | CONFIG_MTD_CFI=y |
87 | CONFIG_MTD_MAP_BANK_WIDTH_1=y | ||
88 | CONFIG_MTD_MAP_BANK_WIDTH_2=y | ||
89 | CONFIG_MTD_MAP_BANK_WIDTH_4=y | ||
90 | CONFIG_MTD_CFI_I1=y | ||
91 | CONFIG_MTD_CFI_I2=y | ||
92 | CONFIG_MTD_CFI_INTELEXT=y | 89 | CONFIG_MTD_CFI_INTELEXT=y |
93 | CONFIG_MTD_CFI_AMDSTD=y | 90 | CONFIG_MTD_CFI_AMDSTD=y |
94 | CONFIG_MTD_CFI_UTIL=y | ||
95 | CONFIG_MTD_PHYSMAP_OF=y | 91 | CONFIG_MTD_PHYSMAP_OF=y |
96 | CONFIG_MTD_PARTITIONS=y | 92 | CONFIG_MTD_M25P80=y |
97 | CONFIG_MTD_OF_PARTS=y | ||
98 | CONFIG_MTD_NAND=y | 93 | CONFIG_MTD_NAND=y |
99 | CONFIG_MTD_NAND_FSL_ELBC=y | 94 | CONFIG_MTD_NAND_FSL_ELBC=y |
100 | CONFIG_MTD_NAND_FSL_IFC=y | 95 | CONFIG_MTD_NAND_FSL_IFC=y |
101 | CONFIG_MTD_NAND_IDS=y | ||
102 | CONFIG_MTD_NAND_ECC=y | ||
103 | CONFIG_MTD_M25P80=y | ||
104 | CONFIG_PROC_DEVICETREE=y | 96 | CONFIG_PROC_DEVICETREE=y |
105 | CONFIG_BLK_DEV_LOOP=y | 97 | CONFIG_BLK_DEV_LOOP=y |
106 | CONFIG_BLK_DEV_NBD=y | 98 | CONFIG_BLK_DEV_NBD=y |
107 | CONFIG_BLK_DEV_RAM=y | 99 | CONFIG_BLK_DEV_RAM=y |
108 | CONFIG_BLK_DEV_RAM_SIZE=131072 | 100 | CONFIG_BLK_DEV_RAM_SIZE=131072 |
109 | CONFIG_MISC_DEVICES=y | ||
110 | CONFIG_EEPROM_LEGACY=y | 101 | CONFIG_EEPROM_LEGACY=y |
111 | CONFIG_BLK_DEV_SD=y | 102 | CONFIG_BLK_DEV_SD=y |
112 | CONFIG_CHR_DEV_ST=y | 103 | CONFIG_CHR_DEV_ST=y |
@@ -137,7 +128,6 @@ CONFIG_SERIAL_8250=y | |||
137 | CONFIG_SERIAL_8250_CONSOLE=y | 128 | CONFIG_SERIAL_8250_CONSOLE=y |
138 | CONFIG_SERIAL_8250_NR_UARTS=2 | 129 | CONFIG_SERIAL_8250_NR_UARTS=2 |
139 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 | 130 | CONFIG_SERIAL_8250_RUNTIME_UARTS=2 |
140 | CONFIG_SERIAL_8250_EXTENDED=y | ||
141 | CONFIG_SERIAL_8250_MANY_PORTS=y | 131 | CONFIG_SERIAL_8250_MANY_PORTS=y |
142 | CONFIG_SERIAL_8250_DETECT_IRQ=y | 132 | CONFIG_SERIAL_8250_DETECT_IRQ=y |
143 | CONFIG_SERIAL_8250_RSA=y | 133 | CONFIG_SERIAL_8250_RSA=y |
@@ -186,7 +176,6 @@ CONFIG_HID_SAMSUNG=y | |||
186 | CONFIG_HID_SONY=y | 176 | CONFIG_HID_SONY=y |
187 | CONFIG_HID_SUNPLUS=y | 177 | CONFIG_HID_SUNPLUS=y |
188 | CONFIG_USB=y | 178 | CONFIG_USB=y |
189 | CONFIG_USB_DEVICEFS=y | ||
190 | CONFIG_USB_MON=y | 179 | CONFIG_USB_MON=y |
191 | CONFIG_USB_EHCI_HCD=y | 180 | CONFIG_USB_EHCI_HCD=y |
192 | CONFIG_USB_EHCI_FSL=y | 181 | CONFIG_USB_EHCI_FSL=y |
@@ -232,18 +221,13 @@ CONFIG_QNX4FS_FS=m | |||
232 | CONFIG_SYSV_FS=m | 221 | CONFIG_SYSV_FS=m |
233 | CONFIG_UFS_FS=m | 222 | CONFIG_UFS_FS=m |
234 | CONFIG_NFS_FS=y | 223 | CONFIG_NFS_FS=y |
235 | CONFIG_NFS_V3=y | ||
236 | CONFIG_NFS_V4=y | 224 | CONFIG_NFS_V4=y |
237 | CONFIG_ROOT_NFS=y | 225 | CONFIG_ROOT_NFS=y |
238 | CONFIG_NFSD=y | 226 | CONFIG_NFSD=y |
239 | CONFIG_PARTITION_ADVANCED=y | ||
240 | CONFIG_MAC_PARTITION=y | ||
241 | CONFIG_CRC_T10DIF=y | 227 | CONFIG_CRC_T10DIF=y |
242 | CONFIG_DEBUG_FS=y | 228 | CONFIG_DEBUG_FS=y |
243 | CONFIG_DETECT_HUNG_TASK=y | 229 | CONFIG_DETECT_HUNG_TASK=y |
244 | CONFIG_DEBUG_INFO=y | 230 | CONFIG_DEBUG_INFO=y |
245 | CONFIG_SYSCTL_SYSCALL_CHECK=y | ||
246 | CONFIG_IRQ_DOMAIN_DEBUG=y | ||
247 | CONFIG_CRYPTO_PCBC=m | 231 | CONFIG_CRYPTO_PCBC=m |
248 | CONFIG_CRYPTO_SHA256=y | 232 | CONFIG_CRYPTO_SHA256=y |
249 | CONFIG_CRYPTO_SHA512=y | 233 | CONFIG_CRYPTO_SHA512=y |
diff --git a/arch/powerpc/include/asm/cputable.h b/arch/powerpc/include/asm/cputable.h index 50d82c8a037f..b3c083de17ad 100644 --- a/arch/powerpc/include/asm/cputable.h +++ b/arch/powerpc/include/asm/cputable.h | |||
@@ -553,9 +553,7 @@ static inline int cpu_has_feature(unsigned long feature) | |||
553 | & feature); | 553 | & feature); |
554 | } | 554 | } |
555 | 555 | ||
556 | #ifdef CONFIG_HAVE_HW_BREAKPOINT | ||
557 | #define HBP_NUM 1 | 556 | #define HBP_NUM 1 |
558 | #endif /* CONFIG_HAVE_HW_BREAKPOINT */ | ||
559 | 557 | ||
560 | #endif /* !__ASSEMBLY__ */ | 558 | #endif /* !__ASSEMBLY__ */ |
561 | 559 | ||
diff --git a/arch/powerpc/include/asm/kvm_host.h b/arch/powerpc/include/asm/kvm_host.h index 50ea12fd7bf5..a8bf5c673a3c 100644 --- a/arch/powerpc/include/asm/kvm_host.h +++ b/arch/powerpc/include/asm/kvm_host.h | |||
@@ -33,6 +33,7 @@ | |||
33 | #include <asm/kvm_asm.h> | 33 | #include <asm/kvm_asm.h> |
34 | #include <asm/processor.h> | 34 | #include <asm/processor.h> |
35 | #include <asm/page.h> | 35 | #include <asm/page.h> |
36 | #include <asm/cacheflush.h> | ||
36 | 37 | ||
37 | #define KVM_MAX_VCPUS NR_CPUS | 38 | #define KVM_MAX_VCPUS NR_CPUS |
38 | #define KVM_MAX_VCORES NR_CPUS | 39 | #define KVM_MAX_VCORES NR_CPUS |
diff --git a/arch/powerpc/include/asm/kvm_ppc.h b/arch/powerpc/include/asm/kvm_ppc.h index 0124937a23b9..e006f0bdea95 100644 --- a/arch/powerpc/include/asm/kvm_ppc.h +++ b/arch/powerpc/include/asm/kvm_ppc.h | |||
@@ -219,4 +219,16 @@ void kvmppc_claim_lpid(long lpid); | |||
219 | void kvmppc_free_lpid(long lpid); | 219 | void kvmppc_free_lpid(long lpid); |
220 | void kvmppc_init_lpid(unsigned long nr_lpids); | 220 | void kvmppc_init_lpid(unsigned long nr_lpids); |
221 | 221 | ||
222 | static inline void kvmppc_mmu_flush_icache(pfn_t pfn) | ||
223 | { | ||
224 | /* Clear i-cache for new pages */ | ||
225 | struct page *page; | ||
226 | page = pfn_to_page(pfn); | ||
227 | if (!test_bit(PG_arch_1, &page->flags)) { | ||
228 | flush_dcache_icache_page(page); | ||
229 | set_bit(PG_arch_1, &page->flags); | ||
230 | } | ||
231 | } | ||
232 | |||
233 | |||
222 | #endif /* __POWERPC_KVM_PPC_H__ */ | 234 | #endif /* __POWERPC_KVM_PPC_H__ */ |
diff --git a/arch/powerpc/include/asm/mpic_msgr.h b/arch/powerpc/include/asm/mpic_msgr.h index 326d33ca55cd..d4f471fb1031 100644 --- a/arch/powerpc/include/asm/mpic_msgr.h +++ b/arch/powerpc/include/asm/mpic_msgr.h | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/types.h> | 14 | #include <linux/types.h> |
15 | #include <linux/spinlock.h> | 15 | #include <linux/spinlock.h> |
16 | #include <asm/smp.h> | 16 | #include <asm/smp.h> |
17 | #include <asm/io.h> | ||
17 | 18 | ||
18 | struct mpic_msgr { | 19 | struct mpic_msgr { |
19 | u32 __iomem *base; | 20 | u32 __iomem *base; |
diff --git a/arch/powerpc/kernel/dma-iommu.c b/arch/powerpc/kernel/dma-iommu.c index 2d7bb8ced136..e4897523de41 100644 --- a/arch/powerpc/kernel/dma-iommu.c +++ b/arch/powerpc/kernel/dma-iommu.c | |||
@@ -83,11 +83,10 @@ static int dma_iommu_dma_supported(struct device *dev, u64 mask) | |||
83 | return 0; | 83 | return 0; |
84 | } | 84 | } |
85 | 85 | ||
86 | if ((tbl->it_offset + tbl->it_size) > (mask >> IOMMU_PAGE_SHIFT)) { | 86 | if (tbl->it_offset > (mask >> IOMMU_PAGE_SHIFT)) { |
87 | dev_info(dev, "Warning: IOMMU window too big for device mask\n"); | 87 | dev_info(dev, "Warning: IOMMU offset too big for device mask\n"); |
88 | dev_info(dev, "mask: 0x%08llx, table end: 0x%08lx\n", | 88 | dev_info(dev, "mask: 0x%08llx, table offset: 0x%08lx\n", |
89 | mask, (tbl->it_offset + tbl->it_size) << | 89 | mask, tbl->it_offset << IOMMU_PAGE_SHIFT); |
90 | IOMMU_PAGE_SHIFT); | ||
91 | return 0; | 90 | return 0; |
92 | } else | 91 | } else |
93 | return 1; | 92 | return 1; |
diff --git a/arch/powerpc/kernel/hw_breakpoint.c b/arch/powerpc/kernel/hw_breakpoint.c index f3a82dde61db..956a4c496de9 100644 --- a/arch/powerpc/kernel/hw_breakpoint.c +++ b/arch/powerpc/kernel/hw_breakpoint.c | |||
@@ -253,7 +253,7 @@ int __kprobes hw_breakpoint_handler(struct die_args *args) | |||
253 | 253 | ||
254 | /* Do not emulate user-space instructions, instead single-step them */ | 254 | /* Do not emulate user-space instructions, instead single-step them */ |
255 | if (user_mode(regs)) { | 255 | if (user_mode(regs)) { |
256 | bp->ctx->task->thread.last_hit_ubp = bp; | 256 | current->thread.last_hit_ubp = bp; |
257 | regs->msr |= MSR_SE; | 257 | regs->msr |= MSR_SE; |
258 | goto out; | 258 | goto out; |
259 | } | 259 | } |
diff --git a/arch/powerpc/kernel/kgdb.c b/arch/powerpc/kernel/kgdb.c index 782bd0a3c2f0..c470a40b29f5 100644 --- a/arch/powerpc/kernel/kgdb.c +++ b/arch/powerpc/kernel/kgdb.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <asm/processor.h> | 25 | #include <asm/processor.h> |
26 | #include <asm/machdep.h> | 26 | #include <asm/machdep.h> |
27 | #include <asm/debug.h> | 27 | #include <asm/debug.h> |
28 | #include <linux/slab.h> | ||
28 | 29 | ||
29 | /* | 30 | /* |
30 | * This table contains the mapping between PowerPC hardware trap types, and | 31 | * This table contains the mapping between PowerPC hardware trap types, and |
@@ -101,6 +102,21 @@ static int computeSignal(unsigned int tt) | |||
101 | return SIGHUP; /* default for things we don't know about */ | 102 | return SIGHUP; /* default for things we don't know about */ |
102 | } | 103 | } |
103 | 104 | ||
105 | /** | ||
106 | * | ||
107 | * kgdb_skipexception - Bail out of KGDB when we've been triggered. | ||
108 | * @exception: Exception vector number | ||
109 | * @regs: Current &struct pt_regs. | ||
110 | * | ||
111 | * On some architectures we need to skip a breakpoint exception when | ||
112 | * it occurs after a breakpoint has been removed. | ||
113 | * | ||
114 | */ | ||
115 | int kgdb_skipexception(int exception, struct pt_regs *regs) | ||
116 | { | ||
117 | return kgdb_isremovedbreak(regs->nip); | ||
118 | } | ||
119 | |||
104 | static int kgdb_call_nmi_hook(struct pt_regs *regs) | 120 | static int kgdb_call_nmi_hook(struct pt_regs *regs) |
105 | { | 121 | { |
106 | kgdb_nmicallback(raw_smp_processor_id(), regs); | 122 | kgdb_nmicallback(raw_smp_processor_id(), regs); |
@@ -138,6 +154,8 @@ static int kgdb_handle_breakpoint(struct pt_regs *regs) | |||
138 | static int kgdb_singlestep(struct pt_regs *regs) | 154 | static int kgdb_singlestep(struct pt_regs *regs) |
139 | { | 155 | { |
140 | struct thread_info *thread_info, *exception_thread_info; | 156 | struct thread_info *thread_info, *exception_thread_info; |
157 | struct thread_info *backup_current_thread_info = \ | ||
158 | (struct thread_info *)kmalloc(sizeof(struct thread_info), GFP_KERNEL); | ||
141 | 159 | ||
142 | if (user_mode(regs)) | 160 | if (user_mode(regs)) |
143 | return 0; | 161 | return 0; |
@@ -155,13 +173,17 @@ static int kgdb_singlestep(struct pt_regs *regs) | |||
155 | thread_info = (struct thread_info *)(regs->gpr[1] & ~(THREAD_SIZE-1)); | 173 | thread_info = (struct thread_info *)(regs->gpr[1] & ~(THREAD_SIZE-1)); |
156 | exception_thread_info = current_thread_info(); | 174 | exception_thread_info = current_thread_info(); |
157 | 175 | ||
158 | if (thread_info != exception_thread_info) | 176 | if (thread_info != exception_thread_info) { |
177 | /* Save the original current_thread_info. */ | ||
178 | memcpy(backup_current_thread_info, exception_thread_info, sizeof *thread_info); | ||
159 | memcpy(exception_thread_info, thread_info, sizeof *thread_info); | 179 | memcpy(exception_thread_info, thread_info, sizeof *thread_info); |
180 | } | ||
160 | 181 | ||
161 | kgdb_handle_exception(0, SIGTRAP, 0, regs); | 182 | kgdb_handle_exception(0, SIGTRAP, 0, regs); |
162 | 183 | ||
163 | if (thread_info != exception_thread_info) | 184 | if (thread_info != exception_thread_info) |
164 | memcpy(thread_info, exception_thread_info, sizeof *thread_info); | 185 | /* Restore current_thread_info lastly. */ |
186 | memcpy(exception_thread_info, backup_current_thread_info, sizeof *thread_info); | ||
165 | 187 | ||
166 | return 1; | 188 | return 1; |
167 | } | 189 | } |
@@ -410,7 +432,6 @@ int kgdb_arch_handle_exception(int vector, int signo, int err_code, | |||
410 | #else | 432 | #else |
411 | linux_regs->msr |= MSR_SE; | 433 | linux_regs->msr |= MSR_SE; |
412 | #endif | 434 | #endif |
413 | kgdb_single_step = 1; | ||
414 | atomic_set(&kgdb_cpu_doing_single_step, | 435 | atomic_set(&kgdb_cpu_doing_single_step, |
415 | raw_smp_processor_id()); | 436 | raw_smp_processor_id()); |
416 | } | 437 | } |
diff --git a/arch/powerpc/kernel/syscalls.c b/arch/powerpc/kernel/syscalls.c index f2496f2faecc..4e3cc47f26b9 100644 --- a/arch/powerpc/kernel/syscalls.c +++ b/arch/powerpc/kernel/syscalls.c | |||
@@ -107,11 +107,11 @@ long ppc64_personality(unsigned long personality) | |||
107 | long ret; | 107 | long ret; |
108 | 108 | ||
109 | if (personality(current->personality) == PER_LINUX32 | 109 | if (personality(current->personality) == PER_LINUX32 |
110 | && personality == PER_LINUX) | 110 | && personality(personality) == PER_LINUX) |
111 | personality = PER_LINUX32; | 111 | personality = (personality & ~PER_MASK) | PER_LINUX32; |
112 | ret = sys_personality(personality); | 112 | ret = sys_personality(personality); |
113 | if (ret == PER_LINUX32) | 113 | if (personality(ret) == PER_LINUX32) |
114 | ret = PER_LINUX; | 114 | ret = (ret & ~PER_MASK) | PER_LINUX; |
115 | return ret; | 115 | return ret; |
116 | } | 116 | } |
117 | #endif | 117 | #endif |
diff --git a/arch/powerpc/kvm/book3s_32_mmu_host.c b/arch/powerpc/kvm/book3s_32_mmu_host.c index f922c29bb234..837f13e7b6bf 100644 --- a/arch/powerpc/kvm/book3s_32_mmu_host.c +++ b/arch/powerpc/kvm/book3s_32_mmu_host.c | |||
@@ -211,6 +211,9 @@ next_pteg: | |||
211 | pteg1 |= PP_RWRX; | 211 | pteg1 |= PP_RWRX; |
212 | } | 212 | } |
213 | 213 | ||
214 | if (orig_pte->may_execute) | ||
215 | kvmppc_mmu_flush_icache(hpaddr >> PAGE_SHIFT); | ||
216 | |||
214 | local_irq_disable(); | 217 | local_irq_disable(); |
215 | 218 | ||
216 | if (pteg[rr]) { | 219 | if (pteg[rr]) { |
diff --git a/arch/powerpc/kvm/book3s_64_mmu_host.c b/arch/powerpc/kvm/book3s_64_mmu_host.c index 10fc8ec9d2a8..0688b6b39585 100644 --- a/arch/powerpc/kvm/book3s_64_mmu_host.c +++ b/arch/powerpc/kvm/book3s_64_mmu_host.c | |||
@@ -126,6 +126,8 @@ int kvmppc_mmu_map_page(struct kvm_vcpu *vcpu, struct kvmppc_pte *orig_pte) | |||
126 | 126 | ||
127 | if (!orig_pte->may_execute) | 127 | if (!orig_pte->may_execute) |
128 | rflags |= HPTE_R_N; | 128 | rflags |= HPTE_R_N; |
129 | else | ||
130 | kvmppc_mmu_flush_icache(hpaddr >> PAGE_SHIFT); | ||
129 | 131 | ||
130 | hash = hpt_hash(va, PTE_SIZE, MMU_SEGSIZE_256M); | 132 | hash = hpt_hash(va, PTE_SIZE, MMU_SEGSIZE_256M); |
131 | 133 | ||
diff --git a/arch/powerpc/kvm/book3s_hv_rmhandlers.S b/arch/powerpc/kvm/book3s_hv_rmhandlers.S index 5a84c8d3d040..44b72feaff7d 100644 --- a/arch/powerpc/kvm/book3s_hv_rmhandlers.S +++ b/arch/powerpc/kvm/book3s_hv_rmhandlers.S | |||
@@ -1421,13 +1421,13 @@ _GLOBAL(kvmppc_h_cede) | |||
1421 | sync /* order setting ceded vs. testing prodded */ | 1421 | sync /* order setting ceded vs. testing prodded */ |
1422 | lbz r5,VCPU_PRODDED(r3) | 1422 | lbz r5,VCPU_PRODDED(r3) |
1423 | cmpwi r5,0 | 1423 | cmpwi r5,0 |
1424 | bne 1f | 1424 | bne kvm_cede_prodded |
1425 | li r0,0 /* set trap to 0 to say hcall is handled */ | 1425 | li r0,0 /* set trap to 0 to say hcall is handled */ |
1426 | stw r0,VCPU_TRAP(r3) | 1426 | stw r0,VCPU_TRAP(r3) |
1427 | li r0,H_SUCCESS | 1427 | li r0,H_SUCCESS |
1428 | std r0,VCPU_GPR(R3)(r3) | 1428 | std r0,VCPU_GPR(R3)(r3) |
1429 | BEGIN_FTR_SECTION | 1429 | BEGIN_FTR_SECTION |
1430 | b 2f /* just send it up to host on 970 */ | 1430 | b kvm_cede_exit /* just send it up to host on 970 */ |
1431 | END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_206) | 1431 | END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_206) |
1432 | 1432 | ||
1433 | /* | 1433 | /* |
@@ -1446,7 +1446,7 @@ END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_206) | |||
1446 | or r4,r4,r0 | 1446 | or r4,r4,r0 |
1447 | PPC_POPCNTW(R7,R4) | 1447 | PPC_POPCNTW(R7,R4) |
1448 | cmpw r7,r8 | 1448 | cmpw r7,r8 |
1449 | bge 2f | 1449 | bge kvm_cede_exit |
1450 | stwcx. r4,0,r6 | 1450 | stwcx. r4,0,r6 |
1451 | bne 31b | 1451 | bne 31b |
1452 | li r0,1 | 1452 | li r0,1 |
@@ -1555,7 +1555,8 @@ kvm_end_cede: | |||
1555 | b hcall_real_fallback | 1555 | b hcall_real_fallback |
1556 | 1556 | ||
1557 | /* cede when already previously prodded case */ | 1557 | /* cede when already previously prodded case */ |
1558 | 1: li r0,0 | 1558 | kvm_cede_prodded: |
1559 | li r0,0 | ||
1559 | stb r0,VCPU_PRODDED(r3) | 1560 | stb r0,VCPU_PRODDED(r3) |
1560 | sync /* order testing prodded vs. clearing ceded */ | 1561 | sync /* order testing prodded vs. clearing ceded */ |
1561 | stb r0,VCPU_CEDED(r3) | 1562 | stb r0,VCPU_CEDED(r3) |
@@ -1563,7 +1564,8 @@ kvm_end_cede: | |||
1563 | blr | 1564 | blr |
1564 | 1565 | ||
1565 | /* we've ceded but we want to give control to the host */ | 1566 | /* we've ceded but we want to give control to the host */ |
1566 | 2: li r3,H_TOO_HARD | 1567 | kvm_cede_exit: |
1568 | li r3,H_TOO_HARD | ||
1567 | blr | 1569 | blr |
1568 | 1570 | ||
1569 | secondary_too_late: | 1571 | secondary_too_late: |
diff --git a/arch/powerpc/kvm/e500_tlb.c b/arch/powerpc/kvm/e500_tlb.c index c510fc961302..a2b66717813d 100644 --- a/arch/powerpc/kvm/e500_tlb.c +++ b/arch/powerpc/kvm/e500_tlb.c | |||
@@ -322,11 +322,11 @@ static inline void kvmppc_e500_ref_release(struct tlbe_ref *ref) | |||
322 | static void clear_tlb1_bitmap(struct kvmppc_vcpu_e500 *vcpu_e500) | 322 | static void clear_tlb1_bitmap(struct kvmppc_vcpu_e500 *vcpu_e500) |
323 | { | 323 | { |
324 | if (vcpu_e500->g2h_tlb1_map) | 324 | if (vcpu_e500->g2h_tlb1_map) |
325 | memset(vcpu_e500->g2h_tlb1_map, | 325 | memset(vcpu_e500->g2h_tlb1_map, 0, |
326 | sizeof(u64) * vcpu_e500->gtlb_params[1].entries, 0); | 326 | sizeof(u64) * vcpu_e500->gtlb_params[1].entries); |
327 | if (vcpu_e500->h2g_tlb1_rmap) | 327 | if (vcpu_e500->h2g_tlb1_rmap) |
328 | memset(vcpu_e500->h2g_tlb1_rmap, | 328 | memset(vcpu_e500->h2g_tlb1_rmap, 0, |
329 | sizeof(unsigned int) * host_tlb_params[1].entries, 0); | 329 | sizeof(unsigned int) * host_tlb_params[1].entries); |
330 | } | 330 | } |
331 | 331 | ||
332 | static void clear_tlb_privs(struct kvmppc_vcpu_e500 *vcpu_e500) | 332 | static void clear_tlb_privs(struct kvmppc_vcpu_e500 *vcpu_e500) |
@@ -539,6 +539,9 @@ static inline void kvmppc_e500_shadow_map(struct kvmppc_vcpu_e500 *vcpu_e500, | |||
539 | 539 | ||
540 | kvmppc_e500_setup_stlbe(&vcpu_e500->vcpu, gtlbe, tsize, | 540 | kvmppc_e500_setup_stlbe(&vcpu_e500->vcpu, gtlbe, tsize, |
541 | ref, gvaddr, stlbe); | 541 | ref, gvaddr, stlbe); |
542 | |||
543 | /* Clear i-cache for new pages */ | ||
544 | kvmppc_mmu_flush_icache(pfn); | ||
542 | } | 545 | } |
543 | 546 | ||
544 | /* XXX only map the one-one case, for now use TLB0 */ | 547 | /* XXX only map the one-one case, for now use TLB0 */ |
diff --git a/arch/powerpc/lib/copyuser_power7.S b/arch/powerpc/lib/copyuser_power7.S index f9ede7c6606e..0d24ff15f5f6 100644 --- a/arch/powerpc/lib/copyuser_power7.S +++ b/arch/powerpc/lib/copyuser_power7.S | |||
@@ -288,7 +288,7 @@ err1; stb r0,0(r3) | |||
288 | std r0,16(r1) | 288 | std r0,16(r1) |
289 | stdu r1,-STACKFRAMESIZE(r1) | 289 | stdu r1,-STACKFRAMESIZE(r1) |
290 | bl .enter_vmx_usercopy | 290 | bl .enter_vmx_usercopy |
291 | cmpwi r3,0 | 291 | cmpwi cr1,r3,0 |
292 | ld r0,STACKFRAMESIZE+16(r1) | 292 | ld r0,STACKFRAMESIZE+16(r1) |
293 | ld r3,STACKFRAMESIZE+48(r1) | 293 | ld r3,STACKFRAMESIZE+48(r1) |
294 | ld r4,STACKFRAMESIZE+56(r1) | 294 | ld r4,STACKFRAMESIZE+56(r1) |
@@ -326,38 +326,7 @@ err1; stb r0,0(r3) | |||
326 | dcbt r0,r8,0b01010 /* GO */ | 326 | dcbt r0,r8,0b01010 /* GO */ |
327 | .machine pop | 327 | .machine pop |
328 | 328 | ||
329 | /* | 329 | beq cr1,.Lunwind_stack_nonvmx_copy |
330 | * We prefetch both the source and destination using enhanced touch | ||
331 | * instructions. We use a stream ID of 0 for the load side and | ||
332 | * 1 for the store side. | ||
333 | */ | ||
334 | clrrdi r6,r4,7 | ||
335 | clrrdi r9,r3,7 | ||
336 | ori r9,r9,1 /* stream=1 */ | ||
337 | |||
338 | srdi r7,r5,7 /* length in cachelines, capped at 0x3FF */ | ||
339 | cmpldi cr1,r7,0x3FF | ||
340 | ble cr1,1f | ||
341 | li r7,0x3FF | ||
342 | 1: lis r0,0x0E00 /* depth=7 */ | ||
343 | sldi r7,r7,7 | ||
344 | or r7,r7,r0 | ||
345 | ori r10,r7,1 /* stream=1 */ | ||
346 | |||
347 | lis r8,0x8000 /* GO=1 */ | ||
348 | clrldi r8,r8,32 | ||
349 | |||
350 | .machine push | ||
351 | .machine "power4" | ||
352 | dcbt r0,r6,0b01000 | ||
353 | dcbt r0,r7,0b01010 | ||
354 | dcbtst r0,r9,0b01000 | ||
355 | dcbtst r0,r10,0b01010 | ||
356 | eieio | ||
357 | dcbt r0,r8,0b01010 /* GO */ | ||
358 | .machine pop | ||
359 | |||
360 | beq .Lunwind_stack_nonvmx_copy | ||
361 | 330 | ||
362 | /* | 331 | /* |
363 | * If source and destination are not relatively aligned we use a | 332 | * If source and destination are not relatively aligned we use a |
diff --git a/arch/powerpc/lib/memcpy_power7.S b/arch/powerpc/lib/memcpy_power7.S index 0efdc51bc716..7ba6c96de778 100644 --- a/arch/powerpc/lib/memcpy_power7.S +++ b/arch/powerpc/lib/memcpy_power7.S | |||
@@ -222,7 +222,7 @@ _GLOBAL(memcpy_power7) | |||
222 | std r0,16(r1) | 222 | std r0,16(r1) |
223 | stdu r1,-STACKFRAMESIZE(r1) | 223 | stdu r1,-STACKFRAMESIZE(r1) |
224 | bl .enter_vmx_copy | 224 | bl .enter_vmx_copy |
225 | cmpwi r3,0 | 225 | cmpwi cr1,r3,0 |
226 | ld r0,STACKFRAMESIZE+16(r1) | 226 | ld r0,STACKFRAMESIZE+16(r1) |
227 | ld r3,STACKFRAMESIZE+48(r1) | 227 | ld r3,STACKFRAMESIZE+48(r1) |
228 | ld r4,STACKFRAMESIZE+56(r1) | 228 | ld r4,STACKFRAMESIZE+56(r1) |
@@ -260,7 +260,7 @@ _GLOBAL(memcpy_power7) | |||
260 | dcbt r0,r8,0b01010 /* GO */ | 260 | dcbt r0,r8,0b01010 /* GO */ |
261 | .machine pop | 261 | .machine pop |
262 | 262 | ||
263 | beq .Lunwind_stack_nonvmx_copy | 263 | beq cr1,.Lunwind_stack_nonvmx_copy |
264 | 264 | ||
265 | /* | 265 | /* |
266 | * If source and destination are not relatively aligned we use a | 266 | * If source and destination are not relatively aligned we use a |
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c index baaafde7d135..fbdad0e3929a 100644 --- a/arch/powerpc/mm/mem.c +++ b/arch/powerpc/mm/mem.c | |||
@@ -469,6 +469,7 @@ void flush_dcache_icache_page(struct page *page) | |||
469 | __flush_dcache_icache_phys(page_to_pfn(page) << PAGE_SHIFT); | 469 | __flush_dcache_icache_phys(page_to_pfn(page) << PAGE_SHIFT); |
470 | #endif | 470 | #endif |
471 | } | 471 | } |
472 | EXPORT_SYMBOL(flush_dcache_icache_page); | ||
472 | 473 | ||
473 | void clear_user_page(void *page, unsigned long vaddr, struct page *pg) | 474 | void clear_user_page(void *page, unsigned long vaddr, struct page *pg) |
474 | { | 475 | { |
diff --git a/arch/powerpc/perf/core-book3s.c b/arch/powerpc/perf/core-book3s.c index 77b49ddda9d3..7cd2dbd6e4c4 100644 --- a/arch/powerpc/perf/core-book3s.c +++ b/arch/powerpc/perf/core-book3s.c | |||
@@ -1431,7 +1431,7 @@ static void perf_event_interrupt(struct pt_regs *regs) | |||
1431 | if (!event->hw.idx || is_limited_pmc(event->hw.idx)) | 1431 | if (!event->hw.idx || is_limited_pmc(event->hw.idx)) |
1432 | continue; | 1432 | continue; |
1433 | val = read_pmc(event->hw.idx); | 1433 | val = read_pmc(event->hw.idx); |
1434 | if ((int)val < 0) { | 1434 | if (pmc_overflow(val)) { |
1435 | /* event has overflowed */ | 1435 | /* event has overflowed */ |
1436 | found = 1; | 1436 | found = 1; |
1437 | record_and_restart(event, val, regs); | 1437 | record_and_restart(event, val, regs); |
diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c index a7b2a600d0a4..c37f46136321 100644 --- a/arch/powerpc/sysdev/fsl_pci.c +++ b/arch/powerpc/sysdev/fsl_pci.c | |||
@@ -465,7 +465,7 @@ int __init fsl_add_bridge(struct device_node *dev, int is_primary) | |||
465 | iounmap(hose->cfg_data); | 465 | iounmap(hose->cfg_data); |
466 | iounmap(hose->cfg_addr); | 466 | iounmap(hose->cfg_addr); |
467 | pcibios_free_controller(hose); | 467 | pcibios_free_controller(hose); |
468 | return 0; | 468 | return -ENODEV; |
469 | } | 469 | } |
470 | 470 | ||
471 | setup_pci_cmd(hose); | 471 | setup_pci_cmd(hose); |
@@ -827,6 +827,7 @@ struct device_node *fsl_pci_primary; | |||
827 | 827 | ||
828 | void __devinit fsl_pci_init(void) | 828 | void __devinit fsl_pci_init(void) |
829 | { | 829 | { |
830 | int ret; | ||
830 | struct device_node *node; | 831 | struct device_node *node; |
831 | struct pci_controller *hose; | 832 | struct pci_controller *hose; |
832 | dma_addr_t max = 0xffffffff; | 833 | dma_addr_t max = 0xffffffff; |
@@ -855,10 +856,12 @@ void __devinit fsl_pci_init(void) | |||
855 | if (!fsl_pci_primary) | 856 | if (!fsl_pci_primary) |
856 | fsl_pci_primary = node; | 857 | fsl_pci_primary = node; |
857 | 858 | ||
858 | fsl_add_bridge(node, fsl_pci_primary == node); | 859 | ret = fsl_add_bridge(node, fsl_pci_primary == node); |
859 | hose = pci_find_hose_for_OF_device(node); | 860 | if (ret == 0) { |
860 | max = min(max, hose->dma_window_base_cur + | 861 | hose = pci_find_hose_for_OF_device(node); |
861 | hose->dma_window_size); | 862 | max = min(max, hose->dma_window_base_cur + |
863 | hose->dma_window_size); | ||
864 | } | ||
862 | } | 865 | } |
863 | } | 866 | } |
864 | 867 | ||
diff --git a/arch/powerpc/sysdev/mpic_msgr.c b/arch/powerpc/sysdev/mpic_msgr.c index 483d8fa72e8b..e961f8c4a8f0 100644 --- a/arch/powerpc/sysdev/mpic_msgr.c +++ b/arch/powerpc/sysdev/mpic_msgr.c | |||
@@ -14,6 +14,9 @@ | |||
14 | #include <linux/list.h> | 14 | #include <linux/list.h> |
15 | #include <linux/of_platform.h> | 15 | #include <linux/of_platform.h> |
16 | #include <linux/errno.h> | 16 | #include <linux/errno.h> |
17 | #include <linux/err.h> | ||
18 | #include <linux/export.h> | ||
19 | #include <linux/slab.h> | ||
17 | #include <asm/prom.h> | 20 | #include <asm/prom.h> |
18 | #include <asm/hw_irq.h> | 21 | #include <asm/hw_irq.h> |
19 | #include <asm/ppc-pci.h> | 22 | #include <asm/ppc-pci.h> |
diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c index eab3492a45c5..9b49c65ee7a4 100644 --- a/arch/powerpc/xmon/xmon.c +++ b/arch/powerpc/xmon/xmon.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/reboot.h> | 17 | #include <linux/reboot.h> |
18 | #include <linux/delay.h> | 18 | #include <linux/delay.h> |
19 | #include <linux/kallsyms.h> | 19 | #include <linux/kallsyms.h> |
20 | #include <linux/kmsg_dump.h> | ||
20 | #include <linux/cpumask.h> | 21 | #include <linux/cpumask.h> |
21 | #include <linux/export.h> | 22 | #include <linux/export.h> |
22 | #include <linux/sysrq.h> | 23 | #include <linux/sysrq.h> |
@@ -894,13 +895,13 @@ cmds(struct pt_regs *excp) | |||
894 | #endif | 895 | #endif |
895 | default: | 896 | default: |
896 | printf("Unrecognized command: "); | 897 | printf("Unrecognized command: "); |
897 | do { | 898 | do { |
898 | if (' ' < cmd && cmd <= '~') | 899 | if (' ' < cmd && cmd <= '~') |
899 | putchar(cmd); | 900 | putchar(cmd); |
900 | else | 901 | else |
901 | printf("\\x%x", cmd); | 902 | printf("\\x%x", cmd); |
902 | cmd = inchar(); | 903 | cmd = inchar(); |
903 | } while (cmd != '\n'); | 904 | } while (cmd != '\n'); |
904 | printf(" (type ? for help)\n"); | 905 | printf(" (type ? for help)\n"); |
905 | break; | 906 | break; |
906 | } | 907 | } |
@@ -1097,7 +1098,7 @@ static long check_bp_loc(unsigned long addr) | |||
1097 | return 1; | 1098 | return 1; |
1098 | } | 1099 | } |
1099 | 1100 | ||
1100 | static char *breakpoint_help_string = | 1101 | static char *breakpoint_help_string = |
1101 | "Breakpoint command usage:\n" | 1102 | "Breakpoint command usage:\n" |
1102 | "b show breakpoints\n" | 1103 | "b show breakpoints\n" |
1103 | "b <addr> [cnt] set breakpoint at given instr addr\n" | 1104 | "b <addr> [cnt] set breakpoint at given instr addr\n" |
@@ -1193,7 +1194,7 @@ bpt_cmds(void) | |||
1193 | 1194 | ||
1194 | default: | 1195 | default: |
1195 | termch = cmd; | 1196 | termch = cmd; |
1196 | cmd = skipbl(); | 1197 | cmd = skipbl(); |
1197 | if (cmd == '?') { | 1198 | if (cmd == '?') { |
1198 | printf(breakpoint_help_string); | 1199 | printf(breakpoint_help_string); |
1199 | break; | 1200 | break; |
@@ -1359,7 +1360,7 @@ static void xmon_show_stack(unsigned long sp, unsigned long lr, | |||
1359 | sp + REGS_OFFSET); | 1360 | sp + REGS_OFFSET); |
1360 | break; | 1361 | break; |
1361 | } | 1362 | } |
1362 | printf("--- Exception: %lx %s at ", regs.trap, | 1363 | printf("--- Exception: %lx %s at ", regs.trap, |
1363 | getvecname(TRAP(®s))); | 1364 | getvecname(TRAP(®s))); |
1364 | pc = regs.nip; | 1365 | pc = regs.nip; |
1365 | lr = regs.link; | 1366 | lr = regs.link; |
@@ -1623,14 +1624,14 @@ static void super_regs(void) | |||
1623 | 1624 | ||
1624 | cmd = skipbl(); | 1625 | cmd = skipbl(); |
1625 | if (cmd == '\n') { | 1626 | if (cmd == '\n') { |
1626 | unsigned long sp, toc; | 1627 | unsigned long sp, toc; |
1627 | asm("mr %0,1" : "=r" (sp) :); | 1628 | asm("mr %0,1" : "=r" (sp) :); |
1628 | asm("mr %0,2" : "=r" (toc) :); | 1629 | asm("mr %0,2" : "=r" (toc) :); |
1629 | 1630 | ||
1630 | printf("msr = "REG" sprg0= "REG"\n", | 1631 | printf("msr = "REG" sprg0= "REG"\n", |
1631 | mfmsr(), mfspr(SPRN_SPRG0)); | 1632 | mfmsr(), mfspr(SPRN_SPRG0)); |
1632 | printf("pvr = "REG" sprg1= "REG"\n", | 1633 | printf("pvr = "REG" sprg1= "REG"\n", |
1633 | mfspr(SPRN_PVR), mfspr(SPRN_SPRG1)); | 1634 | mfspr(SPRN_PVR), mfspr(SPRN_SPRG1)); |
1634 | printf("dec = "REG" sprg2= "REG"\n", | 1635 | printf("dec = "REG" sprg2= "REG"\n", |
1635 | mfspr(SPRN_DEC), mfspr(SPRN_SPRG2)); | 1636 | mfspr(SPRN_DEC), mfspr(SPRN_SPRG2)); |
1636 | printf("sp = "REG" sprg3= "REG"\n", sp, mfspr(SPRN_SPRG3)); | 1637 | printf("sp = "REG" sprg3= "REG"\n", sp, mfspr(SPRN_SPRG3)); |
@@ -1783,7 +1784,7 @@ byterev(unsigned char *val, int size) | |||
1783 | static int brev; | 1784 | static int brev; |
1784 | static int mnoread; | 1785 | static int mnoread; |
1785 | 1786 | ||
1786 | static char *memex_help_string = | 1787 | static char *memex_help_string = |
1787 | "Memory examine command usage:\n" | 1788 | "Memory examine command usage:\n" |
1788 | "m [addr] [flags] examine/change memory\n" | 1789 | "m [addr] [flags] examine/change memory\n" |
1789 | " addr is optional. will start where left off.\n" | 1790 | " addr is optional. will start where left off.\n" |
@@ -1798,7 +1799,7 @@ static char *memex_help_string = | |||
1798 | "NOTE: flags are saved as defaults\n" | 1799 | "NOTE: flags are saved as defaults\n" |
1799 | ""; | 1800 | ""; |
1800 | 1801 | ||
1801 | static char *memex_subcmd_help_string = | 1802 | static char *memex_subcmd_help_string = |
1802 | "Memory examine subcommands:\n" | 1803 | "Memory examine subcommands:\n" |
1803 | " hexval write this val to current location\n" | 1804 | " hexval write this val to current location\n" |
1804 | " 'string' write chars from string to this location\n" | 1805 | " 'string' write chars from string to this location\n" |
@@ -2064,7 +2065,7 @@ prdump(unsigned long adrs, long ndump) | |||
2064 | nr = mread(adrs, temp, r); | 2065 | nr = mread(adrs, temp, r); |
2065 | adrs += nr; | 2066 | adrs += nr; |
2066 | for (m = 0; m < r; ++m) { | 2067 | for (m = 0; m < r; ++m) { |
2067 | if ((m & (sizeof(long) - 1)) == 0 && m > 0) | 2068 | if ((m & (sizeof(long) - 1)) == 0 && m > 0) |
2068 | putchar(' '); | 2069 | putchar(' '); |
2069 | if (m < nr) | 2070 | if (m < nr) |
2070 | printf("%.2x", temp[m]); | 2071 | printf("%.2x", temp[m]); |
@@ -2072,7 +2073,7 @@ prdump(unsigned long adrs, long ndump) | |||
2072 | printf("%s", fault_chars[fault_type]); | 2073 | printf("%s", fault_chars[fault_type]); |
2073 | } | 2074 | } |
2074 | for (; m < 16; ++m) { | 2075 | for (; m < 16; ++m) { |
2075 | if ((m & (sizeof(long) - 1)) == 0) | 2076 | if ((m & (sizeof(long) - 1)) == 0) |
2076 | putchar(' '); | 2077 | putchar(' '); |
2077 | printf(" "); | 2078 | printf(" "); |
2078 | } | 2079 | } |
@@ -2148,45 +2149,28 @@ print_address(unsigned long addr) | |||
2148 | void | 2149 | void |
2149 | dump_log_buf(void) | 2150 | dump_log_buf(void) |
2150 | { | 2151 | { |
2151 | const unsigned long size = 128; | 2152 | struct kmsg_dumper dumper = { .active = 1 }; |
2152 | unsigned long end, addr; | 2153 | unsigned char buf[128]; |
2153 | unsigned char buf[size + 1]; | 2154 | size_t len; |
2154 | 2155 | ||
2155 | addr = 0; | 2156 | if (setjmp(bus_error_jmp) != 0) { |
2156 | buf[size] = '\0'; | 2157 | printf("Error dumping printk buffer!\n"); |
2157 | 2158 | return; | |
2158 | if (setjmp(bus_error_jmp) != 0) { | 2159 | } |
2159 | printf("Unable to lookup symbol __log_buf!\n"); | 2160 | |
2160 | return; | 2161 | catch_memory_errors = 1; |
2161 | } | 2162 | sync(); |
2162 | 2163 | ||
2163 | catch_memory_errors = 1; | 2164 | kmsg_dump_rewind_nolock(&dumper); |
2164 | sync(); | 2165 | while (kmsg_dump_get_line_nolock(&dumper, false, buf, sizeof(buf), &len)) { |
2165 | addr = kallsyms_lookup_name("__log_buf"); | 2166 | buf[len] = '\0'; |
2166 | 2167 | printf("%s", buf); | |
2167 | if (! addr) | 2168 | } |
2168 | printf("Symbol __log_buf not found!\n"); | 2169 | |
2169 | else { | 2170 | sync(); |
2170 | end = addr + (1 << CONFIG_LOG_BUF_SHIFT); | 2171 | /* wait a little while to see if we get a machine check */ |
2171 | while (addr < end) { | 2172 | __delay(200); |
2172 | if (! mread(addr, buf, size)) { | 2173 | catch_memory_errors = 0; |
2173 | printf("Can't read memory at address 0x%lx\n", addr); | ||
2174 | break; | ||
2175 | } | ||
2176 | |||
2177 | printf("%s", buf); | ||
2178 | |||
2179 | if (strlen(buf) < size) | ||
2180 | break; | ||
2181 | |||
2182 | addr += size; | ||
2183 | } | ||
2184 | } | ||
2185 | |||
2186 | sync(); | ||
2187 | /* wait a little while to see if we get a machine check */ | ||
2188 | __delay(200); | ||
2189 | catch_memory_errors = 0; | ||
2190 | } | 2174 | } |
2191 | 2175 | ||
2192 | /* | 2176 | /* |
diff --git a/arch/s390/Kconfig b/arch/s390/Kconfig index 76de6b68487c..107610e01a29 100644 --- a/arch/s390/Kconfig +++ b/arch/s390/Kconfig | |||
@@ -124,6 +124,7 @@ config S390 | |||
124 | select GENERIC_TIME_VSYSCALL | 124 | select GENERIC_TIME_VSYSCALL |
125 | select GENERIC_CLOCKEVENTS | 125 | select GENERIC_CLOCKEVENTS |
126 | select KTIME_SCALAR if 32BIT | 126 | select KTIME_SCALAR if 32BIT |
127 | select HAVE_ARCH_SECCOMP_FILTER | ||
127 | 128 | ||
128 | config SCHED_OMIT_FRAME_POINTER | 129 | config SCHED_OMIT_FRAME_POINTER |
129 | def_bool y | 130 | def_bool y |
diff --git a/arch/s390/include/asm/elf.h b/arch/s390/include/asm/elf.h index 32e8449640fa..9b94a160fe7f 100644 --- a/arch/s390/include/asm/elf.h +++ b/arch/s390/include/asm/elf.h | |||
@@ -180,7 +180,8 @@ extern char elf_platform[]; | |||
180 | #define ELF_PLATFORM (elf_platform) | 180 | #define ELF_PLATFORM (elf_platform) |
181 | 181 | ||
182 | #ifndef CONFIG_64BIT | 182 | #ifndef CONFIG_64BIT |
183 | #define SET_PERSONALITY(ex) set_personality(PER_LINUX) | 183 | #define SET_PERSONALITY(ex) \ |
184 | set_personality(PER_LINUX | (current->personality & (~PER_MASK))) | ||
184 | #else /* CONFIG_64BIT */ | 185 | #else /* CONFIG_64BIT */ |
185 | #define SET_PERSONALITY(ex) \ | 186 | #define SET_PERSONALITY(ex) \ |
186 | do { \ | 187 | do { \ |
diff --git a/arch/s390/include/asm/posix_types.h b/arch/s390/include/asm/posix_types.h index 7bcc14e395f0..bf2a2ad2f800 100644 --- a/arch/s390/include/asm/posix_types.h +++ b/arch/s390/include/asm/posix_types.h | |||
@@ -13,6 +13,7 @@ | |||
13 | */ | 13 | */ |
14 | 14 | ||
15 | typedef unsigned long __kernel_size_t; | 15 | typedef unsigned long __kernel_size_t; |
16 | typedef long __kernel_ssize_t; | ||
16 | #define __kernel_size_t __kernel_size_t | 17 | #define __kernel_size_t __kernel_size_t |
17 | 18 | ||
18 | typedef unsigned short __kernel_old_dev_t; | 19 | typedef unsigned short __kernel_old_dev_t; |
@@ -25,7 +26,6 @@ typedef unsigned short __kernel_mode_t; | |||
25 | typedef unsigned short __kernel_ipc_pid_t; | 26 | typedef unsigned short __kernel_ipc_pid_t; |
26 | typedef unsigned short __kernel_uid_t; | 27 | typedef unsigned short __kernel_uid_t; |
27 | typedef unsigned short __kernel_gid_t; | 28 | typedef unsigned short __kernel_gid_t; |
28 | typedef int __kernel_ssize_t; | ||
29 | typedef int __kernel_ptrdiff_t; | 29 | typedef int __kernel_ptrdiff_t; |
30 | 30 | ||
31 | #else /* __s390x__ */ | 31 | #else /* __s390x__ */ |
@@ -35,7 +35,6 @@ typedef unsigned int __kernel_mode_t; | |||
35 | typedef int __kernel_ipc_pid_t; | 35 | typedef int __kernel_ipc_pid_t; |
36 | typedef unsigned int __kernel_uid_t; | 36 | typedef unsigned int __kernel_uid_t; |
37 | typedef unsigned int __kernel_gid_t; | 37 | typedef unsigned int __kernel_gid_t; |
38 | typedef long __kernel_ssize_t; | ||
39 | typedef long __kernel_ptrdiff_t; | 38 | typedef long __kernel_ptrdiff_t; |
40 | typedef unsigned long __kernel_sigset_t; /* at least 32 bits */ | 39 | typedef unsigned long __kernel_sigset_t; /* at least 32 bits */ |
41 | 40 | ||
diff --git a/arch/s390/include/asm/smp.h b/arch/s390/include/asm/smp.h index a0a8340daafa..ce26ac3cb162 100644 --- a/arch/s390/include/asm/smp.h +++ b/arch/s390/include/asm/smp.h | |||
@@ -44,6 +44,7 @@ static inline void smp_call_online_cpu(void (*func)(void *), void *data) | |||
44 | } | 44 | } |
45 | 45 | ||
46 | static inline int smp_find_processor_id(int address) { return 0; } | 46 | static inline int smp_find_processor_id(int address) { return 0; } |
47 | static inline int smp_store_status(int cpu) { return 0; } | ||
47 | static inline int smp_vcpu_scheduled(int cpu) { return 1; } | 48 | static inline int smp_vcpu_scheduled(int cpu) { return 1; } |
48 | static inline void smp_yield_cpu(int cpu) { } | 49 | static inline void smp_yield_cpu(int cpu) { } |
49 | static inline void smp_yield(void) { } | 50 | static inline void smp_yield(void) { } |
diff --git a/arch/s390/include/asm/sparsemem.h b/arch/s390/include/asm/sparsemem.h index 0fb34027d3f6..a60d085ddb4d 100644 --- a/arch/s390/include/asm/sparsemem.h +++ b/arch/s390/include/asm/sparsemem.h | |||
@@ -4,13 +4,11 @@ | |||
4 | #ifdef CONFIG_64BIT | 4 | #ifdef CONFIG_64BIT |
5 | 5 | ||
6 | #define SECTION_SIZE_BITS 28 | 6 | #define SECTION_SIZE_BITS 28 |
7 | #define MAX_PHYSADDR_BITS 46 | ||
8 | #define MAX_PHYSMEM_BITS 46 | 7 | #define MAX_PHYSMEM_BITS 46 |
9 | 8 | ||
10 | #else | 9 | #else |
11 | 10 | ||
12 | #define SECTION_SIZE_BITS 25 | 11 | #define SECTION_SIZE_BITS 25 |
13 | #define MAX_PHYSADDR_BITS 31 | ||
14 | #define MAX_PHYSMEM_BITS 31 | 12 | #define MAX_PHYSMEM_BITS 31 |
15 | 13 | ||
16 | #endif /* CONFIG_64BIT */ | 14 | #endif /* CONFIG_64BIT */ |
diff --git a/arch/s390/include/asm/syscall.h b/arch/s390/include/asm/syscall.h index fb214dd9b7e0..fe7b99759e12 100644 --- a/arch/s390/include/asm/syscall.h +++ b/arch/s390/include/asm/syscall.h | |||
@@ -12,6 +12,7 @@ | |||
12 | #ifndef _ASM_SYSCALL_H | 12 | #ifndef _ASM_SYSCALL_H |
13 | #define _ASM_SYSCALL_H 1 | 13 | #define _ASM_SYSCALL_H 1 |
14 | 14 | ||
15 | #include <linux/audit.h> | ||
15 | #include <linux/sched.h> | 16 | #include <linux/sched.h> |
16 | #include <linux/err.h> | 17 | #include <linux/err.h> |
17 | #include <asm/ptrace.h> | 18 | #include <asm/ptrace.h> |
@@ -87,4 +88,13 @@ static inline void syscall_set_arguments(struct task_struct *task, | |||
87 | regs->orig_gpr2 = args[0]; | 88 | regs->orig_gpr2 = args[0]; |
88 | } | 89 | } |
89 | 90 | ||
91 | static inline int syscall_get_arch(struct task_struct *task, | ||
92 | struct pt_regs *regs) | ||
93 | { | ||
94 | #ifdef CONFIG_COMPAT | ||
95 | if (test_tsk_thread_flag(task, TIF_31BIT)) | ||
96 | return AUDIT_ARCH_S390; | ||
97 | #endif | ||
98 | return sizeof(long) == 8 ? AUDIT_ARCH_S390X : AUDIT_ARCH_S390; | ||
99 | } | ||
90 | #endif /* _ASM_SYSCALL_H */ | 100 | #endif /* _ASM_SYSCALL_H */ |
diff --git a/arch/s390/kernel/compat_linux.c b/arch/s390/kernel/compat_linux.c index d1225089a4bb..f606d935f495 100644 --- a/arch/s390/kernel/compat_linux.c +++ b/arch/s390/kernel/compat_linux.c | |||
@@ -620,7 +620,6 @@ asmlinkage unsigned long old32_mmap(struct mmap_arg_struct_emu31 __user *arg) | |||
620 | return -EFAULT; | 620 | return -EFAULT; |
621 | if (a.offset & ~PAGE_MASK) | 621 | if (a.offset & ~PAGE_MASK) |
622 | return -EINVAL; | 622 | return -EINVAL; |
623 | a.addr = (unsigned long) compat_ptr(a.addr); | ||
624 | return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, | 623 | return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, |
625 | a.offset >> PAGE_SHIFT); | 624 | a.offset >> PAGE_SHIFT); |
626 | } | 625 | } |
@@ -631,7 +630,6 @@ asmlinkage long sys32_mmap2(struct mmap_arg_struct_emu31 __user *arg) | |||
631 | 630 | ||
632 | if (copy_from_user(&a, arg, sizeof(a))) | 631 | if (copy_from_user(&a, arg, sizeof(a))) |
633 | return -EFAULT; | 632 | return -EFAULT; |
634 | a.addr = (unsigned long) compat_ptr(a.addr); | ||
635 | return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, a.offset); | 633 | return sys_mmap_pgoff(a.addr, a.len, a.prot, a.flags, a.fd, a.offset); |
636 | } | 634 | } |
637 | 635 | ||
diff --git a/arch/s390/kernel/compat_wrapper.S b/arch/s390/kernel/compat_wrapper.S index e835d6d5b7fd..2d82cfcbce5b 100644 --- a/arch/s390/kernel/compat_wrapper.S +++ b/arch/s390/kernel/compat_wrapper.S | |||
@@ -1635,7 +1635,7 @@ ENTRY(compat_sys_process_vm_readv_wrapper) | |||
1635 | llgfr %r6,%r6 # unsigned long | 1635 | llgfr %r6,%r6 # unsigned long |
1636 | llgf %r0,164(%r15) # unsigned long | 1636 | llgf %r0,164(%r15) # unsigned long |
1637 | stg %r0,160(%r15) | 1637 | stg %r0,160(%r15) |
1638 | jg sys_process_vm_readv | 1638 | jg compat_sys_process_vm_readv |
1639 | 1639 | ||
1640 | ENTRY(compat_sys_process_vm_writev_wrapper) | 1640 | ENTRY(compat_sys_process_vm_writev_wrapper) |
1641 | lgfr %r2,%r2 # compat_pid_t | 1641 | lgfr %r2,%r2 # compat_pid_t |
@@ -1645,4 +1645,4 @@ ENTRY(compat_sys_process_vm_writev_wrapper) | |||
1645 | llgfr %r6,%r6 # unsigned long | 1645 | llgfr %r6,%r6 # unsigned long |
1646 | llgf %r0,164(%r15) # unsigned long | 1646 | llgf %r0,164(%r15) # unsigned long |
1647 | stg %r0,160(%r15) | 1647 | stg %r0,160(%r15) |
1648 | jg sys_process_vm_writev | 1648 | jg compat_sys_process_vm_writev |
diff --git a/arch/s390/kernel/ptrace.c b/arch/s390/kernel/ptrace.c index f4eb37680b91..e4be113fbac6 100644 --- a/arch/s390/kernel/ptrace.c +++ b/arch/s390/kernel/ptrace.c | |||
@@ -719,7 +719,11 @@ asmlinkage long do_syscall_trace_enter(struct pt_regs *regs) | |||
719 | long ret = 0; | 719 | long ret = 0; |
720 | 720 | ||
721 | /* Do the secure computing check first. */ | 721 | /* Do the secure computing check first. */ |
722 | secure_computing_strict(regs->gprs[2]); | 722 | if (secure_computing(regs->gprs[2])) { |
723 | /* seccomp failures shouldn't expose any additional code. */ | ||
724 | ret = -1; | ||
725 | goto out; | ||
726 | } | ||
723 | 727 | ||
724 | /* | 728 | /* |
725 | * The sysc_tracesys code in entry.S stored the system | 729 | * The sysc_tracesys code in entry.S stored the system |
@@ -745,6 +749,7 @@ asmlinkage long do_syscall_trace_enter(struct pt_regs *regs) | |||
745 | regs->gprs[2], regs->orig_gpr2, | 749 | regs->gprs[2], regs->orig_gpr2, |
746 | regs->gprs[3], regs->gprs[4], | 750 | regs->gprs[3], regs->gprs[4], |
747 | regs->gprs[5]); | 751 | regs->gprs[5]); |
752 | out: | ||
748 | return ret ?: regs->gprs[2]; | 753 | return ret ?: regs->gprs[2]; |
749 | } | 754 | } |
750 | 755 | ||
diff --git a/arch/s390/kernel/sys_s390.c b/arch/s390/kernel/sys_s390.c index b4a29eee41b8..d0964d22adb5 100644 --- a/arch/s390/kernel/sys_s390.c +++ b/arch/s390/kernel/sys_s390.c | |||
@@ -81,11 +81,12 @@ SYSCALL_DEFINE1(s390_personality, unsigned int, personality) | |||
81 | { | 81 | { |
82 | unsigned int ret; | 82 | unsigned int ret; |
83 | 83 | ||
84 | if (current->personality == PER_LINUX32 && personality == PER_LINUX) | 84 | if (personality(current->personality) == PER_LINUX32 && |
85 | personality = PER_LINUX32; | 85 | personality(personality) == PER_LINUX) |
86 | personality |= PER_LINUX32; | ||
86 | ret = sys_personality(personality); | 87 | ret = sys_personality(personality); |
87 | if (ret == PER_LINUX32) | 88 | if (personality(ret) == PER_LINUX32) |
88 | ret = PER_LINUX; | 89 | ret &= ~PER_LINUX32; |
89 | 90 | ||
90 | return ret; | 91 | return ret; |
91 | } | 92 | } |
diff --git a/arch/sh/drivers/dma/dma-sh.c b/arch/sh/drivers/dma/dma-sh.c index 4c171f13b0e8..b22565623142 100644 --- a/arch/sh/drivers/dma/dma-sh.c +++ b/arch/sh/drivers/dma/dma-sh.c | |||
@@ -335,7 +335,7 @@ static int dmae_irq_init(void) | |||
335 | 335 | ||
336 | for (n = 0; n < NR_DMAE; n++) { | 336 | for (n = 0; n < NR_DMAE; n++) { |
337 | int i = request_irq(get_dma_error_irq(n), dma_err, | 337 | int i = request_irq(get_dma_error_irq(n), dma_err, |
338 | IRQF_SHARED, dmae_name[n], NULL); | 338 | IRQF_SHARED, dmae_name[n], (void *)dmae_name[n]); |
339 | if (unlikely(i < 0)) { | 339 | if (unlikely(i < 0)) { |
340 | printk(KERN_ERR "%s request_irq fail\n", dmae_name[n]); | 340 | printk(KERN_ERR "%s request_irq fail\n", dmae_name[n]); |
341 | return i; | 341 | return i; |
diff --git a/arch/sh/include/asm/sections.h b/arch/sh/include/asm/sections.h index 4a5350037c8f..1b6199740e98 100644 --- a/arch/sh/include/asm/sections.h +++ b/arch/sh/include/asm/sections.h | |||
@@ -6,7 +6,6 @@ | |||
6 | extern long __nosave_begin, __nosave_end; | 6 | extern long __nosave_begin, __nosave_end; |
7 | extern long __machvec_start, __machvec_end; | 7 | extern long __machvec_start, __machvec_end; |
8 | extern char __uncached_start, __uncached_end; | 8 | extern char __uncached_start, __uncached_end; |
9 | extern char _ebss[]; | ||
10 | extern char __start_eh_frame[], __stop_eh_frame[]; | 9 | extern char __start_eh_frame[], __stop_eh_frame[]; |
11 | 10 | ||
12 | #endif /* __ASM_SH_SECTIONS_H */ | 11 | #endif /* __ASM_SH_SECTIONS_H */ |
diff --git a/arch/sh/include/cpu-sh2a/cpu/sh7269.h b/arch/sh/include/cpu-sh2a/cpu/sh7269.h index 48d14498e774..2a0ca8780f0d 100644 --- a/arch/sh/include/cpu-sh2a/cpu/sh7269.h +++ b/arch/sh/include/cpu-sh2a/cpu/sh7269.h | |||
@@ -183,18 +183,30 @@ enum { | |||
183 | GPIO_FN_DV_DATA1, GPIO_FN_DV_DATA0, | 183 | GPIO_FN_DV_DATA1, GPIO_FN_DV_DATA0, |
184 | GPIO_FN_LCD_CLK, GPIO_FN_LCD_EXTCLK, | 184 | GPIO_FN_LCD_CLK, GPIO_FN_LCD_EXTCLK, |
185 | GPIO_FN_LCD_VSYNC, GPIO_FN_LCD_HSYNC, GPIO_FN_LCD_DE, | 185 | GPIO_FN_LCD_VSYNC, GPIO_FN_LCD_HSYNC, GPIO_FN_LCD_DE, |
186 | GPIO_FN_LCD_DATA23, GPIO_FN_LCD_DATA22, | 186 | GPIO_FN_LCD_DATA23_PG23, GPIO_FN_LCD_DATA22_PG22, |
187 | GPIO_FN_LCD_DATA21, GPIO_FN_LCD_DATA20, | 187 | GPIO_FN_LCD_DATA21_PG21, GPIO_FN_LCD_DATA20_PG20, |
188 | GPIO_FN_LCD_DATA19, GPIO_FN_LCD_DATA18, | 188 | GPIO_FN_LCD_DATA19_PG19, GPIO_FN_LCD_DATA18_PG18, |
189 | GPIO_FN_LCD_DATA17, GPIO_FN_LCD_DATA16, | 189 | GPIO_FN_LCD_DATA17_PG17, GPIO_FN_LCD_DATA16_PG16, |
190 | GPIO_FN_LCD_DATA15, GPIO_FN_LCD_DATA14, | 190 | GPIO_FN_LCD_DATA15_PG15, GPIO_FN_LCD_DATA14_PG14, |
191 | GPIO_FN_LCD_DATA13, GPIO_FN_LCD_DATA12, | 191 | GPIO_FN_LCD_DATA13_PG13, GPIO_FN_LCD_DATA12_PG12, |
192 | GPIO_FN_LCD_DATA11, GPIO_FN_LCD_DATA10, | 192 | GPIO_FN_LCD_DATA11_PG11, GPIO_FN_LCD_DATA10_PG10, |
193 | GPIO_FN_LCD_DATA9, GPIO_FN_LCD_DATA8, | 193 | GPIO_FN_LCD_DATA9_PG9, GPIO_FN_LCD_DATA8_PG8, |
194 | GPIO_FN_LCD_DATA7, GPIO_FN_LCD_DATA6, | 194 | GPIO_FN_LCD_DATA7_PG7, GPIO_FN_LCD_DATA6_PG6, |
195 | GPIO_FN_LCD_DATA5, GPIO_FN_LCD_DATA4, | 195 | GPIO_FN_LCD_DATA5_PG5, GPIO_FN_LCD_DATA4_PG4, |
196 | GPIO_FN_LCD_DATA3, GPIO_FN_LCD_DATA2, | 196 | GPIO_FN_LCD_DATA3_PG3, GPIO_FN_LCD_DATA2_PG2, |
197 | GPIO_FN_LCD_DATA1, GPIO_FN_LCD_DATA0, | 197 | GPIO_FN_LCD_DATA1_PG1, GPIO_FN_LCD_DATA0_PG0, |
198 | GPIO_FN_LCD_DATA23_PJ23, GPIO_FN_LCD_DATA22_PJ22, | ||
199 | GPIO_FN_LCD_DATA21_PJ21, GPIO_FN_LCD_DATA20_PJ20, | ||
200 | GPIO_FN_LCD_DATA19_PJ19, GPIO_FN_LCD_DATA18_PJ18, | ||
201 | GPIO_FN_LCD_DATA17_PJ17, GPIO_FN_LCD_DATA16_PJ16, | ||
202 | GPIO_FN_LCD_DATA15_PJ15, GPIO_FN_LCD_DATA14_PJ14, | ||
203 | GPIO_FN_LCD_DATA13_PJ13, GPIO_FN_LCD_DATA12_PJ12, | ||
204 | GPIO_FN_LCD_DATA11_PJ11, GPIO_FN_LCD_DATA10_PJ10, | ||
205 | GPIO_FN_LCD_DATA9_PJ9, GPIO_FN_LCD_DATA8_PJ8, | ||
206 | GPIO_FN_LCD_DATA7_PJ7, GPIO_FN_LCD_DATA6_PJ6, | ||
207 | GPIO_FN_LCD_DATA5_PJ5, GPIO_FN_LCD_DATA4_PJ4, | ||
208 | GPIO_FN_LCD_DATA3_PJ3, GPIO_FN_LCD_DATA2_PJ2, | ||
209 | GPIO_FN_LCD_DATA1_PJ1, GPIO_FN_LCD_DATA0_PJ0, | ||
198 | GPIO_FN_LCD_M_DISP, | 210 | GPIO_FN_LCD_M_DISP, |
199 | }; | 211 | }; |
200 | 212 | ||
diff --git a/arch/sh/kernel/cpu/sh2a/pinmux-sh7269.c b/arch/sh/kernel/cpu/sh2a/pinmux-sh7269.c index f25127c46eca..039e4587dd9b 100644 --- a/arch/sh/kernel/cpu/sh2a/pinmux-sh7269.c +++ b/arch/sh/kernel/cpu/sh2a/pinmux-sh7269.c | |||
@@ -758,12 +758,22 @@ enum { | |||
758 | DV_DATA3_MARK, DV_DATA2_MARK, DV_DATA1_MARK, DV_DATA0_MARK, | 758 | DV_DATA3_MARK, DV_DATA2_MARK, DV_DATA1_MARK, DV_DATA0_MARK, |
759 | LCD_CLK_MARK, LCD_EXTCLK_MARK, | 759 | LCD_CLK_MARK, LCD_EXTCLK_MARK, |
760 | LCD_VSYNC_MARK, LCD_HSYNC_MARK, LCD_DE_MARK, | 760 | LCD_VSYNC_MARK, LCD_HSYNC_MARK, LCD_DE_MARK, |
761 | LCD_DATA23_MARK, LCD_DATA22_MARK, LCD_DATA21_MARK, LCD_DATA20_MARK, | 761 | LCD_DATA23_PG23_MARK, LCD_DATA22_PG22_MARK, LCD_DATA21_PG21_MARK, |
762 | LCD_DATA19_MARK, LCD_DATA18_MARK, LCD_DATA17_MARK, LCD_DATA16_MARK, | 762 | LCD_DATA20_PG20_MARK, LCD_DATA19_PG19_MARK, LCD_DATA18_PG18_MARK, |
763 | LCD_DATA15_MARK, LCD_DATA14_MARK, LCD_DATA13_MARK, LCD_DATA12_MARK, | 763 | LCD_DATA17_PG17_MARK, LCD_DATA16_PG16_MARK, LCD_DATA15_PG15_MARK, |
764 | LCD_DATA11_MARK, LCD_DATA10_MARK, LCD_DATA9_MARK, LCD_DATA8_MARK, | 764 | LCD_DATA14_PG14_MARK, LCD_DATA13_PG13_MARK, LCD_DATA12_PG12_MARK, |
765 | LCD_DATA7_MARK, LCD_DATA6_MARK, LCD_DATA5_MARK, LCD_DATA4_MARK, | 765 | LCD_DATA11_PG11_MARK, LCD_DATA10_PG10_MARK, LCD_DATA9_PG9_MARK, |
766 | LCD_DATA3_MARK, LCD_DATA2_MARK, LCD_DATA1_MARK, LCD_DATA0_MARK, | 766 | LCD_DATA8_PG8_MARK, LCD_DATA7_PG7_MARK, LCD_DATA6_PG6_MARK, |
767 | LCD_DATA5_PG5_MARK, LCD_DATA4_PG4_MARK, LCD_DATA3_PG3_MARK, | ||
768 | LCD_DATA2_PG2_MARK, LCD_DATA1_PG1_MARK, LCD_DATA0_PG0_MARK, | ||
769 | LCD_DATA23_PJ23_MARK, LCD_DATA22_PJ22_MARK, LCD_DATA21_PJ21_MARK, | ||
770 | LCD_DATA20_PJ20_MARK, LCD_DATA19_PJ19_MARK, LCD_DATA18_PJ18_MARK, | ||
771 | LCD_DATA17_PJ17_MARK, LCD_DATA16_PJ16_MARK, LCD_DATA15_PJ15_MARK, | ||
772 | LCD_DATA14_PJ14_MARK, LCD_DATA13_PJ13_MARK, LCD_DATA12_PJ12_MARK, | ||
773 | LCD_DATA11_PJ11_MARK, LCD_DATA10_PJ10_MARK, LCD_DATA9_PJ9_MARK, | ||
774 | LCD_DATA8_PJ8_MARK, LCD_DATA7_PJ7_MARK, LCD_DATA6_PJ6_MARK, | ||
775 | LCD_DATA5_PJ5_MARK, LCD_DATA4_PJ4_MARK, LCD_DATA3_PJ3_MARK, | ||
776 | LCD_DATA2_PJ2_MARK, LCD_DATA1_PJ1_MARK, LCD_DATA0_PJ0_MARK, | ||
767 | LCD_TCON6_MARK, LCD_TCON5_MARK, LCD_TCON4_MARK, | 777 | LCD_TCON6_MARK, LCD_TCON5_MARK, LCD_TCON4_MARK, |
768 | LCD_TCON3_MARK, LCD_TCON2_MARK, LCD_TCON1_MARK, LCD_TCON0_MARK, | 778 | LCD_TCON3_MARK, LCD_TCON2_MARK, LCD_TCON1_MARK, LCD_TCON0_MARK, |
769 | LCD_M_DISP_MARK, | 779 | LCD_M_DISP_MARK, |
@@ -1036,6 +1046,7 @@ static pinmux_enum_t pinmux_data[] = { | |||
1036 | 1046 | ||
1037 | PINMUX_DATA(PF1_DATA, PF1MD_000), | 1047 | PINMUX_DATA(PF1_DATA, PF1MD_000), |
1038 | PINMUX_DATA(BACK_MARK, PF1MD_001), | 1048 | PINMUX_DATA(BACK_MARK, PF1MD_001), |
1049 | PINMUX_DATA(SSL10_MARK, PF1MD_011), | ||
1039 | PINMUX_DATA(TIOC4B_MARK, PF1MD_100), | 1050 | PINMUX_DATA(TIOC4B_MARK, PF1MD_100), |
1040 | PINMUX_DATA(DACK0_MARK, PF1MD_101), | 1051 | PINMUX_DATA(DACK0_MARK, PF1MD_101), |
1041 | 1052 | ||
@@ -1049,47 +1060,50 @@ static pinmux_enum_t pinmux_data[] = { | |||
1049 | PINMUX_DATA(PG27_DATA, PG27MD_00), | 1060 | PINMUX_DATA(PG27_DATA, PG27MD_00), |
1050 | PINMUX_DATA(LCD_TCON2_MARK, PG27MD_10), | 1061 | PINMUX_DATA(LCD_TCON2_MARK, PG27MD_10), |
1051 | PINMUX_DATA(LCD_EXTCLK_MARK, PG27MD_11), | 1062 | PINMUX_DATA(LCD_EXTCLK_MARK, PG27MD_11), |
1063 | PINMUX_DATA(LCD_DE_MARK, PG27MD_11), | ||
1052 | 1064 | ||
1053 | PINMUX_DATA(PG26_DATA, PG26MD_00), | 1065 | PINMUX_DATA(PG26_DATA, PG26MD_00), |
1054 | PINMUX_DATA(LCD_TCON1_MARK, PG26MD_10), | 1066 | PINMUX_DATA(LCD_TCON1_MARK, PG26MD_10), |
1067 | PINMUX_DATA(LCD_HSYNC_MARK, PG26MD_10), | ||
1055 | 1068 | ||
1056 | PINMUX_DATA(PG25_DATA, PG25MD_00), | 1069 | PINMUX_DATA(PG25_DATA, PG25MD_00), |
1057 | PINMUX_DATA(LCD_TCON0_MARK, PG25MD_10), | 1070 | PINMUX_DATA(LCD_TCON0_MARK, PG25MD_10), |
1071 | PINMUX_DATA(LCD_VSYNC_MARK, PG25MD_10), | ||
1058 | 1072 | ||
1059 | PINMUX_DATA(PG24_DATA, PG24MD_00), | 1073 | PINMUX_DATA(PG24_DATA, PG24MD_00), |
1060 | PINMUX_DATA(LCD_CLK_MARK, PG24MD_10), | 1074 | PINMUX_DATA(LCD_CLK_MARK, PG24MD_10), |
1061 | 1075 | ||
1062 | PINMUX_DATA(PG23_DATA, PG23MD_000), | 1076 | PINMUX_DATA(PG23_DATA, PG23MD_000), |
1063 | PINMUX_DATA(LCD_DATA23_MARK, PG23MD_010), | 1077 | PINMUX_DATA(LCD_DATA23_PG23_MARK, PG23MD_010), |
1064 | PINMUX_DATA(LCD_TCON6_MARK, PG23MD_011), | 1078 | PINMUX_DATA(LCD_TCON6_MARK, PG23MD_011), |
1065 | PINMUX_DATA(TXD5_MARK, PG23MD_100), | 1079 | PINMUX_DATA(TXD5_MARK, PG23MD_100), |
1066 | 1080 | ||
1067 | PINMUX_DATA(PG22_DATA, PG22MD_000), | 1081 | PINMUX_DATA(PG22_DATA, PG22MD_000), |
1068 | PINMUX_DATA(LCD_DATA22_MARK, PG22MD_010), | 1082 | PINMUX_DATA(LCD_DATA22_PG22_MARK, PG22MD_010), |
1069 | PINMUX_DATA(LCD_TCON5_MARK, PG22MD_011), | 1083 | PINMUX_DATA(LCD_TCON5_MARK, PG22MD_011), |
1070 | PINMUX_DATA(RXD5_MARK, PG22MD_100), | 1084 | PINMUX_DATA(RXD5_MARK, PG22MD_100), |
1071 | 1085 | ||
1072 | PINMUX_DATA(PG21_DATA, PG21MD_000), | 1086 | PINMUX_DATA(PG21_DATA, PG21MD_000), |
1073 | PINMUX_DATA(DV_DATA7_MARK, PG21MD_001), | 1087 | PINMUX_DATA(DV_DATA7_MARK, PG21MD_001), |
1074 | PINMUX_DATA(LCD_DATA21_MARK, PG21MD_010), | 1088 | PINMUX_DATA(LCD_DATA21_PG21_MARK, PG21MD_010), |
1075 | PINMUX_DATA(LCD_TCON4_MARK, PG21MD_011), | 1089 | PINMUX_DATA(LCD_TCON4_MARK, PG21MD_011), |
1076 | PINMUX_DATA(TXD4_MARK, PG21MD_100), | 1090 | PINMUX_DATA(TXD4_MARK, PG21MD_100), |
1077 | 1091 | ||
1078 | PINMUX_DATA(PG20_DATA, PG20MD_000), | 1092 | PINMUX_DATA(PG20_DATA, PG20MD_000), |
1079 | PINMUX_DATA(DV_DATA6_MARK, PG20MD_001), | 1093 | PINMUX_DATA(DV_DATA6_MARK, PG20MD_001), |
1080 | PINMUX_DATA(LCD_DATA20_MARK, PG21MD_010), | 1094 | PINMUX_DATA(LCD_DATA20_PG20_MARK, PG21MD_010), |
1081 | PINMUX_DATA(LCD_TCON3_MARK, PG20MD_011), | 1095 | PINMUX_DATA(LCD_TCON3_MARK, PG20MD_011), |
1082 | PINMUX_DATA(RXD4_MARK, PG20MD_100), | 1096 | PINMUX_DATA(RXD4_MARK, PG20MD_100), |
1083 | 1097 | ||
1084 | PINMUX_DATA(PG19_DATA, PG19MD_000), | 1098 | PINMUX_DATA(PG19_DATA, PG19MD_000), |
1085 | PINMUX_DATA(DV_DATA5_MARK, PG19MD_001), | 1099 | PINMUX_DATA(DV_DATA5_MARK, PG19MD_001), |
1086 | PINMUX_DATA(LCD_DATA19_MARK, PG19MD_010), | 1100 | PINMUX_DATA(LCD_DATA19_PG19_MARK, PG19MD_010), |
1087 | PINMUX_DATA(SPDIF_OUT_MARK, PG19MD_011), | 1101 | PINMUX_DATA(SPDIF_OUT_MARK, PG19MD_011), |
1088 | PINMUX_DATA(SCK5_MARK, PG19MD_100), | 1102 | PINMUX_DATA(SCK5_MARK, PG19MD_100), |
1089 | 1103 | ||
1090 | PINMUX_DATA(PG18_DATA, PG18MD_000), | 1104 | PINMUX_DATA(PG18_DATA, PG18MD_000), |
1091 | PINMUX_DATA(DV_DATA4_MARK, PG18MD_001), | 1105 | PINMUX_DATA(DV_DATA4_MARK, PG18MD_001), |
1092 | PINMUX_DATA(LCD_DATA18_MARK, PG18MD_010), | 1106 | PINMUX_DATA(LCD_DATA18_PG18_MARK, PG18MD_010), |
1093 | PINMUX_DATA(SPDIF_IN_MARK, PG18MD_011), | 1107 | PINMUX_DATA(SPDIF_IN_MARK, PG18MD_011), |
1094 | PINMUX_DATA(SCK4_MARK, PG18MD_100), | 1108 | PINMUX_DATA(SCK4_MARK, PG18MD_100), |
1095 | 1109 | ||
@@ -1097,103 +1111,103 @@ static pinmux_enum_t pinmux_data[] = { | |||
1097 | // we're going with 2 bits | 1111 | // we're going with 2 bits |
1098 | PINMUX_DATA(PG17_DATA, PG17MD_00), | 1112 | PINMUX_DATA(PG17_DATA, PG17MD_00), |
1099 | PINMUX_DATA(WE3ICIOWRAHDQMUU_MARK, PG17MD_01), | 1113 | PINMUX_DATA(WE3ICIOWRAHDQMUU_MARK, PG17MD_01), |
1100 | PINMUX_DATA(LCD_DATA17_MARK, PG17MD_10), | 1114 | PINMUX_DATA(LCD_DATA17_PG17_MARK, PG17MD_10), |
1101 | 1115 | ||
1102 | // TODO hardware manual has PG16 3 bits wide in reg picture and 2 bits in description | 1116 | // TODO hardware manual has PG16 3 bits wide in reg picture and 2 bits in description |
1103 | // we're going with 2 bits | 1117 | // we're going with 2 bits |
1104 | PINMUX_DATA(PG16_DATA, PG16MD_00), | 1118 | PINMUX_DATA(PG16_DATA, PG16MD_00), |
1105 | PINMUX_DATA(WE2ICIORDDQMUL_MARK, PG16MD_01), | 1119 | PINMUX_DATA(WE2ICIORDDQMUL_MARK, PG16MD_01), |
1106 | PINMUX_DATA(LCD_DATA16_MARK, PG16MD_10), | 1120 | PINMUX_DATA(LCD_DATA16_PG16_MARK, PG16MD_10), |
1107 | 1121 | ||
1108 | PINMUX_DATA(PG15_DATA, PG15MD_00), | 1122 | PINMUX_DATA(PG15_DATA, PG15MD_00), |
1109 | PINMUX_DATA(D31_MARK, PG15MD_01), | 1123 | PINMUX_DATA(D31_MARK, PG15MD_01), |
1110 | PINMUX_DATA(LCD_DATA15_MARK, PG15MD_10), | 1124 | PINMUX_DATA(LCD_DATA15_PG15_MARK, PG15MD_10), |
1111 | PINMUX_DATA(PINT7_PG_MARK, PG15MD_11), | 1125 | PINMUX_DATA(PINT7_PG_MARK, PG15MD_11), |
1112 | 1126 | ||
1113 | PINMUX_DATA(PG14_DATA, PG14MD_00), | 1127 | PINMUX_DATA(PG14_DATA, PG14MD_00), |
1114 | PINMUX_DATA(D30_MARK, PG14MD_01), | 1128 | PINMUX_DATA(D30_MARK, PG14MD_01), |
1115 | PINMUX_DATA(LCD_DATA14_MARK, PG14MD_10), | 1129 | PINMUX_DATA(LCD_DATA14_PG14_MARK, PG14MD_10), |
1116 | PINMUX_DATA(PINT6_PG_MARK, PG14MD_11), | 1130 | PINMUX_DATA(PINT6_PG_MARK, PG14MD_11), |
1117 | 1131 | ||
1118 | PINMUX_DATA(PG13_DATA, PG13MD_00), | 1132 | PINMUX_DATA(PG13_DATA, PG13MD_00), |
1119 | PINMUX_DATA(D29_MARK, PG13MD_01), | 1133 | PINMUX_DATA(D29_MARK, PG13MD_01), |
1120 | PINMUX_DATA(LCD_DATA13_MARK, PG13MD_10), | 1134 | PINMUX_DATA(LCD_DATA13_PG13_MARK, PG13MD_10), |
1121 | PINMUX_DATA(PINT5_PG_MARK, PG13MD_11), | 1135 | PINMUX_DATA(PINT5_PG_MARK, PG13MD_11), |
1122 | 1136 | ||
1123 | PINMUX_DATA(PG12_DATA, PG12MD_00), | 1137 | PINMUX_DATA(PG12_DATA, PG12MD_00), |
1124 | PINMUX_DATA(D28_MARK, PG12MD_01), | 1138 | PINMUX_DATA(D28_MARK, PG12MD_01), |
1125 | PINMUX_DATA(LCD_DATA12_MARK, PG12MD_10), | 1139 | PINMUX_DATA(LCD_DATA12_PG12_MARK, PG12MD_10), |
1126 | PINMUX_DATA(PINT4_PG_MARK, PG12MD_11), | 1140 | PINMUX_DATA(PINT4_PG_MARK, PG12MD_11), |
1127 | 1141 | ||
1128 | PINMUX_DATA(PG11_DATA, PG11MD_000), | 1142 | PINMUX_DATA(PG11_DATA, PG11MD_000), |
1129 | PINMUX_DATA(D27_MARK, PG11MD_001), | 1143 | PINMUX_DATA(D27_MARK, PG11MD_001), |
1130 | PINMUX_DATA(LCD_DATA11_MARK, PG11MD_010), | 1144 | PINMUX_DATA(LCD_DATA11_PG11_MARK, PG11MD_010), |
1131 | PINMUX_DATA(PINT3_PG_MARK, PG11MD_011), | 1145 | PINMUX_DATA(PINT3_PG_MARK, PG11MD_011), |
1132 | PINMUX_DATA(TIOC3D_MARK, PG11MD_100), | 1146 | PINMUX_DATA(TIOC3D_MARK, PG11MD_100), |
1133 | 1147 | ||
1134 | PINMUX_DATA(PG10_DATA, PG10MD_000), | 1148 | PINMUX_DATA(PG10_DATA, PG10MD_000), |
1135 | PINMUX_DATA(D26_MARK, PG10MD_001), | 1149 | PINMUX_DATA(D26_MARK, PG10MD_001), |
1136 | PINMUX_DATA(LCD_DATA10_MARK, PG10MD_010), | 1150 | PINMUX_DATA(LCD_DATA10_PG10_MARK, PG10MD_010), |
1137 | PINMUX_DATA(PINT2_PG_MARK, PG10MD_011), | 1151 | PINMUX_DATA(PINT2_PG_MARK, PG10MD_011), |
1138 | PINMUX_DATA(TIOC3C_MARK, PG10MD_100), | 1152 | PINMUX_DATA(TIOC3C_MARK, PG10MD_100), |
1139 | 1153 | ||
1140 | PINMUX_DATA(PG9_DATA, PG9MD_000), | 1154 | PINMUX_DATA(PG9_DATA, PG9MD_000), |
1141 | PINMUX_DATA(D25_MARK, PG9MD_001), | 1155 | PINMUX_DATA(D25_MARK, PG9MD_001), |
1142 | PINMUX_DATA(LCD_DATA9_MARK, PG9MD_010), | 1156 | PINMUX_DATA(LCD_DATA9_PG9_MARK, PG9MD_010), |
1143 | PINMUX_DATA(PINT1_PG_MARK, PG9MD_011), | 1157 | PINMUX_DATA(PINT1_PG_MARK, PG9MD_011), |
1144 | PINMUX_DATA(TIOC3B_MARK, PG9MD_100), | 1158 | PINMUX_DATA(TIOC3B_MARK, PG9MD_100), |
1145 | 1159 | ||
1146 | PINMUX_DATA(PG8_DATA, PG8MD_000), | 1160 | PINMUX_DATA(PG8_DATA, PG8MD_000), |
1147 | PINMUX_DATA(D24_MARK, PG8MD_001), | 1161 | PINMUX_DATA(D24_MARK, PG8MD_001), |
1148 | PINMUX_DATA(LCD_DATA8_MARK, PG8MD_010), | 1162 | PINMUX_DATA(LCD_DATA8_PG8_MARK, PG8MD_010), |
1149 | PINMUX_DATA(PINT0_PG_MARK, PG8MD_011), | 1163 | PINMUX_DATA(PINT0_PG_MARK, PG8MD_011), |
1150 | PINMUX_DATA(TIOC3A_MARK, PG8MD_100), | 1164 | PINMUX_DATA(TIOC3A_MARK, PG8MD_100), |
1151 | 1165 | ||
1152 | PINMUX_DATA(PG7_DATA, PG7MD_000), | 1166 | PINMUX_DATA(PG7_DATA, PG7MD_000), |
1153 | PINMUX_DATA(D23_MARK, PG7MD_001), | 1167 | PINMUX_DATA(D23_MARK, PG7MD_001), |
1154 | PINMUX_DATA(LCD_DATA7_MARK, PG7MD_010), | 1168 | PINMUX_DATA(LCD_DATA7_PG7_MARK, PG7MD_010), |
1155 | PINMUX_DATA(IRQ7_PG_MARK, PG7MD_011), | 1169 | PINMUX_DATA(IRQ7_PG_MARK, PG7MD_011), |
1156 | PINMUX_DATA(TIOC2B_MARK, PG7MD_100), | 1170 | PINMUX_DATA(TIOC2B_MARK, PG7MD_100), |
1157 | 1171 | ||
1158 | PINMUX_DATA(PG6_DATA, PG6MD_000), | 1172 | PINMUX_DATA(PG6_DATA, PG6MD_000), |
1159 | PINMUX_DATA(D22_MARK, PG6MD_001), | 1173 | PINMUX_DATA(D22_MARK, PG6MD_001), |
1160 | PINMUX_DATA(LCD_DATA6_MARK, PG6MD_010), | 1174 | PINMUX_DATA(LCD_DATA6_PG6_MARK, PG6MD_010), |
1161 | PINMUX_DATA(IRQ6_PG_MARK, PG6MD_011), | 1175 | PINMUX_DATA(IRQ6_PG_MARK, PG6MD_011), |
1162 | PINMUX_DATA(TIOC2A_MARK, PG6MD_100), | 1176 | PINMUX_DATA(TIOC2A_MARK, PG6MD_100), |
1163 | 1177 | ||
1164 | PINMUX_DATA(PG5_DATA, PG5MD_000), | 1178 | PINMUX_DATA(PG5_DATA, PG5MD_000), |
1165 | PINMUX_DATA(D21_MARK, PG5MD_001), | 1179 | PINMUX_DATA(D21_MARK, PG5MD_001), |
1166 | PINMUX_DATA(LCD_DATA5_MARK, PG5MD_010), | 1180 | PINMUX_DATA(LCD_DATA5_PG5_MARK, PG5MD_010), |
1167 | PINMUX_DATA(IRQ5_PG_MARK, PG5MD_011), | 1181 | PINMUX_DATA(IRQ5_PG_MARK, PG5MD_011), |
1168 | PINMUX_DATA(TIOC1B_MARK, PG5MD_100), | 1182 | PINMUX_DATA(TIOC1B_MARK, PG5MD_100), |
1169 | 1183 | ||
1170 | PINMUX_DATA(PG4_DATA, PG4MD_000), | 1184 | PINMUX_DATA(PG4_DATA, PG4MD_000), |
1171 | PINMUX_DATA(D20_MARK, PG4MD_001), | 1185 | PINMUX_DATA(D20_MARK, PG4MD_001), |
1172 | PINMUX_DATA(LCD_DATA4_MARK, PG4MD_010), | 1186 | PINMUX_DATA(LCD_DATA4_PG4_MARK, PG4MD_010), |
1173 | PINMUX_DATA(IRQ4_PG_MARK, PG4MD_011), | 1187 | PINMUX_DATA(IRQ4_PG_MARK, PG4MD_011), |
1174 | PINMUX_DATA(TIOC1A_MARK, PG4MD_100), | 1188 | PINMUX_DATA(TIOC1A_MARK, PG4MD_100), |
1175 | 1189 | ||
1176 | PINMUX_DATA(PG3_DATA, PG3MD_000), | 1190 | PINMUX_DATA(PG3_DATA, PG3MD_000), |
1177 | PINMUX_DATA(D19_MARK, PG3MD_001), | 1191 | PINMUX_DATA(D19_MARK, PG3MD_001), |
1178 | PINMUX_DATA(LCD_DATA3_MARK, PG3MD_010), | 1192 | PINMUX_DATA(LCD_DATA3_PG3_MARK, PG3MD_010), |
1179 | PINMUX_DATA(IRQ3_PG_MARK, PG3MD_011), | 1193 | PINMUX_DATA(IRQ3_PG_MARK, PG3MD_011), |
1180 | PINMUX_DATA(TIOC0D_MARK, PG3MD_100), | 1194 | PINMUX_DATA(TIOC0D_MARK, PG3MD_100), |
1181 | 1195 | ||
1182 | PINMUX_DATA(PG2_DATA, PG2MD_000), | 1196 | PINMUX_DATA(PG2_DATA, PG2MD_000), |
1183 | PINMUX_DATA(D18_MARK, PG2MD_001), | 1197 | PINMUX_DATA(D18_MARK, PG2MD_001), |
1184 | PINMUX_DATA(LCD_DATA2_MARK, PG2MD_010), | 1198 | PINMUX_DATA(LCD_DATA2_PG2_MARK, PG2MD_010), |
1185 | PINMUX_DATA(IRQ2_PG_MARK, PG2MD_011), | 1199 | PINMUX_DATA(IRQ2_PG_MARK, PG2MD_011), |
1186 | PINMUX_DATA(TIOC0C_MARK, PG2MD_100), | 1200 | PINMUX_DATA(TIOC0C_MARK, PG2MD_100), |
1187 | 1201 | ||
1188 | PINMUX_DATA(PG1_DATA, PG1MD_000), | 1202 | PINMUX_DATA(PG1_DATA, PG1MD_000), |
1189 | PINMUX_DATA(D17_MARK, PG1MD_001), | 1203 | PINMUX_DATA(D17_MARK, PG1MD_001), |
1190 | PINMUX_DATA(LCD_DATA1_MARK, PG1MD_010), | 1204 | PINMUX_DATA(LCD_DATA1_PG1_MARK, PG1MD_010), |
1191 | PINMUX_DATA(IRQ1_PG_MARK, PG1MD_011), | 1205 | PINMUX_DATA(IRQ1_PG_MARK, PG1MD_011), |
1192 | PINMUX_DATA(TIOC0B_MARK, PG1MD_100), | 1206 | PINMUX_DATA(TIOC0B_MARK, PG1MD_100), |
1193 | 1207 | ||
1194 | PINMUX_DATA(PG0_DATA, PG0MD_000), | 1208 | PINMUX_DATA(PG0_DATA, PG0MD_000), |
1195 | PINMUX_DATA(D16_MARK, PG0MD_001), | 1209 | PINMUX_DATA(D16_MARK, PG0MD_001), |
1196 | PINMUX_DATA(LCD_DATA0_MARK, PG0MD_010), | 1210 | PINMUX_DATA(LCD_DATA0_PG0_MARK, PG0MD_010), |
1197 | PINMUX_DATA(IRQ0_PG_MARK, PG0MD_011), | 1211 | PINMUX_DATA(IRQ0_PG_MARK, PG0MD_011), |
1198 | PINMUX_DATA(TIOC0A_MARK, PG0MD_100), | 1212 | PINMUX_DATA(TIOC0A_MARK, PG0MD_100), |
1199 | 1213 | ||
@@ -1275,14 +1289,14 @@ static pinmux_enum_t pinmux_data[] = { | |||
1275 | 1289 | ||
1276 | PINMUX_DATA(PJ23_DATA, PJ23MD_000), | 1290 | PINMUX_DATA(PJ23_DATA, PJ23MD_000), |
1277 | PINMUX_DATA(DV_DATA23_MARK, PJ23MD_001), | 1291 | PINMUX_DATA(DV_DATA23_MARK, PJ23MD_001), |
1278 | PINMUX_DATA(LCD_DATA23_MARK, PJ23MD_010), | 1292 | PINMUX_DATA(LCD_DATA23_PJ23_MARK, PJ23MD_010), |
1279 | PINMUX_DATA(LCD_TCON6_MARK, PJ23MD_011), | 1293 | PINMUX_DATA(LCD_TCON6_MARK, PJ23MD_011), |
1280 | PINMUX_DATA(IRQ3_PJ_MARK, PJ23MD_100), | 1294 | PINMUX_DATA(IRQ3_PJ_MARK, PJ23MD_100), |
1281 | PINMUX_DATA(CTX1_MARK, PJ23MD_101), | 1295 | PINMUX_DATA(CTX1_MARK, PJ23MD_101), |
1282 | 1296 | ||
1283 | PINMUX_DATA(PJ22_DATA, PJ22MD_000), | 1297 | PINMUX_DATA(PJ22_DATA, PJ22MD_000), |
1284 | PINMUX_DATA(DV_DATA22_MARK, PJ22MD_001), | 1298 | PINMUX_DATA(DV_DATA22_MARK, PJ22MD_001), |
1285 | PINMUX_DATA(LCD_DATA22_MARK, PJ22MD_010), | 1299 | PINMUX_DATA(LCD_DATA22_PJ22_MARK, PJ22MD_010), |
1286 | PINMUX_DATA(LCD_TCON5_MARK, PJ22MD_011), | 1300 | PINMUX_DATA(LCD_TCON5_MARK, PJ22MD_011), |
1287 | PINMUX_DATA(IRQ2_PJ_MARK, PJ22MD_100), | 1301 | PINMUX_DATA(IRQ2_PJ_MARK, PJ22MD_100), |
1288 | PINMUX_DATA(CRX1_MARK, PJ22MD_101), | 1302 | PINMUX_DATA(CRX1_MARK, PJ22MD_101), |
@@ -1290,14 +1304,14 @@ static pinmux_enum_t pinmux_data[] = { | |||
1290 | 1304 | ||
1291 | PINMUX_DATA(PJ21_DATA, PJ21MD_000), | 1305 | PINMUX_DATA(PJ21_DATA, PJ21MD_000), |
1292 | PINMUX_DATA(DV_DATA21_MARK, PJ21MD_001), | 1306 | PINMUX_DATA(DV_DATA21_MARK, PJ21MD_001), |
1293 | PINMUX_DATA(LCD_DATA21_MARK, PJ21MD_010), | 1307 | PINMUX_DATA(LCD_DATA21_PJ21_MARK, PJ21MD_010), |
1294 | PINMUX_DATA(LCD_TCON4_MARK, PJ21MD_011), | 1308 | PINMUX_DATA(LCD_TCON4_MARK, PJ21MD_011), |
1295 | PINMUX_DATA(IRQ1_PJ_MARK, PJ21MD_100), | 1309 | PINMUX_DATA(IRQ1_PJ_MARK, PJ21MD_100), |
1296 | PINMUX_DATA(CTX2_MARK, PJ21MD_101), | 1310 | PINMUX_DATA(CTX2_MARK, PJ21MD_101), |
1297 | 1311 | ||
1298 | PINMUX_DATA(PJ20_DATA, PJ20MD_000), | 1312 | PINMUX_DATA(PJ20_DATA, PJ20MD_000), |
1299 | PINMUX_DATA(DV_DATA20_MARK, PJ20MD_001), | 1313 | PINMUX_DATA(DV_DATA20_MARK, PJ20MD_001), |
1300 | PINMUX_DATA(LCD_DATA20_MARK, PJ20MD_010), | 1314 | PINMUX_DATA(LCD_DATA20_PJ20_MARK, PJ20MD_010), |
1301 | PINMUX_DATA(LCD_TCON3_MARK, PJ20MD_011), | 1315 | PINMUX_DATA(LCD_TCON3_MARK, PJ20MD_011), |
1302 | PINMUX_DATA(IRQ0_PJ_MARK, PJ20MD_100), | 1316 | PINMUX_DATA(IRQ0_PJ_MARK, PJ20MD_100), |
1303 | PINMUX_DATA(CRX2_MARK, PJ20MD_101), | 1317 | PINMUX_DATA(CRX2_MARK, PJ20MD_101), |
@@ -1305,7 +1319,7 @@ static pinmux_enum_t pinmux_data[] = { | |||
1305 | 1319 | ||
1306 | PINMUX_DATA(PJ19_DATA, PJ19MD_000), | 1320 | PINMUX_DATA(PJ19_DATA, PJ19MD_000), |
1307 | PINMUX_DATA(DV_DATA19_MARK, PJ19MD_001), | 1321 | PINMUX_DATA(DV_DATA19_MARK, PJ19MD_001), |
1308 | PINMUX_DATA(LCD_DATA19_MARK, PJ19MD_010), | 1322 | PINMUX_DATA(LCD_DATA19_PJ19_MARK, PJ19MD_010), |
1309 | PINMUX_DATA(MISO0_PJ19_MARK, PJ19MD_011), | 1323 | PINMUX_DATA(MISO0_PJ19_MARK, PJ19MD_011), |
1310 | PINMUX_DATA(TIOC0D_MARK, PJ19MD_100), | 1324 | PINMUX_DATA(TIOC0D_MARK, PJ19MD_100), |
1311 | PINMUX_DATA(SIOFRXD_MARK, PJ19MD_101), | 1325 | PINMUX_DATA(SIOFRXD_MARK, PJ19MD_101), |
@@ -1313,126 +1327,126 @@ static pinmux_enum_t pinmux_data[] = { | |||
1313 | 1327 | ||
1314 | PINMUX_DATA(PJ18_DATA, PJ18MD_000), | 1328 | PINMUX_DATA(PJ18_DATA, PJ18MD_000), |
1315 | PINMUX_DATA(DV_DATA18_MARK, PJ18MD_001), | 1329 | PINMUX_DATA(DV_DATA18_MARK, PJ18MD_001), |
1316 | PINMUX_DATA(LCD_DATA18_MARK, PJ18MD_010), | 1330 | PINMUX_DATA(LCD_DATA18_PJ18_MARK, PJ18MD_010), |
1317 | PINMUX_DATA(MOSI0_PJ18_MARK, PJ18MD_011), | 1331 | PINMUX_DATA(MOSI0_PJ18_MARK, PJ18MD_011), |
1318 | PINMUX_DATA(TIOC0C_MARK, PJ18MD_100), | 1332 | PINMUX_DATA(TIOC0C_MARK, PJ18MD_100), |
1319 | PINMUX_DATA(SIOFTXD_MARK, PJ18MD_101), | 1333 | PINMUX_DATA(SIOFTXD_MARK, PJ18MD_101), |
1320 | 1334 | ||
1321 | PINMUX_DATA(PJ17_DATA, PJ17MD_000), | 1335 | PINMUX_DATA(PJ17_DATA, PJ17MD_000), |
1322 | PINMUX_DATA(DV_DATA17_MARK, PJ17MD_001), | 1336 | PINMUX_DATA(DV_DATA17_MARK, PJ17MD_001), |
1323 | PINMUX_DATA(LCD_DATA17_MARK, PJ17MD_010), | 1337 | PINMUX_DATA(LCD_DATA17_PJ17_MARK, PJ17MD_010), |
1324 | PINMUX_DATA(SSL00_PJ17_MARK, PJ17MD_011), | 1338 | PINMUX_DATA(SSL00_PJ17_MARK, PJ17MD_011), |
1325 | PINMUX_DATA(TIOC0B_MARK, PJ17MD_100), | 1339 | PINMUX_DATA(TIOC0B_MARK, PJ17MD_100), |
1326 | PINMUX_DATA(SIOFSYNC_MARK, PJ17MD_101), | 1340 | PINMUX_DATA(SIOFSYNC_MARK, PJ17MD_101), |
1327 | 1341 | ||
1328 | PINMUX_DATA(PJ16_DATA, PJ16MD_000), | 1342 | PINMUX_DATA(PJ16_DATA, PJ16MD_000), |
1329 | PINMUX_DATA(DV_DATA16_MARK, PJ16MD_001), | 1343 | PINMUX_DATA(DV_DATA16_MARK, PJ16MD_001), |
1330 | PINMUX_DATA(LCD_DATA16_MARK, PJ16MD_010), | 1344 | PINMUX_DATA(LCD_DATA16_PJ16_MARK, PJ16MD_010), |
1331 | PINMUX_DATA(RSPCK0_PJ16_MARK, PJ16MD_011), | 1345 | PINMUX_DATA(RSPCK0_PJ16_MARK, PJ16MD_011), |
1332 | PINMUX_DATA(TIOC0A_MARK, PJ16MD_100), | 1346 | PINMUX_DATA(TIOC0A_MARK, PJ16MD_100), |
1333 | PINMUX_DATA(SIOFSCK_MARK, PJ16MD_101), | 1347 | PINMUX_DATA(SIOFSCK_MARK, PJ16MD_101), |
1334 | 1348 | ||
1335 | PINMUX_DATA(PJ15_DATA, PJ15MD_000), | 1349 | PINMUX_DATA(PJ15_DATA, PJ15MD_000), |
1336 | PINMUX_DATA(DV_DATA15_MARK, PJ15MD_001), | 1350 | PINMUX_DATA(DV_DATA15_MARK, PJ15MD_001), |
1337 | PINMUX_DATA(LCD_DATA15_MARK, PJ15MD_010), | 1351 | PINMUX_DATA(LCD_DATA15_PJ15_MARK, PJ15MD_010), |
1338 | PINMUX_DATA(PINT7_PJ_MARK, PJ15MD_011), | 1352 | PINMUX_DATA(PINT7_PJ_MARK, PJ15MD_011), |
1339 | PINMUX_DATA(PWM2H_MARK, PJ15MD_100), | 1353 | PINMUX_DATA(PWM2H_MARK, PJ15MD_100), |
1340 | PINMUX_DATA(TXD7_MARK, PJ15MD_101), | 1354 | PINMUX_DATA(TXD7_MARK, PJ15MD_101), |
1341 | 1355 | ||
1342 | PINMUX_DATA(PJ14_DATA, PJ14MD_000), | 1356 | PINMUX_DATA(PJ14_DATA, PJ14MD_000), |
1343 | PINMUX_DATA(DV_DATA14_MARK, PJ14MD_001), | 1357 | PINMUX_DATA(DV_DATA14_MARK, PJ14MD_001), |
1344 | PINMUX_DATA(LCD_DATA14_MARK, PJ14MD_010), | 1358 | PINMUX_DATA(LCD_DATA14_PJ14_MARK, PJ14MD_010), |
1345 | PINMUX_DATA(PINT6_PJ_MARK, PJ14MD_011), | 1359 | PINMUX_DATA(PINT6_PJ_MARK, PJ14MD_011), |
1346 | PINMUX_DATA(PWM2G_MARK, PJ14MD_100), | 1360 | PINMUX_DATA(PWM2G_MARK, PJ14MD_100), |
1347 | PINMUX_DATA(TXD6_MARK, PJ14MD_101), | 1361 | PINMUX_DATA(TXD6_MARK, PJ14MD_101), |
1348 | 1362 | ||
1349 | PINMUX_DATA(PJ13_DATA, PJ13MD_000), | 1363 | PINMUX_DATA(PJ13_DATA, PJ13MD_000), |
1350 | PINMUX_DATA(DV_DATA13_MARK, PJ13MD_001), | 1364 | PINMUX_DATA(DV_DATA13_MARK, PJ13MD_001), |
1351 | PINMUX_DATA(LCD_DATA13_MARK, PJ13MD_010), | 1365 | PINMUX_DATA(LCD_DATA13_PJ13_MARK, PJ13MD_010), |
1352 | PINMUX_DATA(PINT5_PJ_MARK, PJ13MD_011), | 1366 | PINMUX_DATA(PINT5_PJ_MARK, PJ13MD_011), |
1353 | PINMUX_DATA(PWM2F_MARK, PJ13MD_100), | 1367 | PINMUX_DATA(PWM2F_MARK, PJ13MD_100), |
1354 | PINMUX_DATA(TXD5_MARK, PJ13MD_101), | 1368 | PINMUX_DATA(TXD5_MARK, PJ13MD_101), |
1355 | 1369 | ||
1356 | PINMUX_DATA(PJ12_DATA, PJ12MD_000), | 1370 | PINMUX_DATA(PJ12_DATA, PJ12MD_000), |
1357 | PINMUX_DATA(DV_DATA12_MARK, PJ12MD_001), | 1371 | PINMUX_DATA(DV_DATA12_MARK, PJ12MD_001), |
1358 | PINMUX_DATA(LCD_DATA12_MARK, PJ12MD_010), | 1372 | PINMUX_DATA(LCD_DATA12_PJ12_MARK, PJ12MD_010), |
1359 | PINMUX_DATA(PINT4_PJ_MARK, PJ12MD_011), | 1373 | PINMUX_DATA(PINT4_PJ_MARK, PJ12MD_011), |
1360 | PINMUX_DATA(PWM2E_MARK, PJ12MD_100), | 1374 | PINMUX_DATA(PWM2E_MARK, PJ12MD_100), |
1361 | PINMUX_DATA(SCK7_MARK, PJ12MD_101), | 1375 | PINMUX_DATA(SCK7_MARK, PJ12MD_101), |
1362 | 1376 | ||
1363 | PINMUX_DATA(PJ11_DATA, PJ11MD_000), | 1377 | PINMUX_DATA(PJ11_DATA, PJ11MD_000), |
1364 | PINMUX_DATA(DV_DATA11_MARK, PJ11MD_001), | 1378 | PINMUX_DATA(DV_DATA11_MARK, PJ11MD_001), |
1365 | PINMUX_DATA(LCD_DATA11_MARK, PJ11MD_010), | 1379 | PINMUX_DATA(LCD_DATA11_PJ11_MARK, PJ11MD_010), |
1366 | PINMUX_DATA(PINT3_PJ_MARK, PJ11MD_011), | 1380 | PINMUX_DATA(PINT3_PJ_MARK, PJ11MD_011), |
1367 | PINMUX_DATA(PWM2D_MARK, PJ11MD_100), | 1381 | PINMUX_DATA(PWM2D_MARK, PJ11MD_100), |
1368 | PINMUX_DATA(SCK6_MARK, PJ11MD_101), | 1382 | PINMUX_DATA(SCK6_MARK, PJ11MD_101), |
1369 | 1383 | ||
1370 | PINMUX_DATA(PJ10_DATA, PJ10MD_000), | 1384 | PINMUX_DATA(PJ10_DATA, PJ10MD_000), |
1371 | PINMUX_DATA(DV_DATA10_MARK, PJ10MD_001), | 1385 | PINMUX_DATA(DV_DATA10_MARK, PJ10MD_001), |
1372 | PINMUX_DATA(LCD_DATA10_MARK, PJ10MD_010), | 1386 | PINMUX_DATA(LCD_DATA10_PJ10_MARK, PJ10MD_010), |
1373 | PINMUX_DATA(PINT2_PJ_MARK, PJ10MD_011), | 1387 | PINMUX_DATA(PINT2_PJ_MARK, PJ10MD_011), |
1374 | PINMUX_DATA(PWM2C_MARK, PJ10MD_100), | 1388 | PINMUX_DATA(PWM2C_MARK, PJ10MD_100), |
1375 | PINMUX_DATA(SCK5_MARK, PJ10MD_101), | 1389 | PINMUX_DATA(SCK5_MARK, PJ10MD_101), |
1376 | 1390 | ||
1377 | PINMUX_DATA(PJ9_DATA, PJ9MD_000), | 1391 | PINMUX_DATA(PJ9_DATA, PJ9MD_000), |
1378 | PINMUX_DATA(DV_DATA9_MARK, PJ9MD_001), | 1392 | PINMUX_DATA(DV_DATA9_MARK, PJ9MD_001), |
1379 | PINMUX_DATA(LCD_DATA9_MARK, PJ9MD_010), | 1393 | PINMUX_DATA(LCD_DATA9_PJ9_MARK, PJ9MD_010), |
1380 | PINMUX_DATA(PINT1_PJ_MARK, PJ9MD_011), | 1394 | PINMUX_DATA(PINT1_PJ_MARK, PJ9MD_011), |
1381 | PINMUX_DATA(PWM2B_MARK, PJ9MD_100), | 1395 | PINMUX_DATA(PWM2B_MARK, PJ9MD_100), |
1382 | PINMUX_DATA(RTS5_MARK, PJ9MD_101), | 1396 | PINMUX_DATA(RTS5_MARK, PJ9MD_101), |
1383 | 1397 | ||
1384 | PINMUX_DATA(PJ8_DATA, PJ8MD_000), | 1398 | PINMUX_DATA(PJ8_DATA, PJ8MD_000), |
1385 | PINMUX_DATA(DV_DATA8_MARK, PJ8MD_001), | 1399 | PINMUX_DATA(DV_DATA8_MARK, PJ8MD_001), |
1386 | PINMUX_DATA(LCD_DATA8_MARK, PJ8MD_010), | 1400 | PINMUX_DATA(LCD_DATA8_PJ8_MARK, PJ8MD_010), |
1387 | PINMUX_DATA(PINT0_PJ_MARK, PJ8MD_011), | 1401 | PINMUX_DATA(PINT0_PJ_MARK, PJ8MD_011), |
1388 | PINMUX_DATA(PWM2A_MARK, PJ8MD_100), | 1402 | PINMUX_DATA(PWM2A_MARK, PJ8MD_100), |
1389 | PINMUX_DATA(CTS5_MARK, PJ8MD_101), | 1403 | PINMUX_DATA(CTS5_MARK, PJ8MD_101), |
1390 | 1404 | ||
1391 | PINMUX_DATA(PJ7_DATA, PJ7MD_000), | 1405 | PINMUX_DATA(PJ7_DATA, PJ7MD_000), |
1392 | PINMUX_DATA(DV_DATA7_MARK, PJ7MD_001), | 1406 | PINMUX_DATA(DV_DATA7_MARK, PJ7MD_001), |
1393 | PINMUX_DATA(LCD_DATA7_MARK, PJ7MD_010), | 1407 | PINMUX_DATA(LCD_DATA7_PJ7_MARK, PJ7MD_010), |
1394 | PINMUX_DATA(SD_D2_MARK, PJ7MD_011), | 1408 | PINMUX_DATA(SD_D2_MARK, PJ7MD_011), |
1395 | PINMUX_DATA(PWM1H_MARK, PJ7MD_100), | 1409 | PINMUX_DATA(PWM1H_MARK, PJ7MD_100), |
1396 | 1410 | ||
1397 | PINMUX_DATA(PJ6_DATA, PJ6MD_000), | 1411 | PINMUX_DATA(PJ6_DATA, PJ6MD_000), |
1398 | PINMUX_DATA(DV_DATA6_MARK, PJ6MD_001), | 1412 | PINMUX_DATA(DV_DATA6_MARK, PJ6MD_001), |
1399 | PINMUX_DATA(LCD_DATA6_MARK, PJ6MD_010), | 1413 | PINMUX_DATA(LCD_DATA6_PJ6_MARK, PJ6MD_010), |
1400 | PINMUX_DATA(SD_D3_MARK, PJ6MD_011), | 1414 | PINMUX_DATA(SD_D3_MARK, PJ6MD_011), |
1401 | PINMUX_DATA(PWM1G_MARK, PJ6MD_100), | 1415 | PINMUX_DATA(PWM1G_MARK, PJ6MD_100), |
1402 | 1416 | ||
1403 | PINMUX_DATA(PJ5_DATA, PJ5MD_000), | 1417 | PINMUX_DATA(PJ5_DATA, PJ5MD_000), |
1404 | PINMUX_DATA(DV_DATA5_MARK, PJ5MD_001), | 1418 | PINMUX_DATA(DV_DATA5_MARK, PJ5MD_001), |
1405 | PINMUX_DATA(LCD_DATA5_MARK, PJ5MD_010), | 1419 | PINMUX_DATA(LCD_DATA5_PJ5_MARK, PJ5MD_010), |
1406 | PINMUX_DATA(SD_CMD_MARK, PJ5MD_011), | 1420 | PINMUX_DATA(SD_CMD_MARK, PJ5MD_011), |
1407 | PINMUX_DATA(PWM1F_MARK, PJ5MD_100), | 1421 | PINMUX_DATA(PWM1F_MARK, PJ5MD_100), |
1408 | 1422 | ||
1409 | PINMUX_DATA(PJ4_DATA, PJ4MD_000), | 1423 | PINMUX_DATA(PJ4_DATA, PJ4MD_000), |
1410 | PINMUX_DATA(DV_DATA4_MARK, PJ4MD_001), | 1424 | PINMUX_DATA(DV_DATA4_MARK, PJ4MD_001), |
1411 | PINMUX_DATA(LCD_DATA4_MARK, PJ4MD_010), | 1425 | PINMUX_DATA(LCD_DATA4_PJ4_MARK, PJ4MD_010), |
1412 | PINMUX_DATA(SD_CLK_MARK, PJ4MD_011), | 1426 | PINMUX_DATA(SD_CLK_MARK, PJ4MD_011), |
1413 | PINMUX_DATA(PWM1E_MARK, PJ4MD_100), | 1427 | PINMUX_DATA(PWM1E_MARK, PJ4MD_100), |
1414 | 1428 | ||
1415 | PINMUX_DATA(PJ3_DATA, PJ3MD_000), | 1429 | PINMUX_DATA(PJ3_DATA, PJ3MD_000), |
1416 | PINMUX_DATA(DV_DATA3_MARK, PJ3MD_001), | 1430 | PINMUX_DATA(DV_DATA3_MARK, PJ3MD_001), |
1417 | PINMUX_DATA(LCD_DATA3_MARK, PJ3MD_010), | 1431 | PINMUX_DATA(LCD_DATA3_PJ3_MARK, PJ3MD_010), |
1418 | PINMUX_DATA(SD_D0_MARK, PJ3MD_011), | 1432 | PINMUX_DATA(SD_D0_MARK, PJ3MD_011), |
1419 | PINMUX_DATA(PWM1D_MARK, PJ3MD_100), | 1433 | PINMUX_DATA(PWM1D_MARK, PJ3MD_100), |
1420 | 1434 | ||
1421 | PINMUX_DATA(PJ2_DATA, PJ2MD_000), | 1435 | PINMUX_DATA(PJ2_DATA, PJ2MD_000), |
1422 | PINMUX_DATA(DV_DATA2_MARK, PJ2MD_001), | 1436 | PINMUX_DATA(DV_DATA2_MARK, PJ2MD_001), |
1423 | PINMUX_DATA(LCD_DATA2_MARK, PJ2MD_010), | 1437 | PINMUX_DATA(LCD_DATA2_PJ2_MARK, PJ2MD_010), |
1424 | PINMUX_DATA(SD_D1_MARK, PJ2MD_011), | 1438 | PINMUX_DATA(SD_D1_MARK, PJ2MD_011), |
1425 | PINMUX_DATA(PWM1C_MARK, PJ2MD_100), | 1439 | PINMUX_DATA(PWM1C_MARK, PJ2MD_100), |
1426 | 1440 | ||
1427 | PINMUX_DATA(PJ1_DATA, PJ1MD_000), | 1441 | PINMUX_DATA(PJ1_DATA, PJ1MD_000), |
1428 | PINMUX_DATA(DV_DATA1_MARK, PJ1MD_001), | 1442 | PINMUX_DATA(DV_DATA1_MARK, PJ1MD_001), |
1429 | PINMUX_DATA(LCD_DATA1_MARK, PJ1MD_010), | 1443 | PINMUX_DATA(LCD_DATA1_PJ1_MARK, PJ1MD_010), |
1430 | PINMUX_DATA(SD_WP_MARK, PJ1MD_011), | 1444 | PINMUX_DATA(SD_WP_MARK, PJ1MD_011), |
1431 | PINMUX_DATA(PWM1B_MARK, PJ1MD_100), | 1445 | PINMUX_DATA(PWM1B_MARK, PJ1MD_100), |
1432 | 1446 | ||
1433 | PINMUX_DATA(PJ0_DATA, PJ0MD_000), | 1447 | PINMUX_DATA(PJ0_DATA, PJ0MD_000), |
1434 | PINMUX_DATA(DV_DATA0_MARK, PJ0MD_001), | 1448 | PINMUX_DATA(DV_DATA0_MARK, PJ0MD_001), |
1435 | PINMUX_DATA(LCD_DATA0_MARK, PJ0MD_010), | 1449 | PINMUX_DATA(LCD_DATA0_PJ0_MARK, PJ0MD_010), |
1436 | PINMUX_DATA(SD_CD_MARK, PJ0MD_011), | 1450 | PINMUX_DATA(SD_CD_MARK, PJ0MD_011), |
1437 | PINMUX_DATA(PWM1A_MARK, PJ0MD_100), | 1451 | PINMUX_DATA(PWM1A_MARK, PJ0MD_100), |
1438 | }; | 1452 | }; |
@@ -1877,30 +1891,55 @@ static struct pinmux_gpio pinmux_gpios[] = { | |||
1877 | PINMUX_GPIO(GPIO_FN_LCD_HSYNC, LCD_HSYNC_MARK), | 1891 | PINMUX_GPIO(GPIO_FN_LCD_HSYNC, LCD_HSYNC_MARK), |
1878 | PINMUX_GPIO(GPIO_FN_LCD_DE, LCD_DE_MARK), | 1892 | PINMUX_GPIO(GPIO_FN_LCD_DE, LCD_DE_MARK), |
1879 | 1893 | ||
1880 | PINMUX_GPIO(GPIO_FN_LCD_DATA23, LCD_DATA23_MARK), | 1894 | PINMUX_GPIO(GPIO_FN_LCD_DATA23_PG23, LCD_DATA23_PG23_MARK), |
1881 | PINMUX_GPIO(GPIO_FN_LCD_DATA22, LCD_DATA22_MARK), | 1895 | PINMUX_GPIO(GPIO_FN_LCD_DATA22_PG22, LCD_DATA22_PG22_MARK), |
1882 | PINMUX_GPIO(GPIO_FN_LCD_DATA21, LCD_DATA21_MARK), | 1896 | PINMUX_GPIO(GPIO_FN_LCD_DATA21_PG21, LCD_DATA21_PG21_MARK), |
1883 | PINMUX_GPIO(GPIO_FN_LCD_DATA20, LCD_DATA20_MARK), | 1897 | PINMUX_GPIO(GPIO_FN_LCD_DATA20_PG20, LCD_DATA20_PG20_MARK), |
1884 | PINMUX_GPIO(GPIO_FN_LCD_DATA19, LCD_DATA19_MARK), | 1898 | PINMUX_GPIO(GPIO_FN_LCD_DATA19_PG19, LCD_DATA19_PG19_MARK), |
1885 | PINMUX_GPIO(GPIO_FN_LCD_DATA18, LCD_DATA18_MARK), | 1899 | PINMUX_GPIO(GPIO_FN_LCD_DATA18_PG18, LCD_DATA18_PG18_MARK), |
1886 | PINMUX_GPIO(GPIO_FN_LCD_DATA17, LCD_DATA17_MARK), | 1900 | PINMUX_GPIO(GPIO_FN_LCD_DATA17_PG17, LCD_DATA17_PG17_MARK), |
1887 | PINMUX_GPIO(GPIO_FN_LCD_DATA16, LCD_DATA16_MARK), | 1901 | PINMUX_GPIO(GPIO_FN_LCD_DATA16_PG16, LCD_DATA16_PG16_MARK), |
1888 | PINMUX_GPIO(GPIO_FN_LCD_DATA15, LCD_DATA15_MARK), | 1902 | PINMUX_GPIO(GPIO_FN_LCD_DATA15_PG15, LCD_DATA15_PG15_MARK), |
1889 | PINMUX_GPIO(GPIO_FN_LCD_DATA14, LCD_DATA14_MARK), | 1903 | PINMUX_GPIO(GPIO_FN_LCD_DATA14_PG14, LCD_DATA14_PG14_MARK), |
1890 | PINMUX_GPIO(GPIO_FN_LCD_DATA13, LCD_DATA13_MARK), | 1904 | PINMUX_GPIO(GPIO_FN_LCD_DATA13_PG13, LCD_DATA13_PG13_MARK), |
1891 | PINMUX_GPIO(GPIO_FN_LCD_DATA12, LCD_DATA12_MARK), | 1905 | PINMUX_GPIO(GPIO_FN_LCD_DATA12_PG12, LCD_DATA12_PG12_MARK), |
1892 | PINMUX_GPIO(GPIO_FN_LCD_DATA11, LCD_DATA11_MARK), | 1906 | PINMUX_GPIO(GPIO_FN_LCD_DATA11_PG11, LCD_DATA11_PG11_MARK), |
1893 | PINMUX_GPIO(GPIO_FN_LCD_DATA10, LCD_DATA10_MARK), | 1907 | PINMUX_GPIO(GPIO_FN_LCD_DATA10_PG10, LCD_DATA10_PG10_MARK), |
1894 | PINMUX_GPIO(GPIO_FN_LCD_DATA9, LCD_DATA9_MARK), | 1908 | PINMUX_GPIO(GPIO_FN_LCD_DATA9_PG9, LCD_DATA9_PG9_MARK), |
1895 | PINMUX_GPIO(GPIO_FN_LCD_DATA8, LCD_DATA8_MARK), | 1909 | PINMUX_GPIO(GPIO_FN_LCD_DATA8_PG8, LCD_DATA8_PG8_MARK), |
1896 | PINMUX_GPIO(GPIO_FN_LCD_DATA7, LCD_DATA7_MARK), | 1910 | PINMUX_GPIO(GPIO_FN_LCD_DATA7_PG7, LCD_DATA7_PG7_MARK), |
1897 | PINMUX_GPIO(GPIO_FN_LCD_DATA6, LCD_DATA6_MARK), | 1911 | PINMUX_GPIO(GPIO_FN_LCD_DATA6_PG6, LCD_DATA6_PG6_MARK), |
1898 | PINMUX_GPIO(GPIO_FN_LCD_DATA5, LCD_DATA5_MARK), | 1912 | PINMUX_GPIO(GPIO_FN_LCD_DATA5_PG5, LCD_DATA5_PG5_MARK), |
1899 | PINMUX_GPIO(GPIO_FN_LCD_DATA4, LCD_DATA4_MARK), | 1913 | PINMUX_GPIO(GPIO_FN_LCD_DATA4_PG4, LCD_DATA4_PG4_MARK), |
1900 | PINMUX_GPIO(GPIO_FN_LCD_DATA3, LCD_DATA3_MARK), | 1914 | PINMUX_GPIO(GPIO_FN_LCD_DATA3_PG3, LCD_DATA3_PG3_MARK), |
1901 | PINMUX_GPIO(GPIO_FN_LCD_DATA2, LCD_DATA2_MARK), | 1915 | PINMUX_GPIO(GPIO_FN_LCD_DATA2_PG2, LCD_DATA2_PG2_MARK), |
1902 | PINMUX_GPIO(GPIO_FN_LCD_DATA1, LCD_DATA1_MARK), | 1916 | PINMUX_GPIO(GPIO_FN_LCD_DATA1_PG1, LCD_DATA1_PG1_MARK), |
1903 | PINMUX_GPIO(GPIO_FN_LCD_DATA0, LCD_DATA0_MARK), | 1917 | PINMUX_GPIO(GPIO_FN_LCD_DATA0_PG0, LCD_DATA0_PG0_MARK), |
1918 | |||
1919 | PINMUX_GPIO(GPIO_FN_LCD_DATA23_PJ23, LCD_DATA23_PJ23_MARK), | ||
1920 | PINMUX_GPIO(GPIO_FN_LCD_DATA22_PJ22, LCD_DATA22_PJ22_MARK), | ||
1921 | PINMUX_GPIO(GPIO_FN_LCD_DATA21_PJ21, LCD_DATA21_PJ21_MARK), | ||
1922 | PINMUX_GPIO(GPIO_FN_LCD_DATA20_PJ20, LCD_DATA20_PJ20_MARK), | ||
1923 | PINMUX_GPIO(GPIO_FN_LCD_DATA19_PJ19, LCD_DATA19_PJ19_MARK), | ||
1924 | PINMUX_GPIO(GPIO_FN_LCD_DATA18_PJ18, LCD_DATA18_PJ18_MARK), | ||
1925 | PINMUX_GPIO(GPIO_FN_LCD_DATA17_PJ17, LCD_DATA17_PJ17_MARK), | ||
1926 | PINMUX_GPIO(GPIO_FN_LCD_DATA16_PJ16, LCD_DATA16_PJ16_MARK), | ||
1927 | PINMUX_GPIO(GPIO_FN_LCD_DATA15_PJ15, LCD_DATA15_PJ15_MARK), | ||
1928 | PINMUX_GPIO(GPIO_FN_LCD_DATA14_PJ14, LCD_DATA14_PJ14_MARK), | ||
1929 | PINMUX_GPIO(GPIO_FN_LCD_DATA13_PJ13, LCD_DATA13_PJ13_MARK), | ||
1930 | PINMUX_GPIO(GPIO_FN_LCD_DATA12_PJ12, LCD_DATA12_PJ12_MARK), | ||
1931 | PINMUX_GPIO(GPIO_FN_LCD_DATA11_PJ11, LCD_DATA11_PJ11_MARK), | ||
1932 | PINMUX_GPIO(GPIO_FN_LCD_DATA10_PJ10, LCD_DATA10_PJ10_MARK), | ||
1933 | PINMUX_GPIO(GPIO_FN_LCD_DATA9_PJ9, LCD_DATA9_PJ9_MARK), | ||
1934 | PINMUX_GPIO(GPIO_FN_LCD_DATA8_PJ8, LCD_DATA8_PJ8_MARK), | ||
1935 | PINMUX_GPIO(GPIO_FN_LCD_DATA7_PJ7, LCD_DATA7_PJ7_MARK), | ||
1936 | PINMUX_GPIO(GPIO_FN_LCD_DATA6_PJ6, LCD_DATA6_PJ6_MARK), | ||
1937 | PINMUX_GPIO(GPIO_FN_LCD_DATA5_PJ5, LCD_DATA5_PJ5_MARK), | ||
1938 | PINMUX_GPIO(GPIO_FN_LCD_DATA4_PJ4, LCD_DATA4_PJ4_MARK), | ||
1939 | PINMUX_GPIO(GPIO_FN_LCD_DATA3_PJ3, LCD_DATA3_PJ3_MARK), | ||
1940 | PINMUX_GPIO(GPIO_FN_LCD_DATA2_PJ2, LCD_DATA2_PJ2_MARK), | ||
1941 | PINMUX_GPIO(GPIO_FN_LCD_DATA1_PJ1, LCD_DATA1_PJ1_MARK), | ||
1942 | PINMUX_GPIO(GPIO_FN_LCD_DATA0_PJ0, LCD_DATA0_PJ0_MARK), | ||
1904 | 1943 | ||
1905 | PINMUX_GPIO(GPIO_FN_LCD_M_DISP, LCD_M_DISP_MARK), | 1944 | PINMUX_GPIO(GPIO_FN_LCD_M_DISP, LCD_M_DISP_MARK), |
1906 | }; | 1945 | }; |
diff --git a/arch/sh/kernel/setup.c b/arch/sh/kernel/setup.c index 7b57bf1dc855..ebe7a7d97215 100644 --- a/arch/sh/kernel/setup.c +++ b/arch/sh/kernel/setup.c | |||
@@ -273,7 +273,7 @@ void __init setup_arch(char **cmdline_p) | |||
273 | data_resource.start = virt_to_phys(_etext); | 273 | data_resource.start = virt_to_phys(_etext); |
274 | data_resource.end = virt_to_phys(_edata)-1; | 274 | data_resource.end = virt_to_phys(_edata)-1; |
275 | bss_resource.start = virt_to_phys(__bss_start); | 275 | bss_resource.start = virt_to_phys(__bss_start); |
276 | bss_resource.end = virt_to_phys(_ebss)-1; | 276 | bss_resource.end = virt_to_phys(__bss_stop)-1; |
277 | 277 | ||
278 | #ifdef CONFIG_CMDLINE_OVERWRITE | 278 | #ifdef CONFIG_CMDLINE_OVERWRITE |
279 | strlcpy(command_line, CONFIG_CMDLINE, sizeof(command_line)); | 279 | strlcpy(command_line, CONFIG_CMDLINE, sizeof(command_line)); |
diff --git a/arch/sh/kernel/sh_ksyms_32.c b/arch/sh/kernel/sh_ksyms_32.c index 3896f26efa4a..2a0a596ebf67 100644 --- a/arch/sh/kernel/sh_ksyms_32.c +++ b/arch/sh/kernel/sh_ksyms_32.c | |||
@@ -19,7 +19,6 @@ EXPORT_SYMBOL(csum_partial); | |||
19 | EXPORT_SYMBOL(csum_partial_copy_generic); | 19 | EXPORT_SYMBOL(csum_partial_copy_generic); |
20 | EXPORT_SYMBOL(copy_page); | 20 | EXPORT_SYMBOL(copy_page); |
21 | EXPORT_SYMBOL(__clear_user); | 21 | EXPORT_SYMBOL(__clear_user); |
22 | EXPORT_SYMBOL(_ebss); | ||
23 | EXPORT_SYMBOL(empty_zero_page); | 22 | EXPORT_SYMBOL(empty_zero_page); |
24 | 23 | ||
25 | #define DECLARE_EXPORT(name) \ | 24 | #define DECLARE_EXPORT(name) \ |
diff --git a/arch/sh/kernel/vmlinux.lds.S b/arch/sh/kernel/vmlinux.lds.S index c98905f71e28..db88cbf9eafd 100644 --- a/arch/sh/kernel/vmlinux.lds.S +++ b/arch/sh/kernel/vmlinux.lds.S | |||
@@ -78,7 +78,6 @@ SECTIONS | |||
78 | . = ALIGN(PAGE_SIZE); | 78 | . = ALIGN(PAGE_SIZE); |
79 | __init_end = .; | 79 | __init_end = .; |
80 | BSS_SECTION(0, PAGE_SIZE, 4) | 80 | BSS_SECTION(0, PAGE_SIZE, 4) |
81 | _ebss = .; /* uClinux MTD sucks */ | ||
82 | _end = . ; | 81 | _end = . ; |
83 | 82 | ||
84 | STABS_DEBUG | 83 | STABS_DEBUG |
diff --git a/arch/sh/lib/mcount.S b/arch/sh/lib/mcount.S index 84a57761f17e..60164e65d665 100644 --- a/arch/sh/lib/mcount.S +++ b/arch/sh/lib/mcount.S | |||
@@ -39,7 +39,7 @@ | |||
39 | * | 39 | * |
40 | * Make sure the stack pointer contains a valid address. Valid | 40 | * Make sure the stack pointer contains a valid address. Valid |
41 | * addresses for kernel stacks are anywhere after the bss | 41 | * addresses for kernel stacks are anywhere after the bss |
42 | * (after _ebss) and anywhere in init_thread_union (init_stack). | 42 | * (after __bss_stop) and anywhere in init_thread_union (init_stack). |
43 | */ | 43 | */ |
44 | #define STACK_CHECK() \ | 44 | #define STACK_CHECK() \ |
45 | mov #(THREAD_SIZE >> 10), r0; \ | 45 | mov #(THREAD_SIZE >> 10), r0; \ |
@@ -60,7 +60,7 @@ | |||
60 | cmp/hi r2, r1; \ | 60 | cmp/hi r2, r1; \ |
61 | bf stack_panic; \ | 61 | bf stack_panic; \ |
62 | \ | 62 | \ |
63 | /* If sp > _ebss then we're OK. */ \ | 63 | /* If sp > __bss_stop then we're OK. */ \ |
64 | mov.l .L_ebss, r1; \ | 64 | mov.l .L_ebss, r1; \ |
65 | cmp/hi r1, r15; \ | 65 | cmp/hi r1, r15; \ |
66 | bt 1f; \ | 66 | bt 1f; \ |
@@ -70,7 +70,7 @@ | |||
70 | cmp/hs r1, r15; \ | 70 | cmp/hs r1, r15; \ |
71 | bf stack_panic; \ | 71 | bf stack_panic; \ |
72 | \ | 72 | \ |
73 | /* If sp > init_stack && sp < _ebss, not OK. */ \ | 73 | /* If sp > init_stack && sp < __bss_stop, not OK. */ \ |
74 | add r0, r1; \ | 74 | add r0, r1; \ |
75 | cmp/hs r1, r15; \ | 75 | cmp/hs r1, r15; \ |
76 | bt stack_panic; \ | 76 | bt stack_panic; \ |
@@ -292,8 +292,6 @@ stack_panic: | |||
292 | nop | 292 | nop |
293 | 293 | ||
294 | .align 2 | 294 | .align 2 |
295 | .L_ebss: | ||
296 | .long _ebss | ||
297 | .L_init_thread_union: | 295 | .L_init_thread_union: |
298 | .long init_thread_union | 296 | .long init_thread_union |
299 | .Lpanic: | 297 | .Lpanic: |
diff --git a/arch/sparc/kernel/sys_sparc_64.c b/arch/sparc/kernel/sys_sparc_64.c index 0dc1f5786081..11c6c9603e71 100644 --- a/arch/sparc/kernel/sys_sparc_64.c +++ b/arch/sparc/kernel/sys_sparc_64.c | |||
@@ -502,12 +502,12 @@ SYSCALL_DEFINE1(sparc64_personality, unsigned long, personality) | |||
502 | { | 502 | { |
503 | int ret; | 503 | int ret; |
504 | 504 | ||
505 | if (current->personality == PER_LINUX32 && | 505 | if (personality(current->personality) == PER_LINUX32 && |
506 | personality == PER_LINUX) | 506 | personality(personality) == PER_LINUX) |
507 | personality = PER_LINUX32; | 507 | personality |= PER_LINUX32; |
508 | ret = sys_personality(personality); | 508 | ret = sys_personality(personality); |
509 | if (ret == PER_LINUX32) | 509 | if (personality(ret) == PER_LINUX32) |
510 | ret = PER_LINUX; | 510 | ret &= ~PER_LINUX32; |
511 | 511 | ||
512 | return ret; | 512 | return ret; |
513 | } | 513 | } |
diff --git a/arch/sparc/mm/init_64.c b/arch/sparc/mm/init_64.c index 6026fdd1b2ed..d58edf5fefdb 100644 --- a/arch/sparc/mm/init_64.c +++ b/arch/sparc/mm/init_64.c | |||
@@ -2020,6 +2020,9 @@ EXPORT_SYMBOL(_PAGE_CACHE); | |||
2020 | #ifdef CONFIG_SPARSEMEM_VMEMMAP | 2020 | #ifdef CONFIG_SPARSEMEM_VMEMMAP |
2021 | unsigned long vmemmap_table[VMEMMAP_SIZE]; | 2021 | unsigned long vmemmap_table[VMEMMAP_SIZE]; |
2022 | 2022 | ||
2023 | static long __meminitdata addr_start, addr_end; | ||
2024 | static int __meminitdata node_start; | ||
2025 | |||
2023 | int __meminit vmemmap_populate(struct page *start, unsigned long nr, int node) | 2026 | int __meminit vmemmap_populate(struct page *start, unsigned long nr, int node) |
2024 | { | 2027 | { |
2025 | unsigned long vstart = (unsigned long) start; | 2028 | unsigned long vstart = (unsigned long) start; |
@@ -2050,15 +2053,30 @@ int __meminit vmemmap_populate(struct page *start, unsigned long nr, int node) | |||
2050 | 2053 | ||
2051 | *vmem_pp = pte_base | __pa(block); | 2054 | *vmem_pp = pte_base | __pa(block); |
2052 | 2055 | ||
2053 | printk(KERN_INFO "[%p-%p] page_structs=%lu " | 2056 | /* check to see if we have contiguous blocks */ |
2054 | "node=%d entry=%lu/%lu\n", start, block, nr, | 2057 | if (addr_end != addr || node_start != node) { |
2055 | node, | 2058 | if (addr_start) |
2056 | addr >> VMEMMAP_CHUNK_SHIFT, | 2059 | printk(KERN_DEBUG " [%lx-%lx] on node %d\n", |
2057 | VMEMMAP_SIZE); | 2060 | addr_start, addr_end-1, node_start); |
2061 | addr_start = addr; | ||
2062 | node_start = node; | ||
2063 | } | ||
2064 | addr_end = addr + VMEMMAP_CHUNK; | ||
2058 | } | 2065 | } |
2059 | } | 2066 | } |
2060 | return 0; | 2067 | return 0; |
2061 | } | 2068 | } |
2069 | |||
2070 | void __meminit vmemmap_populate_print_last(void) | ||
2071 | { | ||
2072 | if (addr_start) { | ||
2073 | printk(KERN_DEBUG " [%lx-%lx] on node %d\n", | ||
2074 | addr_start, addr_end-1, node_start); | ||
2075 | addr_start = 0; | ||
2076 | addr_end = 0; | ||
2077 | node_start = 0; | ||
2078 | } | ||
2079 | } | ||
2062 | #endif /* CONFIG_SPARSEMEM_VMEMMAP */ | 2080 | #endif /* CONFIG_SPARSEMEM_VMEMMAP */ |
2063 | 2081 | ||
2064 | static void prot_init_common(unsigned long page_none, | 2082 | static void prot_init_common(unsigned long page_none, |
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index ba2657c49217..8ec3a1aa4abd 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -1527,7 +1527,7 @@ config SECCOMP | |||
1527 | If unsure, say Y. Only embedded should say N here. | 1527 | If unsure, say Y. Only embedded should say N here. |
1528 | 1528 | ||
1529 | config CC_STACKPROTECTOR | 1529 | config CC_STACKPROTECTOR |
1530 | bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)" | 1530 | bool "Enable -fstack-protector buffer overflow detection" |
1531 | ---help--- | 1531 | ---help--- |
1532 | This option turns on the -fstack-protector GCC feature. This | 1532 | This option turns on the -fstack-protector GCC feature. This |
1533 | feature puts, at the beginning of functions, a canary value on | 1533 | feature puts, at the beginning of functions, a canary value on |
diff --git a/arch/x86/Makefile b/arch/x86/Makefile index b0c5276861ec..682e9c210baa 100644 --- a/arch/x86/Makefile +++ b/arch/x86/Makefile | |||
@@ -27,6 +27,10 @@ ifeq ($(CONFIG_X86_32),y) | |||
27 | 27 | ||
28 | KBUILD_CFLAGS += -msoft-float -mregparm=3 -freg-struct-return | 28 | KBUILD_CFLAGS += -msoft-float -mregparm=3 -freg-struct-return |
29 | 29 | ||
30 | # Never want PIC in a 32-bit kernel, prevent breakage with GCC built | ||
31 | # with nonstandard options | ||
32 | KBUILD_CFLAGS += -fno-pic | ||
33 | |||
30 | # prevent gcc from keeping the stack 16 byte aligned | 34 | # prevent gcc from keeping the stack 16 byte aligned |
31 | KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2) | 35 | KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2) |
32 | 36 | ||
diff --git a/arch/x86/boot/Makefile b/arch/x86/boot/Makefile index 5a747dd884db..f7535bedc33f 100644 --- a/arch/x86/boot/Makefile +++ b/arch/x86/boot/Makefile | |||
@@ -57,7 +57,7 @@ KBUILD_CFLAGS := $(LINUXINCLUDE) -g -Os -D_SETUP -D__KERNEL__ \ | |||
57 | -Wall -Wstrict-prototypes \ | 57 | -Wall -Wstrict-prototypes \ |
58 | -march=i386 -mregparm=3 \ | 58 | -march=i386 -mregparm=3 \ |
59 | -include $(srctree)/$(src)/code16gcc.h \ | 59 | -include $(srctree)/$(src)/code16gcc.h \ |
60 | -fno-strict-aliasing -fomit-frame-pointer \ | 60 | -fno-strict-aliasing -fomit-frame-pointer -fno-pic \ |
61 | $(call cc-option, -ffreestanding) \ | 61 | $(call cc-option, -ffreestanding) \ |
62 | $(call cc-option, -fno-toplevel-reorder,\ | 62 | $(call cc-option, -fno-toplevel-reorder,\ |
63 | $(call cc-option, -fno-unit-at-a-time)) \ | 63 | $(call cc-option, -fno-unit-at-a-time)) \ |
diff --git a/arch/x86/include/asm/mce.h b/arch/x86/include/asm/mce.h index 441520e4174f..a3ac52b29cbf 100644 --- a/arch/x86/include/asm/mce.h +++ b/arch/x86/include/asm/mce.h | |||
@@ -33,6 +33,14 @@ | |||
33 | #define MCI_STATUS_PCC (1ULL<<57) /* processor context corrupt */ | 33 | #define MCI_STATUS_PCC (1ULL<<57) /* processor context corrupt */ |
34 | #define MCI_STATUS_S (1ULL<<56) /* Signaled machine check */ | 34 | #define MCI_STATUS_S (1ULL<<56) /* Signaled machine check */ |
35 | #define MCI_STATUS_AR (1ULL<<55) /* Action required */ | 35 | #define MCI_STATUS_AR (1ULL<<55) /* Action required */ |
36 | #define MCACOD 0xffff /* MCA Error Code */ | ||
37 | |||
38 | /* Architecturally defined codes from SDM Vol. 3B Chapter 15 */ | ||
39 | #define MCACOD_SCRUB 0x00C0 /* 0xC0-0xCF Memory Scrubbing */ | ||
40 | #define MCACOD_SCRUBMSK 0xfff0 | ||
41 | #define MCACOD_L3WB 0x017A /* L3 Explicit Writeback */ | ||
42 | #define MCACOD_DATA 0x0134 /* Data Load */ | ||
43 | #define MCACOD_INSTR 0x0150 /* Instruction Fetch */ | ||
36 | 44 | ||
37 | /* MCi_MISC register defines */ | 45 | /* MCi_MISC register defines */ |
38 | #define MCI_MISC_ADDR_LSB(m) ((m) & 0x3f) | 46 | #define MCI_MISC_ADDR_LSB(m) ((m) & 0x3f) |
diff --git a/arch/x86/include/asm/perf_event.h b/arch/x86/include/asm/perf_event.h index dab39350e51e..cb4e43bce98a 100644 --- a/arch/x86/include/asm/perf_event.h +++ b/arch/x86/include/asm/perf_event.h | |||
@@ -196,11 +196,16 @@ static inline u32 get_ibs_caps(void) { return 0; } | |||
196 | extern void perf_events_lapic_init(void); | 196 | extern void perf_events_lapic_init(void); |
197 | 197 | ||
198 | /* | 198 | /* |
199 | * Abuse bit 3 of the cpu eflags register to indicate proper PEBS IP fixups. | 199 | * Abuse bits {3,5} of the cpu eflags register. These flags are otherwise |
200 | * This flag is otherwise unused and ABI specified to be 0, so nobody should | 200 | * unused and ABI specified to be 0, so nobody should care what we do with |
201 | * care what we do with it. | 201 | * them. |
202 | * | ||
203 | * EXACT - the IP points to the exact instruction that triggered the | ||
204 | * event (HW bugs exempt). | ||
205 | * VM - original X86_VM_MASK; see set_linear_ip(). | ||
202 | */ | 206 | */ |
203 | #define PERF_EFLAGS_EXACT (1UL << 3) | 207 | #define PERF_EFLAGS_EXACT (1UL << 3) |
208 | #define PERF_EFLAGS_VM (1UL << 5) | ||
204 | 209 | ||
205 | struct pt_regs; | 210 | struct pt_regs; |
206 | extern unsigned long perf_instruction_pointer(struct pt_regs *regs); | 211 | extern unsigned long perf_instruction_pointer(struct pt_regs *regs); |
diff --git a/arch/x86/include/asm/spinlock.h b/arch/x86/include/asm/spinlock.h index b315a33867f2..33692eaabab5 100644 --- a/arch/x86/include/asm/spinlock.h +++ b/arch/x86/include/asm/spinlock.h | |||
@@ -12,8 +12,7 @@ | |||
12 | * Simple spin lock operations. There are two variants, one clears IRQ's | 12 | * Simple spin lock operations. There are two variants, one clears IRQ's |
13 | * on the local processor, one does not. | 13 | * on the local processor, one does not. |
14 | * | 14 | * |
15 | * These are fair FIFO ticket locks, which are currently limited to 256 | 15 | * These are fair FIFO ticket locks, which support up to 2^16 CPUs. |
16 | * CPUs. | ||
17 | * | 16 | * |
18 | * (the type definitions are in asm/spinlock_types.h) | 17 | * (the type definitions are in asm/spinlock_types.h) |
19 | */ | 18 | */ |
diff --git a/arch/x86/kernel/acpi/sleep.c b/arch/x86/kernel/acpi/sleep.c index 95bf99de9058..1b8e5a03d942 100644 --- a/arch/x86/kernel/acpi/sleep.c +++ b/arch/x86/kernel/acpi/sleep.c | |||
@@ -25,10 +25,6 @@ unsigned long acpi_realmode_flags; | |||
25 | static char temp_stack[4096]; | 25 | static char temp_stack[4096]; |
26 | #endif | 26 | #endif |
27 | 27 | ||
28 | asmlinkage void acpi_enter_s3(void) | ||
29 | { | ||
30 | acpi_enter_sleep_state(3, wake_sleep_flags); | ||
31 | } | ||
32 | /** | 28 | /** |
33 | * acpi_suspend_lowlevel - save kernel state | 29 | * acpi_suspend_lowlevel - save kernel state |
34 | * | 30 | * |
diff --git a/arch/x86/kernel/acpi/sleep.h b/arch/x86/kernel/acpi/sleep.h index 5653a5791ec9..67f59f8c6956 100644 --- a/arch/x86/kernel/acpi/sleep.h +++ b/arch/x86/kernel/acpi/sleep.h | |||
@@ -2,7 +2,6 @@ | |||
2 | * Variables and functions used by the code in sleep.c | 2 | * Variables and functions used by the code in sleep.c |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #include <linux/linkage.h> | ||
6 | #include <asm/realmode.h> | 5 | #include <asm/realmode.h> |
7 | 6 | ||
8 | extern unsigned long saved_video_mode; | 7 | extern unsigned long saved_video_mode; |
@@ -11,7 +10,6 @@ extern long saved_magic; | |||
11 | extern int wakeup_pmode_return; | 10 | extern int wakeup_pmode_return; |
12 | 11 | ||
13 | extern u8 wake_sleep_flags; | 12 | extern u8 wake_sleep_flags; |
14 | extern asmlinkage void acpi_enter_s3(void); | ||
15 | 13 | ||
16 | extern unsigned long acpi_copy_wakeup_routine(unsigned long); | 14 | extern unsigned long acpi_copy_wakeup_routine(unsigned long); |
17 | extern void wakeup_long64(void); | 15 | extern void wakeup_long64(void); |
diff --git a/arch/x86/kernel/acpi/wakeup_32.S b/arch/x86/kernel/acpi/wakeup_32.S index 72610839f03b..13ab720573e3 100644 --- a/arch/x86/kernel/acpi/wakeup_32.S +++ b/arch/x86/kernel/acpi/wakeup_32.S | |||
@@ -74,7 +74,9 @@ restore_registers: | |||
74 | ENTRY(do_suspend_lowlevel) | 74 | ENTRY(do_suspend_lowlevel) |
75 | call save_processor_state | 75 | call save_processor_state |
76 | call save_registers | 76 | call save_registers |
77 | call acpi_enter_s3 | 77 | pushl $3 |
78 | call acpi_enter_sleep_state | ||
79 | addl $4, %esp | ||
78 | 80 | ||
79 | # In case of S3 failure, we'll emerge here. Jump | 81 | # In case of S3 failure, we'll emerge here. Jump |
80 | # to ret_point to recover | 82 | # to ret_point to recover |
diff --git a/arch/x86/kernel/acpi/wakeup_64.S b/arch/x86/kernel/acpi/wakeup_64.S index 014d1d28c397..8ea5164cbd04 100644 --- a/arch/x86/kernel/acpi/wakeup_64.S +++ b/arch/x86/kernel/acpi/wakeup_64.S | |||
@@ -71,7 +71,9 @@ ENTRY(do_suspend_lowlevel) | |||
71 | movq %rsi, saved_rsi | 71 | movq %rsi, saved_rsi |
72 | 72 | ||
73 | addq $8, %rsp | 73 | addq $8, %rsp |
74 | call acpi_enter_s3 | 74 | movl $3, %edi |
75 | xorl %eax, %eax | ||
76 | call acpi_enter_sleep_state | ||
75 | /* in case something went wrong, restore the machine status and go on */ | 77 | /* in case something went wrong, restore the machine status and go on */ |
76 | jmp resume_point | 78 | jmp resume_point |
77 | 79 | ||
diff --git a/arch/x86/kernel/alternative.c b/arch/x86/kernel/alternative.c index 931280ff8299..ced4534baed5 100644 --- a/arch/x86/kernel/alternative.c +++ b/arch/x86/kernel/alternative.c | |||
@@ -165,7 +165,7 @@ static const unsigned char * const k7_nops[ASM_NOP_MAX+2] = | |||
165 | #endif | 165 | #endif |
166 | 166 | ||
167 | #ifdef P6_NOP1 | 167 | #ifdef P6_NOP1 |
168 | static const unsigned char __initconst_or_module p6nops[] = | 168 | static const unsigned char p6nops[] = |
169 | { | 169 | { |
170 | P6_NOP1, | 170 | P6_NOP1, |
171 | P6_NOP2, | 171 | P6_NOP2, |
@@ -224,7 +224,7 @@ void __init arch_init_ideal_nops(void) | |||
224 | ideal_nops = intel_nops; | 224 | ideal_nops = intel_nops; |
225 | #endif | 225 | #endif |
226 | } | 226 | } |
227 | 227 | break; | |
228 | default: | 228 | default: |
229 | #ifdef CONFIG_X86_64 | 229 | #ifdef CONFIG_X86_64 |
230 | ideal_nops = k8_nops; | 230 | ideal_nops = k8_nops; |
diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c index 406eee784684..c265593ec2cd 100644 --- a/arch/x86/kernel/apic/io_apic.c +++ b/arch/x86/kernel/apic/io_apic.c | |||
@@ -1204,7 +1204,7 @@ static void __clear_irq_vector(int irq, struct irq_cfg *cfg) | |||
1204 | BUG_ON(!cfg->vector); | 1204 | BUG_ON(!cfg->vector); |
1205 | 1205 | ||
1206 | vector = cfg->vector; | 1206 | vector = cfg->vector; |
1207 | for_each_cpu(cpu, cfg->domain) | 1207 | for_each_cpu_and(cpu, cfg->domain, cpu_online_mask) |
1208 | per_cpu(vector_irq, cpu)[vector] = -1; | 1208 | per_cpu(vector_irq, cpu)[vector] = -1; |
1209 | 1209 | ||
1210 | cfg->vector = 0; | 1210 | cfg->vector = 0; |
@@ -1212,7 +1212,7 @@ static void __clear_irq_vector(int irq, struct irq_cfg *cfg) | |||
1212 | 1212 | ||
1213 | if (likely(!cfg->move_in_progress)) | 1213 | if (likely(!cfg->move_in_progress)) |
1214 | return; | 1214 | return; |
1215 | for_each_cpu(cpu, cfg->old_domain) { | 1215 | for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) { |
1216 | for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; | 1216 | for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; |
1217 | vector++) { | 1217 | vector++) { |
1218 | if (per_cpu(vector_irq, cpu)[vector] != irq) | 1218 | if (per_cpu(vector_irq, cpu)[vector] != irq) |
@@ -1356,6 +1356,16 @@ static void setup_ioapic_irq(unsigned int irq, struct irq_cfg *cfg, | |||
1356 | if (!IO_APIC_IRQ(irq)) | 1356 | if (!IO_APIC_IRQ(irq)) |
1357 | return; | 1357 | return; |
1358 | 1358 | ||
1359 | /* | ||
1360 | * For legacy irqs, cfg->domain starts with cpu 0. Now that IO-APIC | ||
1361 | * can handle this irq and the apic driver is finialized at this point, | ||
1362 | * update the cfg->domain. | ||
1363 | */ | ||
1364 | if (irq < legacy_pic->nr_legacy_irqs && | ||
1365 | cpumask_equal(cfg->domain, cpumask_of(0))) | ||
1366 | apic->vector_allocation_domain(0, cfg->domain, | ||
1367 | apic->target_cpus()); | ||
1368 | |||
1359 | if (assign_irq_vector(irq, cfg, apic->target_cpus())) | 1369 | if (assign_irq_vector(irq, cfg, apic->target_cpus())) |
1360 | return; | 1370 | return; |
1361 | 1371 | ||
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index 46d8786d655e..a5fbc3c5fccc 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c | |||
@@ -144,6 +144,8 @@ static int __init x86_xsave_setup(char *s) | |||
144 | { | 144 | { |
145 | setup_clear_cpu_cap(X86_FEATURE_XSAVE); | 145 | setup_clear_cpu_cap(X86_FEATURE_XSAVE); |
146 | setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT); | 146 | setup_clear_cpu_cap(X86_FEATURE_XSAVEOPT); |
147 | setup_clear_cpu_cap(X86_FEATURE_AVX); | ||
148 | setup_clear_cpu_cap(X86_FEATURE_AVX2); | ||
147 | return 1; | 149 | return 1; |
148 | } | 150 | } |
149 | __setup("noxsave", x86_xsave_setup); | 151 | __setup("noxsave", x86_xsave_setup); |
diff --git a/arch/x86/kernel/cpu/mcheck/mce-severity.c b/arch/x86/kernel/cpu/mcheck/mce-severity.c index 413c2ced887c..13017626f9a8 100644 --- a/arch/x86/kernel/cpu/mcheck/mce-severity.c +++ b/arch/x86/kernel/cpu/mcheck/mce-severity.c | |||
@@ -55,13 +55,6 @@ static struct severity { | |||
55 | #define MCI_UC_S (MCI_STATUS_UC|MCI_STATUS_S) | 55 | #define MCI_UC_S (MCI_STATUS_UC|MCI_STATUS_S) |
56 | #define MCI_UC_SAR (MCI_STATUS_UC|MCI_STATUS_S|MCI_STATUS_AR) | 56 | #define MCI_UC_SAR (MCI_STATUS_UC|MCI_STATUS_S|MCI_STATUS_AR) |
57 | #define MCI_ADDR (MCI_STATUS_ADDRV|MCI_STATUS_MISCV) | 57 | #define MCI_ADDR (MCI_STATUS_ADDRV|MCI_STATUS_MISCV) |
58 | #define MCACOD 0xffff | ||
59 | /* Architecturally defined codes from SDM Vol. 3B Chapter 15 */ | ||
60 | #define MCACOD_SCRUB 0x00C0 /* 0xC0-0xCF Memory Scrubbing */ | ||
61 | #define MCACOD_SCRUBMSK 0xfff0 | ||
62 | #define MCACOD_L3WB 0x017A /* L3 Explicit Writeback */ | ||
63 | #define MCACOD_DATA 0x0134 /* Data Load */ | ||
64 | #define MCACOD_INSTR 0x0150 /* Instruction Fetch */ | ||
65 | 58 | ||
66 | MCESEV( | 59 | MCESEV( |
67 | NO, "Invalid", | 60 | NO, "Invalid", |
diff --git a/arch/x86/kernel/cpu/mcheck/mce.c b/arch/x86/kernel/cpu/mcheck/mce.c index 5e095f873e3e..292d0258311c 100644 --- a/arch/x86/kernel/cpu/mcheck/mce.c +++ b/arch/x86/kernel/cpu/mcheck/mce.c | |||
@@ -103,6 +103,8 @@ DEFINE_PER_CPU(mce_banks_t, mce_poll_banks) = { | |||
103 | 103 | ||
104 | static DEFINE_PER_CPU(struct work_struct, mce_work); | 104 | static DEFINE_PER_CPU(struct work_struct, mce_work); |
105 | 105 | ||
106 | static void (*quirk_no_way_out)(int bank, struct mce *m, struct pt_regs *regs); | ||
107 | |||
106 | /* | 108 | /* |
107 | * CPU/chipset specific EDAC code can register a notifier call here to print | 109 | * CPU/chipset specific EDAC code can register a notifier call here to print |
108 | * MCE errors in a human-readable form. | 110 | * MCE errors in a human-readable form. |
@@ -650,14 +652,18 @@ EXPORT_SYMBOL_GPL(machine_check_poll); | |||
650 | * Do a quick check if any of the events requires a panic. | 652 | * Do a quick check if any of the events requires a panic. |
651 | * This decides if we keep the events around or clear them. | 653 | * This decides if we keep the events around or clear them. |
652 | */ | 654 | */ |
653 | static int mce_no_way_out(struct mce *m, char **msg, unsigned long *validp) | 655 | static int mce_no_way_out(struct mce *m, char **msg, unsigned long *validp, |
656 | struct pt_regs *regs) | ||
654 | { | 657 | { |
655 | int i, ret = 0; | 658 | int i, ret = 0; |
656 | 659 | ||
657 | for (i = 0; i < banks; i++) { | 660 | for (i = 0; i < banks; i++) { |
658 | m->status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i)); | 661 | m->status = mce_rdmsrl(MSR_IA32_MCx_STATUS(i)); |
659 | if (m->status & MCI_STATUS_VAL) | 662 | if (m->status & MCI_STATUS_VAL) { |
660 | __set_bit(i, validp); | 663 | __set_bit(i, validp); |
664 | if (quirk_no_way_out) | ||
665 | quirk_no_way_out(i, m, regs); | ||
666 | } | ||
661 | if (mce_severity(m, tolerant, msg) >= MCE_PANIC_SEVERITY) | 667 | if (mce_severity(m, tolerant, msg) >= MCE_PANIC_SEVERITY) |
662 | ret = 1; | 668 | ret = 1; |
663 | } | 669 | } |
@@ -1040,7 +1046,7 @@ void do_machine_check(struct pt_regs *regs, long error_code) | |||
1040 | *final = m; | 1046 | *final = m; |
1041 | 1047 | ||
1042 | memset(valid_banks, 0, sizeof(valid_banks)); | 1048 | memset(valid_banks, 0, sizeof(valid_banks)); |
1043 | no_way_out = mce_no_way_out(&m, &msg, valid_banks); | 1049 | no_way_out = mce_no_way_out(&m, &msg, valid_banks, regs); |
1044 | 1050 | ||
1045 | barrier(); | 1051 | barrier(); |
1046 | 1052 | ||
@@ -1418,6 +1424,34 @@ static void __mcheck_cpu_init_generic(void) | |||
1418 | } | 1424 | } |
1419 | } | 1425 | } |
1420 | 1426 | ||
1427 | /* | ||
1428 | * During IFU recovery Sandy Bridge -EP4S processors set the RIPV and | ||
1429 | * EIPV bits in MCG_STATUS to zero on the affected logical processor (SDM | ||
1430 | * Vol 3B Table 15-20). But this confuses both the code that determines | ||
1431 | * whether the machine check occurred in kernel or user mode, and also | ||
1432 | * the severity assessment code. Pretend that EIPV was set, and take the | ||
1433 | * ip/cs values from the pt_regs that mce_gather_info() ignored earlier. | ||
1434 | */ | ||
1435 | static void quirk_sandybridge_ifu(int bank, struct mce *m, struct pt_regs *regs) | ||
1436 | { | ||
1437 | if (bank != 0) | ||
1438 | return; | ||
1439 | if ((m->mcgstatus & (MCG_STATUS_EIPV|MCG_STATUS_RIPV)) != 0) | ||
1440 | return; | ||
1441 | if ((m->status & (MCI_STATUS_OVER|MCI_STATUS_UC| | ||
1442 | MCI_STATUS_EN|MCI_STATUS_MISCV|MCI_STATUS_ADDRV| | ||
1443 | MCI_STATUS_PCC|MCI_STATUS_S|MCI_STATUS_AR| | ||
1444 | MCACOD)) != | ||
1445 | (MCI_STATUS_UC|MCI_STATUS_EN| | ||
1446 | MCI_STATUS_MISCV|MCI_STATUS_ADDRV|MCI_STATUS_S| | ||
1447 | MCI_STATUS_AR|MCACOD_INSTR)) | ||
1448 | return; | ||
1449 | |||
1450 | m->mcgstatus |= MCG_STATUS_EIPV; | ||
1451 | m->ip = regs->ip; | ||
1452 | m->cs = regs->cs; | ||
1453 | } | ||
1454 | |||
1421 | /* Add per CPU specific workarounds here */ | 1455 | /* Add per CPU specific workarounds here */ |
1422 | static int __cpuinit __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c) | 1456 | static int __cpuinit __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c) |
1423 | { | 1457 | { |
@@ -1515,6 +1549,9 @@ static int __cpuinit __mcheck_cpu_apply_quirks(struct cpuinfo_x86 *c) | |||
1515 | */ | 1549 | */ |
1516 | if (c->x86 == 6 && c->x86_model <= 13 && mce_bootlog < 0) | 1550 | if (c->x86 == 6 && c->x86_model <= 13 && mce_bootlog < 0) |
1517 | mce_bootlog = 0; | 1551 | mce_bootlog = 0; |
1552 | |||
1553 | if (c->x86 == 6 && c->x86_model == 45) | ||
1554 | quirk_no_way_out = quirk_sandybridge_ifu; | ||
1518 | } | 1555 | } |
1519 | if (monarch_timeout < 0) | 1556 | if (monarch_timeout < 0) |
1520 | monarch_timeout = 0; | 1557 | monarch_timeout = 0; |
diff --git a/arch/x86/kernel/cpu/perf_event.c b/arch/x86/kernel/cpu/perf_event.c index 29557aa06dda..915b876edd1e 100644 --- a/arch/x86/kernel/cpu/perf_event.c +++ b/arch/x86/kernel/cpu/perf_event.c | |||
@@ -32,6 +32,8 @@ | |||
32 | #include <asm/smp.h> | 32 | #include <asm/smp.h> |
33 | #include <asm/alternative.h> | 33 | #include <asm/alternative.h> |
34 | #include <asm/timer.h> | 34 | #include <asm/timer.h> |
35 | #include <asm/desc.h> | ||
36 | #include <asm/ldt.h> | ||
35 | 37 | ||
36 | #include "perf_event.h" | 38 | #include "perf_event.h" |
37 | 39 | ||
@@ -1738,6 +1740,29 @@ valid_user_frame(const void __user *fp, unsigned long size) | |||
1738 | return (__range_not_ok(fp, size, TASK_SIZE) == 0); | 1740 | return (__range_not_ok(fp, size, TASK_SIZE) == 0); |
1739 | } | 1741 | } |
1740 | 1742 | ||
1743 | static unsigned long get_segment_base(unsigned int segment) | ||
1744 | { | ||
1745 | struct desc_struct *desc; | ||
1746 | int idx = segment >> 3; | ||
1747 | |||
1748 | if ((segment & SEGMENT_TI_MASK) == SEGMENT_LDT) { | ||
1749 | if (idx > LDT_ENTRIES) | ||
1750 | return 0; | ||
1751 | |||
1752 | if (idx > current->active_mm->context.size) | ||
1753 | return 0; | ||
1754 | |||
1755 | desc = current->active_mm->context.ldt; | ||
1756 | } else { | ||
1757 | if (idx > GDT_ENTRIES) | ||
1758 | return 0; | ||
1759 | |||
1760 | desc = __this_cpu_ptr(&gdt_page.gdt[0]); | ||
1761 | } | ||
1762 | |||
1763 | return get_desc_base(desc + idx); | ||
1764 | } | ||
1765 | |||
1741 | #ifdef CONFIG_COMPAT | 1766 | #ifdef CONFIG_COMPAT |
1742 | 1767 | ||
1743 | #include <asm/compat.h> | 1768 | #include <asm/compat.h> |
@@ -1746,13 +1771,17 @@ static inline int | |||
1746 | perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry) | 1771 | perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry) |
1747 | { | 1772 | { |
1748 | /* 32-bit process in 64-bit kernel. */ | 1773 | /* 32-bit process in 64-bit kernel. */ |
1774 | unsigned long ss_base, cs_base; | ||
1749 | struct stack_frame_ia32 frame; | 1775 | struct stack_frame_ia32 frame; |
1750 | const void __user *fp; | 1776 | const void __user *fp; |
1751 | 1777 | ||
1752 | if (!test_thread_flag(TIF_IA32)) | 1778 | if (!test_thread_flag(TIF_IA32)) |
1753 | return 0; | 1779 | return 0; |
1754 | 1780 | ||
1755 | fp = compat_ptr(regs->bp); | 1781 | cs_base = get_segment_base(regs->cs); |
1782 | ss_base = get_segment_base(regs->ss); | ||
1783 | |||
1784 | fp = compat_ptr(ss_base + regs->bp); | ||
1756 | while (entry->nr < PERF_MAX_STACK_DEPTH) { | 1785 | while (entry->nr < PERF_MAX_STACK_DEPTH) { |
1757 | unsigned long bytes; | 1786 | unsigned long bytes; |
1758 | frame.next_frame = 0; | 1787 | frame.next_frame = 0; |
@@ -1765,8 +1794,8 @@ perf_callchain_user32(struct pt_regs *regs, struct perf_callchain_entry *entry) | |||
1765 | if (!valid_user_frame(fp, sizeof(frame))) | 1794 | if (!valid_user_frame(fp, sizeof(frame))) |
1766 | break; | 1795 | break; |
1767 | 1796 | ||
1768 | perf_callchain_store(entry, frame.return_address); | 1797 | perf_callchain_store(entry, cs_base + frame.return_address); |
1769 | fp = compat_ptr(frame.next_frame); | 1798 | fp = compat_ptr(ss_base + frame.next_frame); |
1770 | } | 1799 | } |
1771 | return 1; | 1800 | return 1; |
1772 | } | 1801 | } |
@@ -1789,6 +1818,12 @@ perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs) | |||
1789 | return; | 1818 | return; |
1790 | } | 1819 | } |
1791 | 1820 | ||
1821 | /* | ||
1822 | * We don't know what to do with VM86 stacks.. ignore them for now. | ||
1823 | */ | ||
1824 | if (regs->flags & (X86_VM_MASK | PERF_EFLAGS_VM)) | ||
1825 | return; | ||
1826 | |||
1792 | fp = (void __user *)regs->bp; | 1827 | fp = (void __user *)regs->bp; |
1793 | 1828 | ||
1794 | perf_callchain_store(entry, regs->ip); | 1829 | perf_callchain_store(entry, regs->ip); |
@@ -1816,16 +1851,50 @@ perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs) | |||
1816 | } | 1851 | } |
1817 | } | 1852 | } |
1818 | 1853 | ||
1819 | unsigned long perf_instruction_pointer(struct pt_regs *regs) | 1854 | /* |
1855 | * Deal with code segment offsets for the various execution modes: | ||
1856 | * | ||
1857 | * VM86 - the good olde 16 bit days, where the linear address is | ||
1858 | * 20 bits and we use regs->ip + 0x10 * regs->cs. | ||
1859 | * | ||
1860 | * IA32 - Where we need to look at GDT/LDT segment descriptor tables | ||
1861 | * to figure out what the 32bit base address is. | ||
1862 | * | ||
1863 | * X32 - has TIF_X32 set, but is running in x86_64 | ||
1864 | * | ||
1865 | * X86_64 - CS,DS,SS,ES are all zero based. | ||
1866 | */ | ||
1867 | static unsigned long code_segment_base(struct pt_regs *regs) | ||
1820 | { | 1868 | { |
1821 | unsigned long ip; | 1869 | /* |
1870 | * If we are in VM86 mode, add the segment offset to convert to a | ||
1871 | * linear address. | ||
1872 | */ | ||
1873 | if (regs->flags & X86_VM_MASK) | ||
1874 | return 0x10 * regs->cs; | ||
1875 | |||
1876 | /* | ||
1877 | * For IA32 we look at the GDT/LDT segment base to convert the | ||
1878 | * effective IP to a linear address. | ||
1879 | */ | ||
1880 | #ifdef CONFIG_X86_32 | ||
1881 | if (user_mode(regs) && regs->cs != __USER_CS) | ||
1882 | return get_segment_base(regs->cs); | ||
1883 | #else | ||
1884 | if (test_thread_flag(TIF_IA32)) { | ||
1885 | if (user_mode(regs) && regs->cs != __USER32_CS) | ||
1886 | return get_segment_base(regs->cs); | ||
1887 | } | ||
1888 | #endif | ||
1889 | return 0; | ||
1890 | } | ||
1822 | 1891 | ||
1892 | unsigned long perf_instruction_pointer(struct pt_regs *regs) | ||
1893 | { | ||
1823 | if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) | 1894 | if (perf_guest_cbs && perf_guest_cbs->is_in_guest()) |
1824 | ip = perf_guest_cbs->get_guest_ip(); | 1895 | return perf_guest_cbs->get_guest_ip(); |
1825 | else | ||
1826 | ip = instruction_pointer(regs); | ||
1827 | 1896 | ||
1828 | return ip; | 1897 | return regs->ip + code_segment_base(regs); |
1829 | } | 1898 | } |
1830 | 1899 | ||
1831 | unsigned long perf_misc_flags(struct pt_regs *regs) | 1900 | unsigned long perf_misc_flags(struct pt_regs *regs) |
@@ -1838,7 +1907,7 @@ unsigned long perf_misc_flags(struct pt_regs *regs) | |||
1838 | else | 1907 | else |
1839 | misc |= PERF_RECORD_MISC_GUEST_KERNEL; | 1908 | misc |= PERF_RECORD_MISC_GUEST_KERNEL; |
1840 | } else { | 1909 | } else { |
1841 | if (!kernel_ip(regs->ip)) | 1910 | if (user_mode(regs)) |
1842 | misc |= PERF_RECORD_MISC_USER; | 1911 | misc |= PERF_RECORD_MISC_USER; |
1843 | else | 1912 | else |
1844 | misc |= PERF_RECORD_MISC_KERNEL; | 1913 | misc |= PERF_RECORD_MISC_KERNEL; |
diff --git a/arch/x86/kernel/cpu/perf_event.h b/arch/x86/kernel/cpu/perf_event.h index 821d53b696d1..6605a81ba339 100644 --- a/arch/x86/kernel/cpu/perf_event.h +++ b/arch/x86/kernel/cpu/perf_event.h | |||
@@ -516,6 +516,26 @@ static inline bool kernel_ip(unsigned long ip) | |||
516 | #endif | 516 | #endif |
517 | } | 517 | } |
518 | 518 | ||
519 | /* | ||
520 | * Not all PMUs provide the right context information to place the reported IP | ||
521 | * into full context. Specifically segment registers are typically not | ||
522 | * supplied. | ||
523 | * | ||
524 | * Assuming the address is a linear address (it is for IBS), we fake the CS and | ||
525 | * vm86 mode using the known zero-based code segment and 'fix up' the registers | ||
526 | * to reflect this. | ||
527 | * | ||
528 | * Intel PEBS/LBR appear to typically provide the effective address, nothing | ||
529 | * much we can do about that but pray and treat it like a linear address. | ||
530 | */ | ||
531 | static inline void set_linear_ip(struct pt_regs *regs, unsigned long ip) | ||
532 | { | ||
533 | regs->cs = kernel_ip(ip) ? __KERNEL_CS : __USER_CS; | ||
534 | if (regs->flags & X86_VM_MASK) | ||
535 | regs->flags ^= (PERF_EFLAGS_VM | X86_VM_MASK); | ||
536 | regs->ip = ip; | ||
537 | } | ||
538 | |||
519 | #ifdef CONFIG_CPU_SUP_AMD | 539 | #ifdef CONFIG_CPU_SUP_AMD |
520 | 540 | ||
521 | int amd_pmu_init(void); | 541 | int amd_pmu_init(void); |
diff --git a/arch/x86/kernel/cpu/perf_event_amd_ibs.c b/arch/x86/kernel/cpu/perf_event_amd_ibs.c index da9bcdcd9856..7bfb5bec8630 100644 --- a/arch/x86/kernel/cpu/perf_event_amd_ibs.c +++ b/arch/x86/kernel/cpu/perf_event_amd_ibs.c | |||
@@ -13,6 +13,8 @@ | |||
13 | 13 | ||
14 | #include <asm/apic.h> | 14 | #include <asm/apic.h> |
15 | 15 | ||
16 | #include "perf_event.h" | ||
17 | |||
16 | static u32 ibs_caps; | 18 | static u32 ibs_caps; |
17 | 19 | ||
18 | #if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD) | 20 | #if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD) |
@@ -536,7 +538,7 @@ static int perf_ibs_handle_irq(struct perf_ibs *perf_ibs, struct pt_regs *iregs) | |||
536 | if (check_rip && (ibs_data.regs[2] & IBS_RIP_INVALID)) { | 538 | if (check_rip && (ibs_data.regs[2] & IBS_RIP_INVALID)) { |
537 | regs.flags &= ~PERF_EFLAGS_EXACT; | 539 | regs.flags &= ~PERF_EFLAGS_EXACT; |
538 | } else { | 540 | } else { |
539 | instruction_pointer_set(®s, ibs_data.regs[1]); | 541 | set_linear_ip(®s, ibs_data.regs[1]); |
540 | regs.flags |= PERF_EFLAGS_EXACT; | 542 | regs.flags |= PERF_EFLAGS_EXACT; |
541 | } | 543 | } |
542 | 544 | ||
diff --git a/arch/x86/kernel/cpu/perf_event_intel.c b/arch/x86/kernel/cpu/perf_event_intel.c index 382366977d4c..7f2739e03e79 100644 --- a/arch/x86/kernel/cpu/perf_event_intel.c +++ b/arch/x86/kernel/cpu/perf_event_intel.c | |||
@@ -1522,8 +1522,16 @@ static struct perf_guest_switch_msr *intel_guest_get_msrs(int *nr) | |||
1522 | arr[0].msr = MSR_CORE_PERF_GLOBAL_CTRL; | 1522 | arr[0].msr = MSR_CORE_PERF_GLOBAL_CTRL; |
1523 | arr[0].host = x86_pmu.intel_ctrl & ~cpuc->intel_ctrl_guest_mask; | 1523 | arr[0].host = x86_pmu.intel_ctrl & ~cpuc->intel_ctrl_guest_mask; |
1524 | arr[0].guest = x86_pmu.intel_ctrl & ~cpuc->intel_ctrl_host_mask; | 1524 | arr[0].guest = x86_pmu.intel_ctrl & ~cpuc->intel_ctrl_host_mask; |
1525 | /* | ||
1526 | * If PMU counter has PEBS enabled it is not enough to disable counter | ||
1527 | * on a guest entry since PEBS memory write can overshoot guest entry | ||
1528 | * and corrupt guest memory. Disabling PEBS solves the problem. | ||
1529 | */ | ||
1530 | arr[1].msr = MSR_IA32_PEBS_ENABLE; | ||
1531 | arr[1].host = cpuc->pebs_enabled; | ||
1532 | arr[1].guest = 0; | ||
1525 | 1533 | ||
1526 | *nr = 1; | 1534 | *nr = 2; |
1527 | return arr; | 1535 | return arr; |
1528 | } | 1536 | } |
1529 | 1537 | ||
diff --git a/arch/x86/kernel/cpu/perf_event_intel_ds.c b/arch/x86/kernel/cpu/perf_event_intel_ds.c index 629ae0b7ad90..e38d97bf4259 100644 --- a/arch/x86/kernel/cpu/perf_event_intel_ds.c +++ b/arch/x86/kernel/cpu/perf_event_intel_ds.c | |||
@@ -499,7 +499,7 @@ static int intel_pmu_pebs_fixup_ip(struct pt_regs *regs) | |||
499 | * We sampled a branch insn, rewind using the LBR stack | 499 | * We sampled a branch insn, rewind using the LBR stack |
500 | */ | 500 | */ |
501 | if (ip == to) { | 501 | if (ip == to) { |
502 | regs->ip = from; | 502 | set_linear_ip(regs, from); |
503 | return 1; | 503 | return 1; |
504 | } | 504 | } |
505 | 505 | ||
@@ -529,7 +529,7 @@ static int intel_pmu_pebs_fixup_ip(struct pt_regs *regs) | |||
529 | } while (to < ip); | 529 | } while (to < ip); |
530 | 530 | ||
531 | if (to == ip) { | 531 | if (to == ip) { |
532 | regs->ip = old_to; | 532 | set_linear_ip(regs, old_to); |
533 | return 1; | 533 | return 1; |
534 | } | 534 | } |
535 | 535 | ||
@@ -569,7 +569,8 @@ static void __intel_pmu_pebs_event(struct perf_event *event, | |||
569 | * A possible PERF_SAMPLE_REGS will have to transfer all regs. | 569 | * A possible PERF_SAMPLE_REGS will have to transfer all regs. |
570 | */ | 570 | */ |
571 | regs = *iregs; | 571 | regs = *iregs; |
572 | regs.ip = pebs->ip; | 572 | regs.flags = pebs->flags; |
573 | set_linear_ip(®s, pebs->ip); | ||
573 | regs.bp = pebs->bp; | 574 | regs.bp = pebs->bp; |
574 | regs.sp = pebs->sp; | 575 | regs.sp = pebs->sp; |
575 | 576 | ||
diff --git a/arch/x86/kernel/cpu/perf_event_intel_uncore.c b/arch/x86/kernel/cpu/perf_event_intel_uncore.c index 7563fda9f033..0a5571080e74 100644 --- a/arch/x86/kernel/cpu/perf_event_intel_uncore.c +++ b/arch/x86/kernel/cpu/perf_event_intel_uncore.c | |||
@@ -796,7 +796,6 @@ static struct intel_uncore_type *nhm_msr_uncores[] = { | |||
796 | 796 | ||
797 | DEFINE_UNCORE_FORMAT_ATTR(event5, event, "config:1-5"); | 797 | DEFINE_UNCORE_FORMAT_ATTR(event5, event, "config:1-5"); |
798 | DEFINE_UNCORE_FORMAT_ATTR(counter, counter, "config:6-7"); | 798 | DEFINE_UNCORE_FORMAT_ATTR(counter, counter, "config:6-7"); |
799 | DEFINE_UNCORE_FORMAT_ATTR(mm_cfg, mm_cfg, "config:63"); | ||
800 | DEFINE_UNCORE_FORMAT_ATTR(match, match, "config1:0-63"); | 799 | DEFINE_UNCORE_FORMAT_ATTR(match, match, "config1:0-63"); |
801 | DEFINE_UNCORE_FORMAT_ATTR(mask, mask, "config2:0-63"); | 800 | DEFINE_UNCORE_FORMAT_ATTR(mask, mask, "config2:0-63"); |
802 | 801 | ||
@@ -902,16 +901,21 @@ static struct attribute_group nhmex_uncore_cbox_format_group = { | |||
902 | .attrs = nhmex_uncore_cbox_formats_attr, | 901 | .attrs = nhmex_uncore_cbox_formats_attr, |
903 | }; | 902 | }; |
904 | 903 | ||
904 | /* msr offset for each instance of cbox */ | ||
905 | static unsigned nhmex_cbox_msr_offsets[] = { | ||
906 | 0x0, 0x80, 0x40, 0xc0, 0x20, 0xa0, 0x60, 0xe0, 0x240, 0x2c0, | ||
907 | }; | ||
908 | |||
905 | static struct intel_uncore_type nhmex_uncore_cbox = { | 909 | static struct intel_uncore_type nhmex_uncore_cbox = { |
906 | .name = "cbox", | 910 | .name = "cbox", |
907 | .num_counters = 6, | 911 | .num_counters = 6, |
908 | .num_boxes = 8, | 912 | .num_boxes = 10, |
909 | .perf_ctr_bits = 48, | 913 | .perf_ctr_bits = 48, |
910 | .event_ctl = NHMEX_C0_MSR_PMON_EV_SEL0, | 914 | .event_ctl = NHMEX_C0_MSR_PMON_EV_SEL0, |
911 | .perf_ctr = NHMEX_C0_MSR_PMON_CTR0, | 915 | .perf_ctr = NHMEX_C0_MSR_PMON_CTR0, |
912 | .event_mask = NHMEX_PMON_RAW_EVENT_MASK, | 916 | .event_mask = NHMEX_PMON_RAW_EVENT_MASK, |
913 | .box_ctl = NHMEX_C0_MSR_PMON_GLOBAL_CTL, | 917 | .box_ctl = NHMEX_C0_MSR_PMON_GLOBAL_CTL, |
914 | .msr_offset = NHMEX_C_MSR_OFFSET, | 918 | .msr_offsets = nhmex_cbox_msr_offsets, |
915 | .pair_ctr_ctl = 1, | 919 | .pair_ctr_ctl = 1, |
916 | .ops = &nhmex_uncore_ops, | 920 | .ops = &nhmex_uncore_ops, |
917 | .format_group = &nhmex_uncore_cbox_format_group | 921 | .format_group = &nhmex_uncore_cbox_format_group |
@@ -1032,24 +1036,22 @@ static struct intel_uncore_type nhmex_uncore_bbox = { | |||
1032 | 1036 | ||
1033 | static int nhmex_sbox_hw_config(struct intel_uncore_box *box, struct perf_event *event) | 1037 | static int nhmex_sbox_hw_config(struct intel_uncore_box *box, struct perf_event *event) |
1034 | { | 1038 | { |
1035 | struct hw_perf_event_extra *reg1 = &event->hw.extra_reg; | 1039 | struct hw_perf_event *hwc = &event->hw; |
1036 | struct hw_perf_event_extra *reg2 = &event->hw.branch_reg; | 1040 | struct hw_perf_event_extra *reg1 = &hwc->extra_reg; |
1041 | struct hw_perf_event_extra *reg2 = &hwc->branch_reg; | ||
1037 | 1042 | ||
1038 | if (event->attr.config & NHMEX_S_PMON_MM_CFG_EN) { | 1043 | /* only TO_R_PROG_EV event uses the match/mask register */ |
1039 | reg1->config = event->attr.config1; | 1044 | if ((hwc->config & NHMEX_PMON_CTL_EV_SEL_MASK) != |
1040 | reg2->config = event->attr.config2; | 1045 | NHMEX_S_EVENT_TO_R_PROG_EV) |
1041 | } else { | 1046 | return 0; |
1042 | reg1->config = ~0ULL; | ||
1043 | reg2->config = ~0ULL; | ||
1044 | } | ||
1045 | 1047 | ||
1046 | if (box->pmu->pmu_idx == 0) | 1048 | if (box->pmu->pmu_idx == 0) |
1047 | reg1->reg = NHMEX_S0_MSR_MM_CFG; | 1049 | reg1->reg = NHMEX_S0_MSR_MM_CFG; |
1048 | else | 1050 | else |
1049 | reg1->reg = NHMEX_S1_MSR_MM_CFG; | 1051 | reg1->reg = NHMEX_S1_MSR_MM_CFG; |
1050 | |||
1051 | reg1->idx = 0; | 1052 | reg1->idx = 0; |
1052 | 1053 | reg1->config = event->attr.config1; | |
1054 | reg2->config = event->attr.config2; | ||
1053 | return 0; | 1055 | return 0; |
1054 | } | 1056 | } |
1055 | 1057 | ||
@@ -1059,8 +1061,8 @@ static void nhmex_sbox_msr_enable_event(struct intel_uncore_box *box, struct per | |||
1059 | struct hw_perf_event_extra *reg1 = &hwc->extra_reg; | 1061 | struct hw_perf_event_extra *reg1 = &hwc->extra_reg; |
1060 | struct hw_perf_event_extra *reg2 = &hwc->branch_reg; | 1062 | struct hw_perf_event_extra *reg2 = &hwc->branch_reg; |
1061 | 1063 | ||
1062 | wrmsrl(reg1->reg, 0); | 1064 | if (reg1->idx != EXTRA_REG_NONE) { |
1063 | if (reg1->config != ~0ULL || reg2->config != ~0ULL) { | 1065 | wrmsrl(reg1->reg, 0); |
1064 | wrmsrl(reg1->reg + 1, reg1->config); | 1066 | wrmsrl(reg1->reg + 1, reg1->config); |
1065 | wrmsrl(reg1->reg + 2, reg2->config); | 1067 | wrmsrl(reg1->reg + 2, reg2->config); |
1066 | wrmsrl(reg1->reg, NHMEX_S_PMON_MM_CFG_EN); | 1068 | wrmsrl(reg1->reg, NHMEX_S_PMON_MM_CFG_EN); |
@@ -1074,7 +1076,6 @@ static struct attribute *nhmex_uncore_sbox_formats_attr[] = { | |||
1074 | &format_attr_edge.attr, | 1076 | &format_attr_edge.attr, |
1075 | &format_attr_inv.attr, | 1077 | &format_attr_inv.attr, |
1076 | &format_attr_thresh8.attr, | 1078 | &format_attr_thresh8.attr, |
1077 | &format_attr_mm_cfg.attr, | ||
1078 | &format_attr_match.attr, | 1079 | &format_attr_match.attr, |
1079 | &format_attr_mask.attr, | 1080 | &format_attr_mask.attr, |
1080 | NULL, | 1081 | NULL, |
@@ -1142,6 +1143,9 @@ static struct extra_reg nhmex_uncore_mbox_extra_regs[] = { | |||
1142 | EVENT_EXTRA_END | 1143 | EVENT_EXTRA_END |
1143 | }; | 1144 | }; |
1144 | 1145 | ||
1146 | /* Nehalem-EX or Westmere-EX ? */ | ||
1147 | bool uncore_nhmex; | ||
1148 | |||
1145 | static bool nhmex_mbox_get_shared_reg(struct intel_uncore_box *box, int idx, u64 config) | 1149 | static bool nhmex_mbox_get_shared_reg(struct intel_uncore_box *box, int idx, u64 config) |
1146 | { | 1150 | { |
1147 | struct intel_uncore_extra_reg *er; | 1151 | struct intel_uncore_extra_reg *er; |
@@ -1171,18 +1175,29 @@ static bool nhmex_mbox_get_shared_reg(struct intel_uncore_box *box, int idx, u64 | |||
1171 | return false; | 1175 | return false; |
1172 | 1176 | ||
1173 | /* mask of the shared fields */ | 1177 | /* mask of the shared fields */ |
1174 | mask = NHMEX_M_PMON_ZDP_CTL_FVC_MASK; | 1178 | if (uncore_nhmex) |
1179 | mask = NHMEX_M_PMON_ZDP_CTL_FVC_MASK; | ||
1180 | else | ||
1181 | mask = WSMEX_M_PMON_ZDP_CTL_FVC_MASK; | ||
1175 | er = &box->shared_regs[EXTRA_REG_NHMEX_M_ZDP_CTL_FVC]; | 1182 | er = &box->shared_regs[EXTRA_REG_NHMEX_M_ZDP_CTL_FVC]; |
1176 | 1183 | ||
1177 | raw_spin_lock_irqsave(&er->lock, flags); | 1184 | raw_spin_lock_irqsave(&er->lock, flags); |
1178 | /* add mask of the non-shared field if it's in use */ | 1185 | /* add mask of the non-shared field if it's in use */ |
1179 | if (__BITS_VALUE(atomic_read(&er->ref), idx, 8)) | 1186 | if (__BITS_VALUE(atomic_read(&er->ref), idx, 8)) { |
1180 | mask |= NHMEX_M_PMON_ZDP_CTL_FVC_EVENT_MASK(idx); | 1187 | if (uncore_nhmex) |
1188 | mask |= NHMEX_M_PMON_ZDP_CTL_FVC_EVENT_MASK(idx); | ||
1189 | else | ||
1190 | mask |= WSMEX_M_PMON_ZDP_CTL_FVC_EVENT_MASK(idx); | ||
1191 | } | ||
1181 | 1192 | ||
1182 | if (!atomic_read(&er->ref) || !((er->config ^ config) & mask)) { | 1193 | if (!atomic_read(&er->ref) || !((er->config ^ config) & mask)) { |
1183 | atomic_add(1 << (idx * 8), &er->ref); | 1194 | atomic_add(1 << (idx * 8), &er->ref); |
1184 | mask = NHMEX_M_PMON_ZDP_CTL_FVC_MASK | | 1195 | if (uncore_nhmex) |
1185 | NHMEX_M_PMON_ZDP_CTL_FVC_EVENT_MASK(idx); | 1196 | mask = NHMEX_M_PMON_ZDP_CTL_FVC_MASK | |
1197 | NHMEX_M_PMON_ZDP_CTL_FVC_EVENT_MASK(idx); | ||
1198 | else | ||
1199 | mask = WSMEX_M_PMON_ZDP_CTL_FVC_MASK | | ||
1200 | WSMEX_M_PMON_ZDP_CTL_FVC_EVENT_MASK(idx); | ||
1186 | er->config &= ~mask; | 1201 | er->config &= ~mask; |
1187 | er->config |= (config & mask); | 1202 | er->config |= (config & mask); |
1188 | ret = true; | 1203 | ret = true; |
@@ -1216,7 +1231,10 @@ u64 nhmex_mbox_alter_er(struct perf_event *event, int new_idx, bool modify) | |||
1216 | 1231 | ||
1217 | /* get the non-shared control bits and shift them */ | 1232 | /* get the non-shared control bits and shift them */ |
1218 | idx = orig_idx - EXTRA_REG_NHMEX_M_ZDP_CTL_FVC; | 1233 | idx = orig_idx - EXTRA_REG_NHMEX_M_ZDP_CTL_FVC; |
1219 | config &= NHMEX_M_PMON_ZDP_CTL_FVC_EVENT_MASK(idx); | 1234 | if (uncore_nhmex) |
1235 | config &= NHMEX_M_PMON_ZDP_CTL_FVC_EVENT_MASK(idx); | ||
1236 | else | ||
1237 | config &= WSMEX_M_PMON_ZDP_CTL_FVC_EVENT_MASK(idx); | ||
1220 | if (new_idx > orig_idx) { | 1238 | if (new_idx > orig_idx) { |
1221 | idx = new_idx - orig_idx; | 1239 | idx = new_idx - orig_idx; |
1222 | config <<= 3 * idx; | 1240 | config <<= 3 * idx; |
@@ -1226,6 +1244,10 @@ u64 nhmex_mbox_alter_er(struct perf_event *event, int new_idx, bool modify) | |||
1226 | } | 1244 | } |
1227 | 1245 | ||
1228 | /* add the shared control bits back */ | 1246 | /* add the shared control bits back */ |
1247 | if (uncore_nhmex) | ||
1248 | config |= NHMEX_M_PMON_ZDP_CTL_FVC_MASK & reg1->config; | ||
1249 | else | ||
1250 | config |= WSMEX_M_PMON_ZDP_CTL_FVC_MASK & reg1->config; | ||
1229 | config |= NHMEX_M_PMON_ZDP_CTL_FVC_MASK & reg1->config; | 1251 | config |= NHMEX_M_PMON_ZDP_CTL_FVC_MASK & reg1->config; |
1230 | if (modify) { | 1252 | if (modify) { |
1231 | /* adjust the main event selector */ | 1253 | /* adjust the main event selector */ |
@@ -1264,7 +1286,8 @@ again: | |||
1264 | } | 1286 | } |
1265 | 1287 | ||
1266 | /* for the match/mask registers */ | 1288 | /* for the match/mask registers */ |
1267 | if ((uncore_box_is_fake(box) || !reg2->alloc) && | 1289 | if (reg2->idx != EXTRA_REG_NONE && |
1290 | (uncore_box_is_fake(box) || !reg2->alloc) && | ||
1268 | !nhmex_mbox_get_shared_reg(box, reg2->idx, reg2->config)) | 1291 | !nhmex_mbox_get_shared_reg(box, reg2->idx, reg2->config)) |
1269 | goto fail; | 1292 | goto fail; |
1270 | 1293 | ||
@@ -1278,7 +1301,8 @@ again: | |||
1278 | if (idx[0] != 0xff && idx[0] != __BITS_VALUE(reg1->idx, 0, 8)) | 1301 | if (idx[0] != 0xff && idx[0] != __BITS_VALUE(reg1->idx, 0, 8)) |
1279 | nhmex_mbox_alter_er(event, idx[0], true); | 1302 | nhmex_mbox_alter_er(event, idx[0], true); |
1280 | reg1->alloc |= alloc; | 1303 | reg1->alloc |= alloc; |
1281 | reg2->alloc = 1; | 1304 | if (reg2->idx != EXTRA_REG_NONE) |
1305 | reg2->alloc = 1; | ||
1282 | } | 1306 | } |
1283 | return NULL; | 1307 | return NULL; |
1284 | fail: | 1308 | fail: |
@@ -1342,9 +1366,6 @@ static int nhmex_mbox_hw_config(struct intel_uncore_box *box, struct perf_event | |||
1342 | struct extra_reg *er; | 1366 | struct extra_reg *er; |
1343 | unsigned msr; | 1367 | unsigned msr; |
1344 | int reg_idx = 0; | 1368 | int reg_idx = 0; |
1345 | |||
1346 | if (WARN_ON_ONCE(reg1->idx != -1)) | ||
1347 | return -EINVAL; | ||
1348 | /* | 1369 | /* |
1349 | * The mbox events may require 2 extra MSRs at the most. But only | 1370 | * The mbox events may require 2 extra MSRs at the most. But only |
1350 | * the lower 32 bits in these MSRs are significant, so we can use | 1371 | * the lower 32 bits in these MSRs are significant, so we can use |
@@ -1355,11 +1376,6 @@ static int nhmex_mbox_hw_config(struct intel_uncore_box *box, struct perf_event | |||
1355 | continue; | 1376 | continue; |
1356 | if (event->attr.config1 & ~er->valid_mask) | 1377 | if (event->attr.config1 & ~er->valid_mask) |
1357 | return -EINVAL; | 1378 | return -EINVAL; |
1358 | if (er->idx == __BITS_VALUE(reg1->idx, 0, 8) || | ||
1359 | er->idx == __BITS_VALUE(reg1->idx, 1, 8)) | ||
1360 | continue; | ||
1361 | if (WARN_ON_ONCE(reg_idx >= 2)) | ||
1362 | return -EINVAL; | ||
1363 | 1379 | ||
1364 | msr = er->msr + type->msr_offset * box->pmu->pmu_idx; | 1380 | msr = er->msr + type->msr_offset * box->pmu->pmu_idx; |
1365 | if (WARN_ON_ONCE(msr >= 0xffff || er->idx >= 0xff)) | 1381 | if (WARN_ON_ONCE(msr >= 0xffff || er->idx >= 0xff)) |
@@ -1368,6 +1384,8 @@ static int nhmex_mbox_hw_config(struct intel_uncore_box *box, struct perf_event | |||
1368 | /* always use the 32~63 bits to pass the PLD config */ | 1384 | /* always use the 32~63 bits to pass the PLD config */ |
1369 | if (er->idx == EXTRA_REG_NHMEX_M_PLD) | 1385 | if (er->idx == EXTRA_REG_NHMEX_M_PLD) |
1370 | reg_idx = 1; | 1386 | reg_idx = 1; |
1387 | else if (WARN_ON_ONCE(reg_idx > 0)) | ||
1388 | return -EINVAL; | ||
1371 | 1389 | ||
1372 | reg1->idx &= ~(0xff << (reg_idx * 8)); | 1390 | reg1->idx &= ~(0xff << (reg_idx * 8)); |
1373 | reg1->reg &= ~(0xffff << (reg_idx * 16)); | 1391 | reg1->reg &= ~(0xffff << (reg_idx * 16)); |
@@ -1376,17 +1394,21 @@ static int nhmex_mbox_hw_config(struct intel_uncore_box *box, struct perf_event | |||
1376 | reg1->config = event->attr.config1; | 1394 | reg1->config = event->attr.config1; |
1377 | reg_idx++; | 1395 | reg_idx++; |
1378 | } | 1396 | } |
1379 | /* use config2 to pass the filter config */ | 1397 | /* |
1380 | reg2->idx = EXTRA_REG_NHMEX_M_FILTER; | 1398 | * The mbox only provides ability to perform address matching |
1381 | if (event->attr.config2 & NHMEX_M_PMON_MM_CFG_EN) | 1399 | * for the PLD events. |
1382 | reg2->config = event->attr.config2; | 1400 | */ |
1383 | else | 1401 | if (reg_idx == 2) { |
1384 | reg2->config = ~0ULL; | 1402 | reg2->idx = EXTRA_REG_NHMEX_M_FILTER; |
1385 | if (box->pmu->pmu_idx == 0) | 1403 | if (event->attr.config2 & NHMEX_M_PMON_MM_CFG_EN) |
1386 | reg2->reg = NHMEX_M0_MSR_PMU_MM_CFG; | 1404 | reg2->config = event->attr.config2; |
1387 | else | 1405 | else |
1388 | reg2->reg = NHMEX_M1_MSR_PMU_MM_CFG; | 1406 | reg2->config = ~0ULL; |
1389 | 1407 | if (box->pmu->pmu_idx == 0) | |
1408 | reg2->reg = NHMEX_M0_MSR_PMU_MM_CFG; | ||
1409 | else | ||
1410 | reg2->reg = NHMEX_M1_MSR_PMU_MM_CFG; | ||
1411 | } | ||
1390 | return 0; | 1412 | return 0; |
1391 | } | 1413 | } |
1392 | 1414 | ||
@@ -1422,34 +1444,36 @@ static void nhmex_mbox_msr_enable_event(struct intel_uncore_box *box, struct per | |||
1422 | wrmsrl(__BITS_VALUE(reg1->reg, 1, 16), | 1444 | wrmsrl(__BITS_VALUE(reg1->reg, 1, 16), |
1423 | nhmex_mbox_shared_reg_config(box, idx)); | 1445 | nhmex_mbox_shared_reg_config(box, idx)); |
1424 | 1446 | ||
1425 | wrmsrl(reg2->reg, 0); | 1447 | if (reg2->idx != EXTRA_REG_NONE) { |
1426 | if (reg2->config != ~0ULL) { | 1448 | wrmsrl(reg2->reg, 0); |
1427 | wrmsrl(reg2->reg + 1, | 1449 | if (reg2->config != ~0ULL) { |
1428 | reg2->config & NHMEX_M_PMON_ADDR_MATCH_MASK); | 1450 | wrmsrl(reg2->reg + 1, |
1429 | wrmsrl(reg2->reg + 2, NHMEX_M_PMON_ADDR_MASK_MASK & | 1451 | reg2->config & NHMEX_M_PMON_ADDR_MATCH_MASK); |
1430 | (reg2->config >> NHMEX_M_PMON_ADDR_MASK_SHIFT)); | 1452 | wrmsrl(reg2->reg + 2, NHMEX_M_PMON_ADDR_MASK_MASK & |
1431 | wrmsrl(reg2->reg, NHMEX_M_PMON_MM_CFG_EN); | 1453 | (reg2->config >> NHMEX_M_PMON_ADDR_MASK_SHIFT)); |
1454 | wrmsrl(reg2->reg, NHMEX_M_PMON_MM_CFG_EN); | ||
1455 | } | ||
1432 | } | 1456 | } |
1433 | 1457 | ||
1434 | wrmsrl(hwc->config_base, hwc->config | NHMEX_PMON_CTL_EN_BIT0); | 1458 | wrmsrl(hwc->config_base, hwc->config | NHMEX_PMON_CTL_EN_BIT0); |
1435 | } | 1459 | } |
1436 | 1460 | ||
1437 | DEFINE_UNCORE_FORMAT_ATTR(count_mode, count_mode, "config:2-3"); | 1461 | DEFINE_UNCORE_FORMAT_ATTR(count_mode, count_mode, "config:2-3"); |
1438 | DEFINE_UNCORE_FORMAT_ATTR(storage_mode, storage_mode, "config:4-5"); | 1462 | DEFINE_UNCORE_FORMAT_ATTR(storage_mode, storage_mode, "config:4-5"); |
1439 | DEFINE_UNCORE_FORMAT_ATTR(wrap_mode, wrap_mode, "config:6"); | 1463 | DEFINE_UNCORE_FORMAT_ATTR(wrap_mode, wrap_mode, "config:6"); |
1440 | DEFINE_UNCORE_FORMAT_ATTR(flag_mode, flag_mode, "config:7"); | 1464 | DEFINE_UNCORE_FORMAT_ATTR(flag_mode, flag_mode, "config:7"); |
1441 | DEFINE_UNCORE_FORMAT_ATTR(inc_sel, inc_sel, "config:9-13"); | 1465 | DEFINE_UNCORE_FORMAT_ATTR(inc_sel, inc_sel, "config:9-13"); |
1442 | DEFINE_UNCORE_FORMAT_ATTR(set_flag_sel, set_flag_sel, "config:19-21"); | 1466 | DEFINE_UNCORE_FORMAT_ATTR(set_flag_sel, set_flag_sel, "config:19-21"); |
1443 | DEFINE_UNCORE_FORMAT_ATTR(filter_cfg, filter_cfg, "config2:63"); | 1467 | DEFINE_UNCORE_FORMAT_ATTR(filter_cfg_en, filter_cfg_en, "config2:63"); |
1444 | DEFINE_UNCORE_FORMAT_ATTR(filter_match, filter_match, "config2:0-33"); | 1468 | DEFINE_UNCORE_FORMAT_ATTR(filter_match, filter_match, "config2:0-33"); |
1445 | DEFINE_UNCORE_FORMAT_ATTR(filter_mask, filter_mask, "config2:34-61"); | 1469 | DEFINE_UNCORE_FORMAT_ATTR(filter_mask, filter_mask, "config2:34-61"); |
1446 | DEFINE_UNCORE_FORMAT_ATTR(dsp, dsp, "config1:0-31"); | 1470 | DEFINE_UNCORE_FORMAT_ATTR(dsp, dsp, "config1:0-31"); |
1447 | DEFINE_UNCORE_FORMAT_ATTR(thr, thr, "config1:0-31"); | 1471 | DEFINE_UNCORE_FORMAT_ATTR(thr, thr, "config1:0-31"); |
1448 | DEFINE_UNCORE_FORMAT_ATTR(fvc, fvc, "config1:0-31"); | 1472 | DEFINE_UNCORE_FORMAT_ATTR(fvc, fvc, "config1:0-31"); |
1449 | DEFINE_UNCORE_FORMAT_ATTR(pgt, pgt, "config1:0-31"); | 1473 | DEFINE_UNCORE_FORMAT_ATTR(pgt, pgt, "config1:0-31"); |
1450 | DEFINE_UNCORE_FORMAT_ATTR(map, map, "config1:0-31"); | 1474 | DEFINE_UNCORE_FORMAT_ATTR(map, map, "config1:0-31"); |
1451 | DEFINE_UNCORE_FORMAT_ATTR(iss, iss, "config1:0-31"); | 1475 | DEFINE_UNCORE_FORMAT_ATTR(iss, iss, "config1:0-31"); |
1452 | DEFINE_UNCORE_FORMAT_ATTR(pld, pld, "config1:32-63"); | 1476 | DEFINE_UNCORE_FORMAT_ATTR(pld, pld, "config1:32-63"); |
1453 | 1477 | ||
1454 | static struct attribute *nhmex_uncore_mbox_formats_attr[] = { | 1478 | static struct attribute *nhmex_uncore_mbox_formats_attr[] = { |
1455 | &format_attr_count_mode.attr, | 1479 | &format_attr_count_mode.attr, |
@@ -1458,7 +1482,7 @@ static struct attribute *nhmex_uncore_mbox_formats_attr[] = { | |||
1458 | &format_attr_flag_mode.attr, | 1482 | &format_attr_flag_mode.attr, |
1459 | &format_attr_inc_sel.attr, | 1483 | &format_attr_inc_sel.attr, |
1460 | &format_attr_set_flag_sel.attr, | 1484 | &format_attr_set_flag_sel.attr, |
1461 | &format_attr_filter_cfg.attr, | 1485 | &format_attr_filter_cfg_en.attr, |
1462 | &format_attr_filter_match.attr, | 1486 | &format_attr_filter_match.attr, |
1463 | &format_attr_filter_mask.attr, | 1487 | &format_attr_filter_mask.attr, |
1464 | &format_attr_dsp.attr, | 1488 | &format_attr_dsp.attr, |
@@ -1482,6 +1506,12 @@ static struct uncore_event_desc nhmex_uncore_mbox_events[] = { | |||
1482 | { /* end: all zeroes */ }, | 1506 | { /* end: all zeroes */ }, |
1483 | }; | 1507 | }; |
1484 | 1508 | ||
1509 | static struct uncore_event_desc wsmex_uncore_mbox_events[] = { | ||
1510 | INTEL_UNCORE_EVENT_DESC(bbox_cmds_read, "inc_sel=0xd,fvc=0x5000"), | ||
1511 | INTEL_UNCORE_EVENT_DESC(bbox_cmds_write, "inc_sel=0xd,fvc=0x5040"), | ||
1512 | { /* end: all zeroes */ }, | ||
1513 | }; | ||
1514 | |||
1485 | static struct intel_uncore_ops nhmex_uncore_mbox_ops = { | 1515 | static struct intel_uncore_ops nhmex_uncore_mbox_ops = { |
1486 | NHMEX_UNCORE_OPS_COMMON_INIT(), | 1516 | NHMEX_UNCORE_OPS_COMMON_INIT(), |
1487 | .enable_event = nhmex_mbox_msr_enable_event, | 1517 | .enable_event = nhmex_mbox_msr_enable_event, |
@@ -1513,7 +1543,7 @@ void nhmex_rbox_alter_er(struct intel_uncore_box *box, struct perf_event *event) | |||
1513 | struct hw_perf_event_extra *reg1 = &hwc->extra_reg; | 1543 | struct hw_perf_event_extra *reg1 = &hwc->extra_reg; |
1514 | int port; | 1544 | int port; |
1515 | 1545 | ||
1516 | /* adjust the main event selector */ | 1546 | /* adjust the main event selector and extra register index */ |
1517 | if (reg1->idx % 2) { | 1547 | if (reg1->idx % 2) { |
1518 | reg1->idx--; | 1548 | reg1->idx--; |
1519 | hwc->config -= 1 << NHMEX_R_PMON_CTL_EV_SEL_SHIFT; | 1549 | hwc->config -= 1 << NHMEX_R_PMON_CTL_EV_SEL_SHIFT; |
@@ -1522,29 +1552,17 @@ void nhmex_rbox_alter_er(struct intel_uncore_box *box, struct perf_event *event) | |||
1522 | hwc->config += 1 << NHMEX_R_PMON_CTL_EV_SEL_SHIFT; | 1552 | hwc->config += 1 << NHMEX_R_PMON_CTL_EV_SEL_SHIFT; |
1523 | } | 1553 | } |
1524 | 1554 | ||
1525 | /* adjust address or config of extra register */ | 1555 | /* adjust extra register config */ |
1526 | port = reg1->idx / 6 + box->pmu->pmu_idx * 4; | 1556 | port = reg1->idx / 6 + box->pmu->pmu_idx * 4; |
1527 | switch (reg1->idx % 6) { | 1557 | switch (reg1->idx % 6) { |
1528 | case 0: | ||
1529 | reg1->reg = NHMEX_R_MSR_PORTN_IPERF_CFG0(port); | ||
1530 | break; | ||
1531 | case 1: | ||
1532 | reg1->reg = NHMEX_R_MSR_PORTN_IPERF_CFG1(port); | ||
1533 | break; | ||
1534 | case 2: | 1558 | case 2: |
1535 | /* the 8~15 bits to the 0~7 bits */ | 1559 | /* shift the 8~15 bits to the 0~7 bits */ |
1536 | reg1->config >>= 8; | 1560 | reg1->config >>= 8; |
1537 | break; | 1561 | break; |
1538 | case 3: | 1562 | case 3: |
1539 | /* the 0~7 bits to the 8~15 bits */ | 1563 | /* shift the 0~7 bits to the 8~15 bits */ |
1540 | reg1->config <<= 8; | 1564 | reg1->config <<= 8; |
1541 | break; | 1565 | break; |
1542 | case 4: | ||
1543 | reg1->reg = NHMEX_R_MSR_PORTN_XBR_SET1_MM_CFG(port); | ||
1544 | break; | ||
1545 | case 5: | ||
1546 | reg1->reg = NHMEX_R_MSR_PORTN_XBR_SET2_MM_CFG(port); | ||
1547 | break; | ||
1548 | }; | 1566 | }; |
1549 | } | 1567 | } |
1550 | 1568 | ||
@@ -1671,7 +1689,7 @@ static int nhmex_rbox_hw_config(struct intel_uncore_box *box, struct perf_event | |||
1671 | struct hw_perf_event *hwc = &event->hw; | 1689 | struct hw_perf_event *hwc = &event->hw; |
1672 | struct hw_perf_event_extra *reg1 = &event->hw.extra_reg; | 1690 | struct hw_perf_event_extra *reg1 = &event->hw.extra_reg; |
1673 | struct hw_perf_event_extra *reg2 = &event->hw.branch_reg; | 1691 | struct hw_perf_event_extra *reg2 = &event->hw.branch_reg; |
1674 | int port, idx; | 1692 | int idx; |
1675 | 1693 | ||
1676 | idx = (event->hw.config & NHMEX_R_PMON_CTL_EV_SEL_MASK) >> | 1694 | idx = (event->hw.config & NHMEX_R_PMON_CTL_EV_SEL_MASK) >> |
1677 | NHMEX_R_PMON_CTL_EV_SEL_SHIFT; | 1695 | NHMEX_R_PMON_CTL_EV_SEL_SHIFT; |
@@ -1681,27 +1699,11 @@ static int nhmex_rbox_hw_config(struct intel_uncore_box *box, struct perf_event | |||
1681 | reg1->idx = idx; | 1699 | reg1->idx = idx; |
1682 | reg1->config = event->attr.config1; | 1700 | reg1->config = event->attr.config1; |
1683 | 1701 | ||
1684 | port = idx / 6 + box->pmu->pmu_idx * 4; | 1702 | switch (idx % 6) { |
1685 | idx %= 6; | ||
1686 | switch (idx) { | ||
1687 | case 0: | ||
1688 | reg1->reg = NHMEX_R_MSR_PORTN_IPERF_CFG0(port); | ||
1689 | break; | ||
1690 | case 1: | ||
1691 | reg1->reg = NHMEX_R_MSR_PORTN_IPERF_CFG1(port); | ||
1692 | break; | ||
1693 | case 2: | ||
1694 | case 3: | ||
1695 | reg1->reg = NHMEX_R_MSR_PORTN_QLX_CFG(port); | ||
1696 | break; | ||
1697 | case 4: | 1703 | case 4: |
1698 | case 5: | 1704 | case 5: |
1699 | if (idx == 4) | ||
1700 | reg1->reg = NHMEX_R_MSR_PORTN_XBR_SET1_MM_CFG(port); | ||
1701 | else | ||
1702 | reg1->reg = NHMEX_R_MSR_PORTN_XBR_SET2_MM_CFG(port); | ||
1703 | reg2->config = event->attr.config2; | ||
1704 | hwc->config |= event->attr.config & (~0ULL << 32); | 1705 | hwc->config |= event->attr.config & (~0ULL << 32); |
1706 | reg2->config = event->attr.config2; | ||
1705 | break; | 1707 | break; |
1706 | }; | 1708 | }; |
1707 | return 0; | 1709 | return 0; |
@@ -1727,28 +1729,34 @@ static void nhmex_rbox_msr_enable_event(struct intel_uncore_box *box, struct per | |||
1727 | struct hw_perf_event *hwc = &event->hw; | 1729 | struct hw_perf_event *hwc = &event->hw; |
1728 | struct hw_perf_event_extra *reg1 = &hwc->extra_reg; | 1730 | struct hw_perf_event_extra *reg1 = &hwc->extra_reg; |
1729 | struct hw_perf_event_extra *reg2 = &hwc->branch_reg; | 1731 | struct hw_perf_event_extra *reg2 = &hwc->branch_reg; |
1730 | int idx, er_idx; | 1732 | int idx, port; |
1731 | 1733 | ||
1732 | idx = reg1->idx % 6; | 1734 | idx = reg1->idx; |
1733 | er_idx = idx; | 1735 | port = idx / 6 + box->pmu->pmu_idx * 4; |
1734 | if (er_idx > 2) | ||
1735 | er_idx--; | ||
1736 | er_idx += (reg1->idx / 6) * 5; | ||
1737 | 1736 | ||
1738 | switch (idx) { | 1737 | switch (idx % 6) { |
1739 | case 0: | 1738 | case 0: |
1739 | wrmsrl(NHMEX_R_MSR_PORTN_IPERF_CFG0(port), reg1->config); | ||
1740 | break; | ||
1740 | case 1: | 1741 | case 1: |
1741 | wrmsrl(reg1->reg, reg1->config); | 1742 | wrmsrl(NHMEX_R_MSR_PORTN_IPERF_CFG1(port), reg1->config); |
1742 | break; | 1743 | break; |
1743 | case 2: | 1744 | case 2: |
1744 | case 3: | 1745 | case 3: |
1745 | wrmsrl(reg1->reg, nhmex_rbox_shared_reg_config(box, er_idx)); | 1746 | wrmsrl(NHMEX_R_MSR_PORTN_QLX_CFG(port), |
1747 | nhmex_rbox_shared_reg_config(box, 2 + (idx / 6) * 5)); | ||
1746 | break; | 1748 | break; |
1747 | case 4: | 1749 | case 4: |
1750 | wrmsrl(NHMEX_R_MSR_PORTN_XBR_SET1_MM_CFG(port), | ||
1751 | hwc->config >> 32); | ||
1752 | wrmsrl(NHMEX_R_MSR_PORTN_XBR_SET1_MATCH(port), reg1->config); | ||
1753 | wrmsrl(NHMEX_R_MSR_PORTN_XBR_SET1_MASK(port), reg2->config); | ||
1754 | break; | ||
1748 | case 5: | 1755 | case 5: |
1749 | wrmsrl(reg1->reg, reg1->config); | 1756 | wrmsrl(NHMEX_R_MSR_PORTN_XBR_SET2_MM_CFG(port), |
1750 | wrmsrl(reg1->reg + 1, hwc->config >> 32); | 1757 | hwc->config >> 32); |
1751 | wrmsrl(reg1->reg + 2, reg2->config); | 1758 | wrmsrl(NHMEX_R_MSR_PORTN_XBR_SET2_MATCH(port), reg1->config); |
1759 | wrmsrl(NHMEX_R_MSR_PORTN_XBR_SET2_MASK(port), reg2->config); | ||
1752 | break; | 1760 | break; |
1753 | }; | 1761 | }; |
1754 | 1762 | ||
@@ -1756,8 +1764,8 @@ static void nhmex_rbox_msr_enable_event(struct intel_uncore_box *box, struct per | |||
1756 | (hwc->config & NHMEX_R_PMON_CTL_EV_SEL_MASK)); | 1764 | (hwc->config & NHMEX_R_PMON_CTL_EV_SEL_MASK)); |
1757 | } | 1765 | } |
1758 | 1766 | ||
1759 | DEFINE_UNCORE_FORMAT_ATTR(xbr_match, xbr_match, "config:32-63"); | 1767 | DEFINE_UNCORE_FORMAT_ATTR(xbr_mm_cfg, xbr_mm_cfg, "config:32-63"); |
1760 | DEFINE_UNCORE_FORMAT_ATTR(xbr_mm_cfg, xbr_mm_cfg, "config1:0-63"); | 1768 | DEFINE_UNCORE_FORMAT_ATTR(xbr_match, xbr_match, "config1:0-63"); |
1761 | DEFINE_UNCORE_FORMAT_ATTR(xbr_mask, xbr_mask, "config2:0-63"); | 1769 | DEFINE_UNCORE_FORMAT_ATTR(xbr_mask, xbr_mask, "config2:0-63"); |
1762 | DEFINE_UNCORE_FORMAT_ATTR(qlx_cfg, qlx_cfg, "config1:0-15"); | 1770 | DEFINE_UNCORE_FORMAT_ATTR(qlx_cfg, qlx_cfg, "config1:0-15"); |
1763 | DEFINE_UNCORE_FORMAT_ATTR(iperf_cfg, iperf_cfg, "config1:0-31"); | 1771 | DEFINE_UNCORE_FORMAT_ATTR(iperf_cfg, iperf_cfg, "config1:0-31"); |
@@ -2303,6 +2311,7 @@ int uncore_pmu_event_init(struct perf_event *event) | |||
2303 | event->hw.idx = -1; | 2311 | event->hw.idx = -1; |
2304 | event->hw.last_tag = ~0ULL; | 2312 | event->hw.last_tag = ~0ULL; |
2305 | event->hw.extra_reg.idx = EXTRA_REG_NONE; | 2313 | event->hw.extra_reg.idx = EXTRA_REG_NONE; |
2314 | event->hw.branch_reg.idx = EXTRA_REG_NONE; | ||
2306 | 2315 | ||
2307 | if (event->attr.config == UNCORE_FIXED_EVENT) { | 2316 | if (event->attr.config == UNCORE_FIXED_EVENT) { |
2308 | /* no fixed counter */ | 2317 | /* no fixed counter */ |
@@ -2373,7 +2382,7 @@ static void __init uncore_type_exit(struct intel_uncore_type *type) | |||
2373 | type->attr_groups[1] = NULL; | 2382 | type->attr_groups[1] = NULL; |
2374 | } | 2383 | } |
2375 | 2384 | ||
2376 | static void uncore_types_exit(struct intel_uncore_type **types) | 2385 | static void __init uncore_types_exit(struct intel_uncore_type **types) |
2377 | { | 2386 | { |
2378 | int i; | 2387 | int i; |
2379 | for (i = 0; types[i]; i++) | 2388 | for (i = 0; types[i]; i++) |
@@ -2814,7 +2823,13 @@ static int __init uncore_cpu_init(void) | |||
2814 | snbep_uncore_cbox.num_boxes = max_cores; | 2823 | snbep_uncore_cbox.num_boxes = max_cores; |
2815 | msr_uncores = snbep_msr_uncores; | 2824 | msr_uncores = snbep_msr_uncores; |
2816 | break; | 2825 | break; |
2817 | case 46: | 2826 | case 46: /* Nehalem-EX */ |
2827 | uncore_nhmex = true; | ||
2828 | case 47: /* Westmere-EX aka. Xeon E7 */ | ||
2829 | if (!uncore_nhmex) | ||
2830 | nhmex_uncore_mbox.event_descs = wsmex_uncore_mbox_events; | ||
2831 | if (nhmex_uncore_cbox.num_boxes > max_cores) | ||
2832 | nhmex_uncore_cbox.num_boxes = max_cores; | ||
2818 | msr_uncores = nhmex_msr_uncores; | 2833 | msr_uncores = nhmex_msr_uncores; |
2819 | break; | 2834 | break; |
2820 | default: | 2835 | default: |
diff --git a/arch/x86/kernel/cpu/perf_event_intel_uncore.h b/arch/x86/kernel/cpu/perf_event_intel_uncore.h index f3851892e077..5b81c1856aac 100644 --- a/arch/x86/kernel/cpu/perf_event_intel_uncore.h +++ b/arch/x86/kernel/cpu/perf_event_intel_uncore.h | |||
@@ -5,7 +5,7 @@ | |||
5 | #include "perf_event.h" | 5 | #include "perf_event.h" |
6 | 6 | ||
7 | #define UNCORE_PMU_NAME_LEN 32 | 7 | #define UNCORE_PMU_NAME_LEN 32 |
8 | #define UNCORE_PMU_HRTIMER_INTERVAL (60 * NSEC_PER_SEC) | 8 | #define UNCORE_PMU_HRTIMER_INTERVAL (60LL * NSEC_PER_SEC) |
9 | 9 | ||
10 | #define UNCORE_FIXED_EVENT 0xff | 10 | #define UNCORE_FIXED_EVENT 0xff |
11 | #define UNCORE_PMC_IDX_MAX_GENERIC 8 | 11 | #define UNCORE_PMC_IDX_MAX_GENERIC 8 |
@@ -230,6 +230,7 @@ | |||
230 | #define NHMEX_S1_MSR_MASK 0xe5a | 230 | #define NHMEX_S1_MSR_MASK 0xe5a |
231 | 231 | ||
232 | #define NHMEX_S_PMON_MM_CFG_EN (0x1ULL << 63) | 232 | #define NHMEX_S_PMON_MM_CFG_EN (0x1ULL << 63) |
233 | #define NHMEX_S_EVENT_TO_R_PROG_EV 0 | ||
233 | 234 | ||
234 | /* NHM-EX Mbox */ | 235 | /* NHM-EX Mbox */ |
235 | #define NHMEX_M0_MSR_GLOBAL_CTL 0xca0 | 236 | #define NHMEX_M0_MSR_GLOBAL_CTL 0xca0 |
@@ -275,18 +276,12 @@ | |||
275 | NHMEX_M_PMON_CTL_INC_SEL_MASK | \ | 276 | NHMEX_M_PMON_CTL_INC_SEL_MASK | \ |
276 | NHMEX_M_PMON_CTL_SET_FLAG_SEL_MASK) | 277 | NHMEX_M_PMON_CTL_SET_FLAG_SEL_MASK) |
277 | 278 | ||
278 | 279 | #define NHMEX_M_PMON_ZDP_CTL_FVC_MASK (((1 << 11) - 1) | (1 << 23)) | |
279 | #define NHMEX_M_PMON_ZDP_CTL_FVC_FVID_MASK 0x1f | ||
280 | #define NHMEX_M_PMON_ZDP_CTL_FVC_BCMD_MASK (0x7 << 5) | ||
281 | #define NHMEX_M_PMON_ZDP_CTL_FVC_RSP_MASK (0x7 << 8) | ||
282 | #define NHMEX_M_PMON_ZDP_CTL_FVC_PBOX_INIT_ERR (1 << 23) | ||
283 | #define NHMEX_M_PMON_ZDP_CTL_FVC_MASK \ | ||
284 | (NHMEX_M_PMON_ZDP_CTL_FVC_FVID_MASK | \ | ||
285 | NHMEX_M_PMON_ZDP_CTL_FVC_BCMD_MASK | \ | ||
286 | NHMEX_M_PMON_ZDP_CTL_FVC_RSP_MASK | \ | ||
287 | NHMEX_M_PMON_ZDP_CTL_FVC_PBOX_INIT_ERR) | ||
288 | #define NHMEX_M_PMON_ZDP_CTL_FVC_EVENT_MASK(n) (0x7 << (11 + 3 * (n))) | 280 | #define NHMEX_M_PMON_ZDP_CTL_FVC_EVENT_MASK(n) (0x7 << (11 + 3 * (n))) |
289 | 281 | ||
282 | #define WSMEX_M_PMON_ZDP_CTL_FVC_MASK (((1 << 12) - 1) | (1 << 24)) | ||
283 | #define WSMEX_M_PMON_ZDP_CTL_FVC_EVENT_MASK(n) (0x7 << (12 + 3 * (n))) | ||
284 | |||
290 | /* | 285 | /* |
291 | * use the 9~13 bits to select event If the 7th bit is not set, | 286 | * use the 9~13 bits to select event If the 7th bit is not set, |
292 | * otherwise use the 19~21 bits to select event. | 287 | * otherwise use the 19~21 bits to select event. |
@@ -368,6 +363,7 @@ struct intel_uncore_type { | |||
368 | unsigned num_shared_regs:8; | 363 | unsigned num_shared_regs:8; |
369 | unsigned single_fixed:1; | 364 | unsigned single_fixed:1; |
370 | unsigned pair_ctr_ctl:1; | 365 | unsigned pair_ctr_ctl:1; |
366 | unsigned *msr_offsets; | ||
371 | struct event_constraint unconstrainted; | 367 | struct event_constraint unconstrainted; |
372 | struct event_constraint *constraints; | 368 | struct event_constraint *constraints; |
373 | struct intel_uncore_pmu *pmus; | 369 | struct intel_uncore_pmu *pmus; |
@@ -485,29 +481,31 @@ unsigned uncore_pci_perf_ctr(struct intel_uncore_box *box, int idx) | |||
485 | return idx * 8 + box->pmu->type->perf_ctr; | 481 | return idx * 8 + box->pmu->type->perf_ctr; |
486 | } | 482 | } |
487 | 483 | ||
488 | static inline | 484 | static inline unsigned uncore_msr_box_offset(struct intel_uncore_box *box) |
489 | unsigned uncore_msr_box_ctl(struct intel_uncore_box *box) | 485 | { |
486 | struct intel_uncore_pmu *pmu = box->pmu; | ||
487 | return pmu->type->msr_offsets ? | ||
488 | pmu->type->msr_offsets[pmu->pmu_idx] : | ||
489 | pmu->type->msr_offset * pmu->pmu_idx; | ||
490 | } | ||
491 | |||
492 | static inline unsigned uncore_msr_box_ctl(struct intel_uncore_box *box) | ||
490 | { | 493 | { |
491 | if (!box->pmu->type->box_ctl) | 494 | if (!box->pmu->type->box_ctl) |
492 | return 0; | 495 | return 0; |
493 | return box->pmu->type->box_ctl + | 496 | return box->pmu->type->box_ctl + uncore_msr_box_offset(box); |
494 | box->pmu->type->msr_offset * box->pmu->pmu_idx; | ||
495 | } | 497 | } |
496 | 498 | ||
497 | static inline | 499 | static inline unsigned uncore_msr_fixed_ctl(struct intel_uncore_box *box) |
498 | unsigned uncore_msr_fixed_ctl(struct intel_uncore_box *box) | ||
499 | { | 500 | { |
500 | if (!box->pmu->type->fixed_ctl) | 501 | if (!box->pmu->type->fixed_ctl) |
501 | return 0; | 502 | return 0; |
502 | return box->pmu->type->fixed_ctl + | 503 | return box->pmu->type->fixed_ctl + uncore_msr_box_offset(box); |
503 | box->pmu->type->msr_offset * box->pmu->pmu_idx; | ||
504 | } | 504 | } |
505 | 505 | ||
506 | static inline | 506 | static inline unsigned uncore_msr_fixed_ctr(struct intel_uncore_box *box) |
507 | unsigned uncore_msr_fixed_ctr(struct intel_uncore_box *box) | ||
508 | { | 507 | { |
509 | return box->pmu->type->fixed_ctr + | 508 | return box->pmu->type->fixed_ctr + uncore_msr_box_offset(box); |
510 | box->pmu->type->msr_offset * box->pmu->pmu_idx; | ||
511 | } | 509 | } |
512 | 510 | ||
513 | static inline | 511 | static inline |
@@ -515,7 +513,7 @@ unsigned uncore_msr_event_ctl(struct intel_uncore_box *box, int idx) | |||
515 | { | 513 | { |
516 | return box->pmu->type->event_ctl + | 514 | return box->pmu->type->event_ctl + |
517 | (box->pmu->type->pair_ctr_ctl ? 2 * idx : idx) + | 515 | (box->pmu->type->pair_ctr_ctl ? 2 * idx : idx) + |
518 | box->pmu->type->msr_offset * box->pmu->pmu_idx; | 516 | uncore_msr_box_offset(box); |
519 | } | 517 | } |
520 | 518 | ||
521 | static inline | 519 | static inline |
@@ -523,7 +521,7 @@ unsigned uncore_msr_perf_ctr(struct intel_uncore_box *box, int idx) | |||
523 | { | 521 | { |
524 | return box->pmu->type->perf_ctr + | 522 | return box->pmu->type->perf_ctr + |
525 | (box->pmu->type->pair_ctr_ctl ? 2 * idx : idx) + | 523 | (box->pmu->type->pair_ctr_ctl ? 2 * idx : idx) + |
526 | box->pmu->type->msr_offset * box->pmu->pmu_idx; | 524 | uncore_msr_box_offset(box); |
527 | } | 525 | } |
528 | 526 | ||
529 | static inline | 527 | static inline |
diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c index 1f5f1d5d2a02..d44f7829968e 100644 --- a/arch/x86/kernel/irq.c +++ b/arch/x86/kernel/irq.c | |||
@@ -270,7 +270,7 @@ void fixup_irqs(void) | |||
270 | 270 | ||
271 | if (cpumask_any_and(affinity, cpu_online_mask) >= nr_cpu_ids) { | 271 | if (cpumask_any_and(affinity, cpu_online_mask) >= nr_cpu_ids) { |
272 | break_affinity = 1; | 272 | break_affinity = 1; |
273 | affinity = cpu_all_mask; | 273 | affinity = cpu_online_mask; |
274 | } | 274 | } |
275 | 275 | ||
276 | chip = irq_data_get_irq_chip(data); | 276 | chip = irq_data_get_irq_chip(data); |
@@ -328,6 +328,7 @@ void fixup_irqs(void) | |||
328 | chip->irq_retrigger(data); | 328 | chip->irq_retrigger(data); |
329 | raw_spin_unlock(&desc->lock); | 329 | raw_spin_unlock(&desc->lock); |
330 | } | 330 | } |
331 | __this_cpu_write(vector_irq[vector], -1); | ||
331 | } | 332 | } |
332 | } | 333 | } |
333 | #endif | 334 | #endif |
diff --git a/arch/x86/kernel/kdebugfs.c b/arch/x86/kernel/kdebugfs.c index 1d5d31ea686b..dc1404bf8e4b 100644 --- a/arch/x86/kernel/kdebugfs.c +++ b/arch/x86/kernel/kdebugfs.c | |||
@@ -107,7 +107,7 @@ static int __init create_setup_data_nodes(struct dentry *parent) | |||
107 | { | 107 | { |
108 | struct setup_data_node *node; | 108 | struct setup_data_node *node; |
109 | struct setup_data *data; | 109 | struct setup_data *data; |
110 | int error = -ENOMEM; | 110 | int error; |
111 | struct dentry *d; | 111 | struct dentry *d; |
112 | struct page *pg; | 112 | struct page *pg; |
113 | u64 pa_data; | 113 | u64 pa_data; |
@@ -121,8 +121,10 @@ static int __init create_setup_data_nodes(struct dentry *parent) | |||
121 | 121 | ||
122 | while (pa_data) { | 122 | while (pa_data) { |
123 | node = kmalloc(sizeof(*node), GFP_KERNEL); | 123 | node = kmalloc(sizeof(*node), GFP_KERNEL); |
124 | if (!node) | 124 | if (!node) { |
125 | error = -ENOMEM; | ||
125 | goto err_dir; | 126 | goto err_dir; |
127 | } | ||
126 | 128 | ||
127 | pg = pfn_to_page((pa_data+sizeof(*data)-1) >> PAGE_SHIFT); | 129 | pg = pfn_to_page((pa_data+sizeof(*data)-1) >> PAGE_SHIFT); |
128 | if (PageHighMem(pg)) { | 130 | if (PageHighMem(pg)) { |
diff --git a/arch/x86/kernel/microcode_amd.c b/arch/x86/kernel/microcode_amd.c index 8a2ce8fd41c0..82746f942cd8 100644 --- a/arch/x86/kernel/microcode_amd.c +++ b/arch/x86/kernel/microcode_amd.c | |||
@@ -143,11 +143,12 @@ static int get_matching_microcode(int cpu, const u8 *ucode_ptr, | |||
143 | unsigned int *current_size) | 143 | unsigned int *current_size) |
144 | { | 144 | { |
145 | struct microcode_header_amd *mc_hdr; | 145 | struct microcode_header_amd *mc_hdr; |
146 | unsigned int actual_size; | 146 | unsigned int actual_size, patch_size; |
147 | u16 equiv_cpu_id; | 147 | u16 equiv_cpu_id; |
148 | 148 | ||
149 | /* size of the current patch we're staring at */ | 149 | /* size of the current patch we're staring at */ |
150 | *current_size = *(u32 *)(ucode_ptr + 4) + SECTION_HDR_SIZE; | 150 | patch_size = *(u32 *)(ucode_ptr + 4); |
151 | *current_size = patch_size + SECTION_HDR_SIZE; | ||
151 | 152 | ||
152 | equiv_cpu_id = find_equiv_id(); | 153 | equiv_cpu_id = find_equiv_id(); |
153 | if (!equiv_cpu_id) | 154 | if (!equiv_cpu_id) |
@@ -174,7 +175,7 @@ static int get_matching_microcode(int cpu, const u8 *ucode_ptr, | |||
174 | /* | 175 | /* |
175 | * now that the header looks sane, verify its size | 176 | * now that the header looks sane, verify its size |
176 | */ | 177 | */ |
177 | actual_size = verify_ucode_size(cpu, *current_size, leftover_size); | 178 | actual_size = verify_ucode_size(cpu, patch_size, leftover_size); |
178 | if (!actual_size) | 179 | if (!actual_size) |
179 | return 0; | 180 | return 0; |
180 | 181 | ||
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c index 97d9a9914ba8..a3b57a27be88 100644 --- a/arch/x86/kvm/emulate.c +++ b/arch/x86/kvm/emulate.c | |||
@@ -475,13 +475,26 @@ register_address(struct x86_emulate_ctxt *ctxt, unsigned long reg) | |||
475 | return address_mask(ctxt, reg); | 475 | return address_mask(ctxt, reg); |
476 | } | 476 | } |
477 | 477 | ||
478 | static void masked_increment(ulong *reg, ulong mask, int inc) | ||
479 | { | ||
480 | assign_masked(reg, *reg + inc, mask); | ||
481 | } | ||
482 | |||
478 | static inline void | 483 | static inline void |
479 | register_address_increment(struct x86_emulate_ctxt *ctxt, unsigned long *reg, int inc) | 484 | register_address_increment(struct x86_emulate_ctxt *ctxt, unsigned long *reg, int inc) |
480 | { | 485 | { |
486 | ulong mask; | ||
487 | |||
481 | if (ctxt->ad_bytes == sizeof(unsigned long)) | 488 | if (ctxt->ad_bytes == sizeof(unsigned long)) |
482 | *reg += inc; | 489 | mask = ~0UL; |
483 | else | 490 | else |
484 | *reg = (*reg & ~ad_mask(ctxt)) | ((*reg + inc) & ad_mask(ctxt)); | 491 | mask = ad_mask(ctxt); |
492 | masked_increment(reg, mask, inc); | ||
493 | } | ||
494 | |||
495 | static void rsp_increment(struct x86_emulate_ctxt *ctxt, int inc) | ||
496 | { | ||
497 | masked_increment(&ctxt->regs[VCPU_REGS_RSP], stack_mask(ctxt), inc); | ||
485 | } | 498 | } |
486 | 499 | ||
487 | static inline void jmp_rel(struct x86_emulate_ctxt *ctxt, int rel) | 500 | static inline void jmp_rel(struct x86_emulate_ctxt *ctxt, int rel) |
@@ -1522,8 +1535,8 @@ static int push(struct x86_emulate_ctxt *ctxt, void *data, int bytes) | |||
1522 | { | 1535 | { |
1523 | struct segmented_address addr; | 1536 | struct segmented_address addr; |
1524 | 1537 | ||
1525 | register_address_increment(ctxt, &ctxt->regs[VCPU_REGS_RSP], -bytes); | 1538 | rsp_increment(ctxt, -bytes); |
1526 | addr.ea = register_address(ctxt, ctxt->regs[VCPU_REGS_RSP]); | 1539 | addr.ea = ctxt->regs[VCPU_REGS_RSP] & stack_mask(ctxt); |
1527 | addr.seg = VCPU_SREG_SS; | 1540 | addr.seg = VCPU_SREG_SS; |
1528 | 1541 | ||
1529 | return segmented_write(ctxt, addr, data, bytes); | 1542 | return segmented_write(ctxt, addr, data, bytes); |
@@ -1542,13 +1555,13 @@ static int emulate_pop(struct x86_emulate_ctxt *ctxt, | |||
1542 | int rc; | 1555 | int rc; |
1543 | struct segmented_address addr; | 1556 | struct segmented_address addr; |
1544 | 1557 | ||
1545 | addr.ea = register_address(ctxt, ctxt->regs[VCPU_REGS_RSP]); | 1558 | addr.ea = ctxt->regs[VCPU_REGS_RSP] & stack_mask(ctxt); |
1546 | addr.seg = VCPU_SREG_SS; | 1559 | addr.seg = VCPU_SREG_SS; |
1547 | rc = segmented_read(ctxt, addr, dest, len); | 1560 | rc = segmented_read(ctxt, addr, dest, len); |
1548 | if (rc != X86EMUL_CONTINUE) | 1561 | if (rc != X86EMUL_CONTINUE) |
1549 | return rc; | 1562 | return rc; |
1550 | 1563 | ||
1551 | register_address_increment(ctxt, &ctxt->regs[VCPU_REGS_RSP], len); | 1564 | rsp_increment(ctxt, len); |
1552 | return rc; | 1565 | return rc; |
1553 | } | 1566 | } |
1554 | 1567 | ||
@@ -1688,8 +1701,7 @@ static int em_popa(struct x86_emulate_ctxt *ctxt) | |||
1688 | 1701 | ||
1689 | while (reg >= VCPU_REGS_RAX) { | 1702 | while (reg >= VCPU_REGS_RAX) { |
1690 | if (reg == VCPU_REGS_RSP) { | 1703 | if (reg == VCPU_REGS_RSP) { |
1691 | register_address_increment(ctxt, &ctxt->regs[VCPU_REGS_RSP], | 1704 | rsp_increment(ctxt, ctxt->op_bytes); |
1692 | ctxt->op_bytes); | ||
1693 | --reg; | 1705 | --reg; |
1694 | } | 1706 | } |
1695 | 1707 | ||
@@ -2825,7 +2837,7 @@ static int em_ret_near_imm(struct x86_emulate_ctxt *ctxt) | |||
2825 | rc = emulate_pop(ctxt, &ctxt->dst.val, ctxt->op_bytes); | 2837 | rc = emulate_pop(ctxt, &ctxt->dst.val, ctxt->op_bytes); |
2826 | if (rc != X86EMUL_CONTINUE) | 2838 | if (rc != X86EMUL_CONTINUE) |
2827 | return rc; | 2839 | return rc; |
2828 | register_address_increment(ctxt, &ctxt->regs[VCPU_REGS_RSP], ctxt->src.val); | 2840 | rsp_increment(ctxt, ctxt->src.val); |
2829 | return X86EMUL_CONTINUE; | 2841 | return X86EMUL_CONTINUE; |
2830 | } | 2842 | } |
2831 | 2843 | ||
diff --git a/arch/x86/kvm/i8259.c b/arch/x86/kvm/i8259.c index 1df8fb9e1d5d..e498b18f010c 100644 --- a/arch/x86/kvm/i8259.c +++ b/arch/x86/kvm/i8259.c | |||
@@ -316,6 +316,11 @@ static void pic_ioport_write(void *opaque, u32 addr, u32 val) | |||
316 | addr &= 1; | 316 | addr &= 1; |
317 | if (addr == 0) { | 317 | if (addr == 0) { |
318 | if (val & 0x10) { | 318 | if (val & 0x10) { |
319 | u8 edge_irr = s->irr & ~s->elcr; | ||
320 | int i; | ||
321 | bool found; | ||
322 | struct kvm_vcpu *vcpu; | ||
323 | |||
319 | s->init4 = val & 1; | 324 | s->init4 = val & 1; |
320 | s->last_irr = 0; | 325 | s->last_irr = 0; |
321 | s->irr &= s->elcr; | 326 | s->irr &= s->elcr; |
@@ -333,6 +338,18 @@ static void pic_ioport_write(void *opaque, u32 addr, u32 val) | |||
333 | if (val & 0x08) | 338 | if (val & 0x08) |
334 | pr_pic_unimpl( | 339 | pr_pic_unimpl( |
335 | "level sensitive irq not supported"); | 340 | "level sensitive irq not supported"); |
341 | |||
342 | kvm_for_each_vcpu(i, vcpu, s->pics_state->kvm) | ||
343 | if (kvm_apic_accept_pic_intr(vcpu)) { | ||
344 | found = true; | ||
345 | break; | ||
346 | } | ||
347 | |||
348 | |||
349 | if (found) | ||
350 | for (irq = 0; irq < PIC_NUM_PINS/2; irq++) | ||
351 | if (edge_irr & (1 << irq)) | ||
352 | pic_clear_isr(s, irq); | ||
336 | } else if (val & 0x08) { | 353 | } else if (val & 0x08) { |
337 | if (val & 0x04) | 354 | if (val & 0x04) |
338 | s->poll = 1; | 355 | s->poll = 1; |
diff --git a/arch/x86/kvm/mmu.c b/arch/x86/kvm/mmu.c index 01ca00423938..7fbd0d273ea8 100644 --- a/arch/x86/kvm/mmu.c +++ b/arch/x86/kvm/mmu.c | |||
@@ -4113,16 +4113,21 @@ static int mmu_shrink(struct shrinker *shrink, struct shrink_control *sc) | |||
4113 | LIST_HEAD(invalid_list); | 4113 | LIST_HEAD(invalid_list); |
4114 | 4114 | ||
4115 | /* | 4115 | /* |
4116 | * Never scan more than sc->nr_to_scan VM instances. | ||
4117 | * Will not hit this condition practically since we do not try | ||
4118 | * to shrink more than one VM and it is very unlikely to see | ||
4119 | * !n_used_mmu_pages so many times. | ||
4120 | */ | ||
4121 | if (!nr_to_scan--) | ||
4122 | break; | ||
4123 | /* | ||
4116 | * n_used_mmu_pages is accessed without holding kvm->mmu_lock | 4124 | * n_used_mmu_pages is accessed without holding kvm->mmu_lock |
4117 | * here. We may skip a VM instance errorneosly, but we do not | 4125 | * here. We may skip a VM instance errorneosly, but we do not |
4118 | * want to shrink a VM that only started to populate its MMU | 4126 | * want to shrink a VM that only started to populate its MMU |
4119 | * anyway. | 4127 | * anyway. |
4120 | */ | 4128 | */ |
4121 | if (kvm->arch.n_used_mmu_pages > 0) { | 4129 | if (!kvm->arch.n_used_mmu_pages) |
4122 | if (!nr_to_scan--) | ||
4123 | break; | ||
4124 | continue; | 4130 | continue; |
4125 | } | ||
4126 | 4131 | ||
4127 | idx = srcu_read_lock(&kvm->srcu); | 4132 | idx = srcu_read_lock(&kvm->srcu); |
4128 | spin_lock(&kvm->mmu_lock); | 4133 | spin_lock(&kvm->mmu_lock); |
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index c39b60707e02..c00f03de1b79 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c | |||
@@ -1488,13 +1488,6 @@ static void __vmx_load_host_state(struct vcpu_vmx *vmx) | |||
1488 | loadsegment(ds, vmx->host_state.ds_sel); | 1488 | loadsegment(ds, vmx->host_state.ds_sel); |
1489 | loadsegment(es, vmx->host_state.es_sel); | 1489 | loadsegment(es, vmx->host_state.es_sel); |
1490 | } | 1490 | } |
1491 | #else | ||
1492 | /* | ||
1493 | * The sysexit path does not restore ds/es, so we must set them to | ||
1494 | * a reasonable value ourselves. | ||
1495 | */ | ||
1496 | loadsegment(ds, __USER_DS); | ||
1497 | loadsegment(es, __USER_DS); | ||
1498 | #endif | 1491 | #endif |
1499 | reload_tss(); | 1492 | reload_tss(); |
1500 | #ifdef CONFIG_X86_64 | 1493 | #ifdef CONFIG_X86_64 |
@@ -6370,6 +6363,19 @@ static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu) | |||
6370 | #endif | 6363 | #endif |
6371 | ); | 6364 | ); |
6372 | 6365 | ||
6366 | #ifndef CONFIG_X86_64 | ||
6367 | /* | ||
6368 | * The sysexit path does not restore ds/es, so we must set them to | ||
6369 | * a reasonable value ourselves. | ||
6370 | * | ||
6371 | * We can't defer this to vmx_load_host_state() since that function | ||
6372 | * may be executed in interrupt context, which saves and restore segments | ||
6373 | * around it, nullifying its effect. | ||
6374 | */ | ||
6375 | loadsegment(ds, __USER_DS); | ||
6376 | loadsegment(es, __USER_DS); | ||
6377 | #endif | ||
6378 | |||
6373 | vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP) | 6379 | vcpu->arch.regs_avail = ~((1 << VCPU_REGS_RIP) | (1 << VCPU_REGS_RSP) |
6374 | | (1 << VCPU_EXREG_RFLAGS) | 6380 | | (1 << VCPU_EXREG_RFLAGS) |
6375 | | (1 << VCPU_EXREG_CPL) | 6381 | | (1 << VCPU_EXREG_CPL) |
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 59b59508ff07..148ed666e311 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -806,7 +806,7 @@ EXPORT_SYMBOL_GPL(kvm_rdpmc); | |||
806 | * kvm-specific. Those are put in the beginning of the list. | 806 | * kvm-specific. Those are put in the beginning of the list. |
807 | */ | 807 | */ |
808 | 808 | ||
809 | #define KVM_SAVE_MSRS_BEGIN 9 | 809 | #define KVM_SAVE_MSRS_BEGIN 10 |
810 | static u32 msrs_to_save[] = { | 810 | static u32 msrs_to_save[] = { |
811 | MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK, | 811 | MSR_KVM_SYSTEM_TIME, MSR_KVM_WALL_CLOCK, |
812 | MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW, | 812 | MSR_KVM_SYSTEM_TIME_NEW, MSR_KVM_WALL_CLOCK_NEW, |
@@ -925,6 +925,10 @@ static void kvm_write_wall_clock(struct kvm *kvm, gpa_t wall_clock) | |||
925 | */ | 925 | */ |
926 | getboottime(&boot); | 926 | getboottime(&boot); |
927 | 927 | ||
928 | if (kvm->arch.kvmclock_offset) { | ||
929 | struct timespec ts = ns_to_timespec(kvm->arch.kvmclock_offset); | ||
930 | boot = timespec_sub(boot, ts); | ||
931 | } | ||
928 | wc.sec = boot.tv_sec; | 932 | wc.sec = boot.tv_sec; |
929 | wc.nsec = boot.tv_nsec; | 933 | wc.nsec = boot.tv_nsec; |
930 | wc.version = version; | 934 | wc.version = version; |
@@ -1996,6 +2000,9 @@ int kvm_get_msr_common(struct kvm_vcpu *vcpu, u32 msr, u64 *pdata) | |||
1996 | case MSR_KVM_STEAL_TIME: | 2000 | case MSR_KVM_STEAL_TIME: |
1997 | data = vcpu->arch.st.msr_val; | 2001 | data = vcpu->arch.st.msr_val; |
1998 | break; | 2002 | break; |
2003 | case MSR_KVM_PV_EOI_EN: | ||
2004 | data = vcpu->arch.pv_eoi.msr_val; | ||
2005 | break; | ||
1999 | case MSR_IA32_P5_MC_ADDR: | 2006 | case MSR_IA32_P5_MC_ADDR: |
2000 | case MSR_IA32_P5_MC_TYPE: | 2007 | case MSR_IA32_P5_MC_TYPE: |
2001 | case MSR_IA32_MCG_CAP: | 2008 | case MSR_IA32_MCG_CAP: |
diff --git a/arch/x86/mm/hugetlbpage.c b/arch/x86/mm/hugetlbpage.c index f6679a7fb8ca..b91e48512425 100644 --- a/arch/x86/mm/hugetlbpage.c +++ b/arch/x86/mm/hugetlbpage.c | |||
@@ -56,9 +56,16 @@ static int vma_shareable(struct vm_area_struct *vma, unsigned long addr) | |||
56 | } | 56 | } |
57 | 57 | ||
58 | /* | 58 | /* |
59 | * search for a shareable pmd page for hugetlb. | 59 | * Search for a shareable pmd page for hugetlb. In any case calls pmd_alloc() |
60 | * and returns the corresponding pte. While this is not necessary for the | ||
61 | * !shared pmd case because we can allocate the pmd later as well, it makes the | ||
62 | * code much cleaner. pmd allocation is essential for the shared case because | ||
63 | * pud has to be populated inside the same i_mmap_mutex section - otherwise | ||
64 | * racing tasks could either miss the sharing (see huge_pte_offset) or select a | ||
65 | * bad pmd for sharing. | ||
60 | */ | 66 | */ |
61 | static void huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud) | 67 | static pte_t * |
68 | huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud) | ||
62 | { | 69 | { |
63 | struct vm_area_struct *vma = find_vma(mm, addr); | 70 | struct vm_area_struct *vma = find_vma(mm, addr); |
64 | struct address_space *mapping = vma->vm_file->f_mapping; | 71 | struct address_space *mapping = vma->vm_file->f_mapping; |
@@ -68,9 +75,10 @@ static void huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud) | |||
68 | struct vm_area_struct *svma; | 75 | struct vm_area_struct *svma; |
69 | unsigned long saddr; | 76 | unsigned long saddr; |
70 | pte_t *spte = NULL; | 77 | pte_t *spte = NULL; |
78 | pte_t *pte; | ||
71 | 79 | ||
72 | if (!vma_shareable(vma, addr)) | 80 | if (!vma_shareable(vma, addr)) |
73 | return; | 81 | return (pte_t *)pmd_alloc(mm, pud, addr); |
74 | 82 | ||
75 | mutex_lock(&mapping->i_mmap_mutex); | 83 | mutex_lock(&mapping->i_mmap_mutex); |
76 | vma_prio_tree_foreach(svma, &iter, &mapping->i_mmap, idx, idx) { | 84 | vma_prio_tree_foreach(svma, &iter, &mapping->i_mmap, idx, idx) { |
@@ -97,7 +105,9 @@ static void huge_pmd_share(struct mm_struct *mm, unsigned long addr, pud_t *pud) | |||
97 | put_page(virt_to_page(spte)); | 105 | put_page(virt_to_page(spte)); |
98 | spin_unlock(&mm->page_table_lock); | 106 | spin_unlock(&mm->page_table_lock); |
99 | out: | 107 | out: |
108 | pte = (pte_t *)pmd_alloc(mm, pud, addr); | ||
100 | mutex_unlock(&mapping->i_mmap_mutex); | 109 | mutex_unlock(&mapping->i_mmap_mutex); |
110 | return pte; | ||
101 | } | 111 | } |
102 | 112 | ||
103 | /* | 113 | /* |
@@ -142,8 +152,9 @@ pte_t *huge_pte_alloc(struct mm_struct *mm, | |||
142 | } else { | 152 | } else { |
143 | BUG_ON(sz != PMD_SIZE); | 153 | BUG_ON(sz != PMD_SIZE); |
144 | if (pud_none(*pud)) | 154 | if (pud_none(*pud)) |
145 | huge_pmd_share(mm, addr, pud); | 155 | pte = huge_pmd_share(mm, addr, pud); |
146 | pte = (pte_t *) pmd_alloc(mm, pud, addr); | 156 | else |
157 | pte = (pte_t *)pmd_alloc(mm, pud, addr); | ||
147 | } | 158 | } |
148 | } | 159 | } |
149 | BUG_ON(pte && !pte_none(*pte) && !pte_huge(*pte)); | 160 | BUG_ON(pte && !pte_none(*pte) && !pte_huge(*pte)); |
diff --git a/arch/x86/mm/pageattr.c b/arch/x86/mm/pageattr.c index 931930a96160..a718e0d23503 100644 --- a/arch/x86/mm/pageattr.c +++ b/arch/x86/mm/pageattr.c | |||
@@ -919,13 +919,11 @@ static int change_page_attr_set_clr(unsigned long *addr, int numpages, | |||
919 | 919 | ||
920 | /* | 920 | /* |
921 | * On success we use clflush, when the CPU supports it to | 921 | * On success we use clflush, when the CPU supports it to |
922 | * avoid the wbindv. If the CPU does not support it, in the | 922 | * avoid the wbindv. If the CPU does not support it and in the |
923 | * error case, and during early boot (for EFI) we fall back | 923 | * error case we fall back to cpa_flush_all (which uses |
924 | * to cpa_flush_all (which uses wbinvd): | 924 | * wbindv): |
925 | */ | 925 | */ |
926 | if (early_boot_irqs_disabled) | 926 | if (!ret && cpu_has_clflush) { |
927 | __cpa_flush_all((void *)(long)cache); | ||
928 | else if (!ret && cpu_has_clflush) { | ||
929 | if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) { | 927 | if (cpa.flags & (CPA_PAGES_ARRAY | CPA_ARRAY)) { |
930 | cpa_flush_array(addr, numpages, cache, | 928 | cpa_flush_array(addr, numpages, cache, |
931 | cpa.flags, pages); | 929 | cpa.flags, pages); |
diff --git a/arch/x86/mm/srat.c b/arch/x86/mm/srat.c index 4599c3e8bcb6..4ddf497ca65b 100644 --- a/arch/x86/mm/srat.c +++ b/arch/x86/mm/srat.c | |||
@@ -142,23 +142,23 @@ static inline int save_add_info(void) {return 0;} | |||
142 | #endif | 142 | #endif |
143 | 143 | ||
144 | /* Callback for parsing of the Proximity Domain <-> Memory Area mappings */ | 144 | /* Callback for parsing of the Proximity Domain <-> Memory Area mappings */ |
145 | void __init | 145 | int __init |
146 | acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma) | 146 | acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma) |
147 | { | 147 | { |
148 | u64 start, end; | 148 | u64 start, end; |
149 | int node, pxm; | 149 | int node, pxm; |
150 | 150 | ||
151 | if (srat_disabled()) | 151 | if (srat_disabled()) |
152 | return; | 152 | return -1; |
153 | if (ma->header.length != sizeof(struct acpi_srat_mem_affinity)) { | 153 | if (ma->header.length != sizeof(struct acpi_srat_mem_affinity)) { |
154 | bad_srat(); | 154 | bad_srat(); |
155 | return; | 155 | return -1; |
156 | } | 156 | } |
157 | if ((ma->flags & ACPI_SRAT_MEM_ENABLED) == 0) | 157 | if ((ma->flags & ACPI_SRAT_MEM_ENABLED) == 0) |
158 | return; | 158 | return -1; |
159 | 159 | ||
160 | if ((ma->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE) && !save_add_info()) | 160 | if ((ma->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE) && !save_add_info()) |
161 | return; | 161 | return -1; |
162 | start = ma->base_address; | 162 | start = ma->base_address; |
163 | end = start + ma->length; | 163 | end = start + ma->length; |
164 | pxm = ma->proximity_domain; | 164 | pxm = ma->proximity_domain; |
@@ -168,12 +168,12 @@ acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma) | |||
168 | if (node < 0) { | 168 | if (node < 0) { |
169 | printk(KERN_ERR "SRAT: Too many proximity domains.\n"); | 169 | printk(KERN_ERR "SRAT: Too many proximity domains.\n"); |
170 | bad_srat(); | 170 | bad_srat(); |
171 | return; | 171 | return -1; |
172 | } | 172 | } |
173 | 173 | ||
174 | if (numa_add_memblk(node, start, end) < 0) { | 174 | if (numa_add_memblk(node, start, end) < 0) { |
175 | bad_srat(); | 175 | bad_srat(); |
176 | return; | 176 | return -1; |
177 | } | 177 | } |
178 | 178 | ||
179 | node_set(node, numa_nodes_parsed); | 179 | node_set(node, numa_nodes_parsed); |
@@ -181,6 +181,7 @@ acpi_numa_memory_affinity_init(struct acpi_srat_mem_affinity *ma) | |||
181 | printk(KERN_INFO "SRAT: Node %u PXM %u [mem %#010Lx-%#010Lx]\n", | 181 | printk(KERN_INFO "SRAT: Node %u PXM %u [mem %#010Lx-%#010Lx]\n", |
182 | node, pxm, | 182 | node, pxm, |
183 | (unsigned long long) start, (unsigned long long) end - 1); | 183 | (unsigned long long) start, (unsigned long long) end - 1); |
184 | return 0; | ||
184 | } | 185 | } |
185 | 186 | ||
186 | void __init acpi_numa_arch_fixup(void) {} | 187 | void __init acpi_numa_arch_fixup(void) {} |
diff --git a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c index 2dc29f51e75a..92660edaa1e7 100644 --- a/arch/x86/platform/efi/efi.c +++ b/arch/x86/platform/efi/efi.c | |||
@@ -234,7 +234,22 @@ static efi_status_t __init phys_efi_set_virtual_address_map( | |||
234 | return status; | 234 | return status; |
235 | } | 235 | } |
236 | 236 | ||
237 | static int efi_set_rtc_mmss(unsigned long nowtime) | 237 | static efi_status_t __init phys_efi_get_time(efi_time_t *tm, |
238 | efi_time_cap_t *tc) | ||
239 | { | ||
240 | unsigned long flags; | ||
241 | efi_status_t status; | ||
242 | |||
243 | spin_lock_irqsave(&rtc_lock, flags); | ||
244 | efi_call_phys_prelog(); | ||
245 | status = efi_call_phys2(efi_phys.get_time, virt_to_phys(tm), | ||
246 | virt_to_phys(tc)); | ||
247 | efi_call_phys_epilog(); | ||
248 | spin_unlock_irqrestore(&rtc_lock, flags); | ||
249 | return status; | ||
250 | } | ||
251 | |||
252 | int efi_set_rtc_mmss(unsigned long nowtime) | ||
238 | { | 253 | { |
239 | int real_seconds, real_minutes; | 254 | int real_seconds, real_minutes; |
240 | efi_status_t status; | 255 | efi_status_t status; |
@@ -263,7 +278,7 @@ static int efi_set_rtc_mmss(unsigned long nowtime) | |||
263 | return 0; | 278 | return 0; |
264 | } | 279 | } |
265 | 280 | ||
266 | static unsigned long efi_get_time(void) | 281 | unsigned long efi_get_time(void) |
267 | { | 282 | { |
268 | efi_status_t status; | 283 | efi_status_t status; |
269 | efi_time_t eft; | 284 | efi_time_t eft; |
@@ -606,13 +621,18 @@ static int __init efi_runtime_init(void) | |||
606 | } | 621 | } |
607 | /* | 622 | /* |
608 | * We will only need *early* access to the following | 623 | * We will only need *early* access to the following |
609 | * EFI runtime service before set_virtual_address_map | 624 | * two EFI runtime services before set_virtual_address_map |
610 | * is invoked. | 625 | * is invoked. |
611 | */ | 626 | */ |
627 | efi_phys.get_time = (efi_get_time_t *)runtime->get_time; | ||
612 | efi_phys.set_virtual_address_map = | 628 | efi_phys.set_virtual_address_map = |
613 | (efi_set_virtual_address_map_t *) | 629 | (efi_set_virtual_address_map_t *) |
614 | runtime->set_virtual_address_map; | 630 | runtime->set_virtual_address_map; |
615 | 631 | /* | |
632 | * Make efi_get_time can be called before entering | ||
633 | * virtual mode. | ||
634 | */ | ||
635 | efi.get_time = phys_efi_get_time; | ||
616 | early_iounmap(runtime, sizeof(efi_runtime_services_t)); | 636 | early_iounmap(runtime, sizeof(efi_runtime_services_t)); |
617 | 637 | ||
618 | return 0; | 638 | return 0; |
@@ -700,10 +720,12 @@ void __init efi_init(void) | |||
700 | efi_enabled = 0; | 720 | efi_enabled = 0; |
701 | return; | 721 | return; |
702 | } | 722 | } |
723 | #ifdef CONFIG_X86_32 | ||
703 | if (efi_native) { | 724 | if (efi_native) { |
704 | x86_platform.get_wallclock = efi_get_time; | 725 | x86_platform.get_wallclock = efi_get_time; |
705 | x86_platform.set_wallclock = efi_set_rtc_mmss; | 726 | x86_platform.set_wallclock = efi_set_rtc_mmss; |
706 | } | 727 | } |
728 | #endif | ||
707 | 729 | ||
708 | #if EFI_DEBUG | 730 | #if EFI_DEBUG |
709 | print_efi_memmap(); | 731 | print_efi_memmap(); |
diff --git a/arch/x86/realmode/rm/Makefile b/arch/x86/realmode/rm/Makefile index b2d534cab25f..88692871823f 100644 --- a/arch/x86/realmode/rm/Makefile +++ b/arch/x86/realmode/rm/Makefile | |||
@@ -72,7 +72,7 @@ KBUILD_CFLAGS := $(LINUXINCLUDE) -m32 -g -Os -D_SETUP -D__KERNEL__ -D_WAKEUP \ | |||
72 | -Wall -Wstrict-prototypes \ | 72 | -Wall -Wstrict-prototypes \ |
73 | -march=i386 -mregparm=3 \ | 73 | -march=i386 -mregparm=3 \ |
74 | -include $(srctree)/$(src)/../../boot/code16gcc.h \ | 74 | -include $(srctree)/$(src)/../../boot/code16gcc.h \ |
75 | -fno-strict-aliasing -fomit-frame-pointer \ | 75 | -fno-strict-aliasing -fomit-frame-pointer -fno-pic \ |
76 | $(call cc-option, -ffreestanding) \ | 76 | $(call cc-option, -ffreestanding) \ |
77 | $(call cc-option, -fno-toplevel-reorder,\ | 77 | $(call cc-option, -fno-toplevel-reorder,\ |
78 | $(call cc-option, -fno-unit-at-a-time)) \ | 78 | $(call cc-option, -fno-unit-at-a-time)) \ |
diff --git a/arch/x86/syscalls/syscall_64.tbl b/arch/x86/syscalls/syscall_64.tbl index 51171aeff0dc..a582bfed95bb 100644 --- a/arch/x86/syscalls/syscall_64.tbl +++ b/arch/x86/syscalls/syscall_64.tbl | |||
@@ -60,8 +60,8 @@ | |||
60 | 51 common getsockname sys_getsockname | 60 | 51 common getsockname sys_getsockname |
61 | 52 common getpeername sys_getpeername | 61 | 52 common getpeername sys_getpeername |
62 | 53 common socketpair sys_socketpair | 62 | 53 common socketpair sys_socketpair |
63 | 54 common setsockopt sys_setsockopt | 63 | 54 64 setsockopt sys_setsockopt |
64 | 55 common getsockopt sys_getsockopt | 64 | 55 64 getsockopt sys_getsockopt |
65 | 56 common clone stub_clone | 65 | 56 common clone stub_clone |
66 | 57 common fork stub_fork | 66 | 57 common fork stub_fork |
67 | 58 common vfork stub_vfork | 67 | 58 common vfork stub_vfork |
@@ -318,7 +318,7 @@ | |||
318 | 309 common getcpu sys_getcpu | 318 | 309 common getcpu sys_getcpu |
319 | 310 64 process_vm_readv sys_process_vm_readv | 319 | 310 64 process_vm_readv sys_process_vm_readv |
320 | 311 64 process_vm_writev sys_process_vm_writev | 320 | 311 64 process_vm_writev sys_process_vm_writev |
321 | 312 64 kcmp sys_kcmp | 321 | 312 common kcmp sys_kcmp |
322 | 322 | ||
323 | # | 323 | # |
324 | # x32-specific system call numbers start at 512 to avoid cache impact | 324 | # x32-specific system call numbers start at 512 to avoid cache impact |
@@ -353,3 +353,5 @@ | |||
353 | 538 x32 sendmmsg compat_sys_sendmmsg | 353 | 538 x32 sendmmsg compat_sys_sendmmsg |
354 | 539 x32 process_vm_readv compat_sys_process_vm_readv | 354 | 539 x32 process_vm_readv compat_sys_process_vm_readv |
355 | 540 x32 process_vm_writev compat_sys_process_vm_writev | 355 | 540 x32 process_vm_writev compat_sys_process_vm_writev |
356 | 541 x32 setsockopt compat_sys_setsockopt | ||
357 | 542 x32 getsockopt compat_sys_getsockopt | ||
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c index bf4bda6d3e9a..9642d4a38602 100644 --- a/arch/x86/xen/enlighten.c +++ b/arch/x86/xen/enlighten.c | |||
@@ -31,7 +31,6 @@ | |||
31 | #include <linux/pci.h> | 31 | #include <linux/pci.h> |
32 | #include <linux/gfp.h> | 32 | #include <linux/gfp.h> |
33 | #include <linux/memblock.h> | 33 | #include <linux/memblock.h> |
34 | #include <linux/syscore_ops.h> | ||
35 | 34 | ||
36 | #include <xen/xen.h> | 35 | #include <xen/xen.h> |
37 | #include <xen/interface/xen.h> | 36 | #include <xen/interface/xen.h> |
@@ -1470,130 +1469,38 @@ asmlinkage void __init xen_start_kernel(void) | |||
1470 | #endif | 1469 | #endif |
1471 | } | 1470 | } |
1472 | 1471 | ||
1473 | #ifdef CONFIG_XEN_PVHVM | 1472 | void __ref xen_hvm_init_shared_info(void) |
1474 | /* | ||
1475 | * The pfn containing the shared_info is located somewhere in RAM. This | ||
1476 | * will cause trouble if the current kernel is doing a kexec boot into a | ||
1477 | * new kernel. The new kernel (and its startup code) can not know where | ||
1478 | * the pfn is, so it can not reserve the page. The hypervisor will | ||
1479 | * continue to update the pfn, and as a result memory corruption occours | ||
1480 | * in the new kernel. | ||
1481 | * | ||
1482 | * One way to work around this issue is to allocate a page in the | ||
1483 | * xen-platform pci device's BAR memory range. But pci init is done very | ||
1484 | * late and the shared_info page is already in use very early to read | ||
1485 | * the pvclock. So moving the pfn from RAM to MMIO is racy because some | ||
1486 | * code paths on other vcpus could access the pfn during the small | ||
1487 | * window when the old pfn is moved to the new pfn. There is even a | ||
1488 | * small window were the old pfn is not backed by a mfn, and during that | ||
1489 | * time all reads return -1. | ||
1490 | * | ||
1491 | * Because it is not known upfront where the MMIO region is located it | ||
1492 | * can not be used right from the start in xen_hvm_init_shared_info. | ||
1493 | * | ||
1494 | * To minimise trouble the move of the pfn is done shortly before kexec. | ||
1495 | * This does not eliminate the race because all vcpus are still online | ||
1496 | * when the syscore_ops will be called. But hopefully there is no work | ||
1497 | * pending at this point in time. Also the syscore_op is run last which | ||
1498 | * reduces the risk further. | ||
1499 | */ | ||
1500 | |||
1501 | static struct shared_info *xen_hvm_shared_info; | ||
1502 | |||
1503 | static void xen_hvm_connect_shared_info(unsigned long pfn) | ||
1504 | { | 1473 | { |
1474 | int cpu; | ||
1505 | struct xen_add_to_physmap xatp; | 1475 | struct xen_add_to_physmap xatp; |
1476 | static struct shared_info *shared_info_page = 0; | ||
1506 | 1477 | ||
1478 | if (!shared_info_page) | ||
1479 | shared_info_page = (struct shared_info *) | ||
1480 | extend_brk(PAGE_SIZE, PAGE_SIZE); | ||
1507 | xatp.domid = DOMID_SELF; | 1481 | xatp.domid = DOMID_SELF; |
1508 | xatp.idx = 0; | 1482 | xatp.idx = 0; |
1509 | xatp.space = XENMAPSPACE_shared_info; | 1483 | xatp.space = XENMAPSPACE_shared_info; |
1510 | xatp.gpfn = pfn; | 1484 | xatp.gpfn = __pa(shared_info_page) >> PAGE_SHIFT; |
1511 | if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp)) | 1485 | if (HYPERVISOR_memory_op(XENMEM_add_to_physmap, &xatp)) |
1512 | BUG(); | 1486 | BUG(); |
1513 | 1487 | ||
1514 | } | 1488 | HYPERVISOR_shared_info = (struct shared_info *)shared_info_page; |
1515 | static void xen_hvm_set_shared_info(struct shared_info *sip) | ||
1516 | { | ||
1517 | int cpu; | ||
1518 | |||
1519 | HYPERVISOR_shared_info = sip; | ||
1520 | 1489 | ||
1521 | /* xen_vcpu is a pointer to the vcpu_info struct in the shared_info | 1490 | /* xen_vcpu is a pointer to the vcpu_info struct in the shared_info |
1522 | * page, we use it in the event channel upcall and in some pvclock | 1491 | * page, we use it in the event channel upcall and in some pvclock |
1523 | * related functions. We don't need the vcpu_info placement | 1492 | * related functions. We don't need the vcpu_info placement |
1524 | * optimizations because we don't use any pv_mmu or pv_irq op on | 1493 | * optimizations because we don't use any pv_mmu or pv_irq op on |
1525 | * HVM. | 1494 | * HVM. |
1526 | * When xen_hvm_set_shared_info is run at boot time only vcpu 0 is | 1495 | * When xen_hvm_init_shared_info is run at boot time only vcpu 0 is |
1527 | * online but xen_hvm_set_shared_info is run at resume time too and | 1496 | * online but xen_hvm_init_shared_info is run at resume time too and |
1528 | * in that case multiple vcpus might be online. */ | 1497 | * in that case multiple vcpus might be online. */ |
1529 | for_each_online_cpu(cpu) { | 1498 | for_each_online_cpu(cpu) { |
1530 | per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu]; | 1499 | per_cpu(xen_vcpu, cpu) = &HYPERVISOR_shared_info->vcpu_info[cpu]; |
1531 | } | 1500 | } |
1532 | } | 1501 | } |
1533 | 1502 | ||
1534 | /* Reconnect the shared_info pfn to a mfn */ | 1503 | #ifdef CONFIG_XEN_PVHVM |
1535 | void xen_hvm_resume_shared_info(void) | ||
1536 | { | ||
1537 | xen_hvm_connect_shared_info(__pa(xen_hvm_shared_info) >> PAGE_SHIFT); | ||
1538 | } | ||
1539 | |||
1540 | #ifdef CONFIG_KEXEC | ||
1541 | static struct shared_info *xen_hvm_shared_info_kexec; | ||
1542 | static unsigned long xen_hvm_shared_info_pfn_kexec; | ||
1543 | |||
1544 | /* Remember a pfn in MMIO space for kexec reboot */ | ||
1545 | void __devinit xen_hvm_prepare_kexec(struct shared_info *sip, unsigned long pfn) | ||
1546 | { | ||
1547 | xen_hvm_shared_info_kexec = sip; | ||
1548 | xen_hvm_shared_info_pfn_kexec = pfn; | ||
1549 | } | ||
1550 | |||
1551 | static void xen_hvm_syscore_shutdown(void) | ||
1552 | { | ||
1553 | struct xen_memory_reservation reservation = { | ||
1554 | .domid = DOMID_SELF, | ||
1555 | .nr_extents = 1, | ||
1556 | }; | ||
1557 | unsigned long prev_pfn; | ||
1558 | int rc; | ||
1559 | |||
1560 | if (!xen_hvm_shared_info_kexec) | ||
1561 | return; | ||
1562 | |||
1563 | prev_pfn = __pa(xen_hvm_shared_info) >> PAGE_SHIFT; | ||
1564 | set_xen_guest_handle(reservation.extent_start, &prev_pfn); | ||
1565 | |||
1566 | /* Move pfn to MMIO, disconnects previous pfn from mfn */ | ||
1567 | xen_hvm_connect_shared_info(xen_hvm_shared_info_pfn_kexec); | ||
1568 | |||
1569 | /* Update pointers, following hypercall is also a memory barrier */ | ||
1570 | xen_hvm_set_shared_info(xen_hvm_shared_info_kexec); | ||
1571 | |||
1572 | /* Allocate new mfn for previous pfn */ | ||
1573 | do { | ||
1574 | rc = HYPERVISOR_memory_op(XENMEM_populate_physmap, &reservation); | ||
1575 | if (rc == 0) | ||
1576 | msleep(123); | ||
1577 | } while (rc == 0); | ||
1578 | |||
1579 | /* Make sure the previous pfn is really connected to a (new) mfn */ | ||
1580 | BUG_ON(rc != 1); | ||
1581 | } | ||
1582 | |||
1583 | static struct syscore_ops xen_hvm_syscore_ops = { | ||
1584 | .shutdown = xen_hvm_syscore_shutdown, | ||
1585 | }; | ||
1586 | #endif | ||
1587 | |||
1588 | /* Use a pfn in RAM, may move to MMIO before kexec. */ | ||
1589 | static void __init xen_hvm_init_shared_info(void) | ||
1590 | { | ||
1591 | /* Remember pointer for resume */ | ||
1592 | xen_hvm_shared_info = extend_brk(PAGE_SIZE, PAGE_SIZE); | ||
1593 | xen_hvm_connect_shared_info(__pa(xen_hvm_shared_info) >> PAGE_SHIFT); | ||
1594 | xen_hvm_set_shared_info(xen_hvm_shared_info); | ||
1595 | } | ||
1596 | |||
1597 | static void __init init_hvm_pv_info(void) | 1504 | static void __init init_hvm_pv_info(void) |
1598 | { | 1505 | { |
1599 | int major, minor; | 1506 | int major, minor; |
@@ -1644,9 +1551,6 @@ static void __init xen_hvm_guest_init(void) | |||
1644 | init_hvm_pv_info(); | 1551 | init_hvm_pv_info(); |
1645 | 1552 | ||
1646 | xen_hvm_init_shared_info(); | 1553 | xen_hvm_init_shared_info(); |
1647 | #ifdef CONFIG_KEXEC | ||
1648 | register_syscore_ops(&xen_hvm_syscore_ops); | ||
1649 | #endif | ||
1650 | 1554 | ||
1651 | if (xen_feature(XENFEAT_hvm_callback_vector)) | 1555 | if (xen_feature(XENFEAT_hvm_callback_vector)) |
1652 | xen_have_vector_callback = 1; | 1556 | xen_have_vector_callback = 1; |
diff --git a/arch/x86/xen/p2m.c b/arch/x86/xen/p2m.c index 64effdc6da94..d4b255463253 100644 --- a/arch/x86/xen/p2m.c +++ b/arch/x86/xen/p2m.c | |||
@@ -194,6 +194,13 @@ RESERVE_BRK(p2m_mid_mfn, PAGE_SIZE * (MAX_DOMAIN_PAGES / (P2M_PER_PAGE * P2M_MID | |||
194 | * boundary violation will require three middle nodes. */ | 194 | * boundary violation will require three middle nodes. */ |
195 | RESERVE_BRK(p2m_mid_identity, PAGE_SIZE * 2 * 3); | 195 | RESERVE_BRK(p2m_mid_identity, PAGE_SIZE * 2 * 3); |
196 | 196 | ||
197 | /* When we populate back during bootup, the amount of pages can vary. The | ||
198 | * max we have is seen is 395979, but that does not mean it can't be more. | ||
199 | * Some machines can have 3GB I/O holes even. With early_can_reuse_p2m_middle | ||
200 | * it can re-use Xen provided mfn_list array, so we only need to allocate at | ||
201 | * most three P2M top nodes. */ | ||
202 | RESERVE_BRK(p2m_populated, PAGE_SIZE * 3); | ||
203 | |||
197 | static inline unsigned p2m_top_index(unsigned long pfn) | 204 | static inline unsigned p2m_top_index(unsigned long pfn) |
198 | { | 205 | { |
199 | BUG_ON(pfn >= MAX_P2M_PFN); | 206 | BUG_ON(pfn >= MAX_P2M_PFN); |
@@ -570,12 +577,99 @@ static bool __init early_alloc_p2m(unsigned long pfn) | |||
570 | } | 577 | } |
571 | return true; | 578 | return true; |
572 | } | 579 | } |
580 | |||
581 | /* | ||
582 | * Skim over the P2M tree looking at pages that are either filled with | ||
583 | * INVALID_P2M_ENTRY or with 1:1 PFNs. If found, re-use that page and | ||
584 | * replace the P2M leaf with a p2m_missing or p2m_identity. | ||
585 | * Stick the old page in the new P2M tree location. | ||
586 | */ | ||
587 | bool __init early_can_reuse_p2m_middle(unsigned long set_pfn, unsigned long set_mfn) | ||
588 | { | ||
589 | unsigned topidx; | ||
590 | unsigned mididx; | ||
591 | unsigned ident_pfns; | ||
592 | unsigned inv_pfns; | ||
593 | unsigned long *p2m; | ||
594 | unsigned long *mid_mfn_p; | ||
595 | unsigned idx; | ||
596 | unsigned long pfn; | ||
597 | |||
598 | /* We only look when this entails a P2M middle layer */ | ||
599 | if (p2m_index(set_pfn)) | ||
600 | return false; | ||
601 | |||
602 | for (pfn = 0; pfn <= MAX_DOMAIN_PAGES; pfn += P2M_PER_PAGE) { | ||
603 | topidx = p2m_top_index(pfn); | ||
604 | |||
605 | if (!p2m_top[topidx]) | ||
606 | continue; | ||
607 | |||
608 | if (p2m_top[topidx] == p2m_mid_missing) | ||
609 | continue; | ||
610 | |||
611 | mididx = p2m_mid_index(pfn); | ||
612 | p2m = p2m_top[topidx][mididx]; | ||
613 | if (!p2m) | ||
614 | continue; | ||
615 | |||
616 | if ((p2m == p2m_missing) || (p2m == p2m_identity)) | ||
617 | continue; | ||
618 | |||
619 | if ((unsigned long)p2m == INVALID_P2M_ENTRY) | ||
620 | continue; | ||
621 | |||
622 | ident_pfns = 0; | ||
623 | inv_pfns = 0; | ||
624 | for (idx = 0; idx < P2M_PER_PAGE; idx++) { | ||
625 | /* IDENTITY_PFNs are 1:1 */ | ||
626 | if (p2m[idx] == IDENTITY_FRAME(pfn + idx)) | ||
627 | ident_pfns++; | ||
628 | else if (p2m[idx] == INVALID_P2M_ENTRY) | ||
629 | inv_pfns++; | ||
630 | else | ||
631 | break; | ||
632 | } | ||
633 | if ((ident_pfns == P2M_PER_PAGE) || (inv_pfns == P2M_PER_PAGE)) | ||
634 | goto found; | ||
635 | } | ||
636 | return false; | ||
637 | found: | ||
638 | /* Found one, replace old with p2m_identity or p2m_missing */ | ||
639 | p2m_top[topidx][mididx] = (ident_pfns ? p2m_identity : p2m_missing); | ||
640 | /* And the other for save/restore.. */ | ||
641 | mid_mfn_p = p2m_top_mfn_p[topidx]; | ||
642 | /* NOTE: Even if it is a p2m_identity it should still be point to | ||
643 | * a page filled with INVALID_P2M_ENTRY entries. */ | ||
644 | mid_mfn_p[mididx] = virt_to_mfn(p2m_missing); | ||
645 | |||
646 | /* Reset where we want to stick the old page in. */ | ||
647 | topidx = p2m_top_index(set_pfn); | ||
648 | mididx = p2m_mid_index(set_pfn); | ||
649 | |||
650 | /* This shouldn't happen */ | ||
651 | if (WARN_ON(p2m_top[topidx] == p2m_mid_missing)) | ||
652 | early_alloc_p2m(set_pfn); | ||
653 | |||
654 | if (WARN_ON(p2m_top[topidx][mididx] != p2m_missing)) | ||
655 | return false; | ||
656 | |||
657 | p2m_init(p2m); | ||
658 | p2m_top[topidx][mididx] = p2m; | ||
659 | mid_mfn_p = p2m_top_mfn_p[topidx]; | ||
660 | mid_mfn_p[mididx] = virt_to_mfn(p2m); | ||
661 | |||
662 | return true; | ||
663 | } | ||
573 | bool __init early_set_phys_to_machine(unsigned long pfn, unsigned long mfn) | 664 | bool __init early_set_phys_to_machine(unsigned long pfn, unsigned long mfn) |
574 | { | 665 | { |
575 | if (unlikely(!__set_phys_to_machine(pfn, mfn))) { | 666 | if (unlikely(!__set_phys_to_machine(pfn, mfn))) { |
576 | if (!early_alloc_p2m(pfn)) | 667 | if (!early_alloc_p2m(pfn)) |
577 | return false; | 668 | return false; |
578 | 669 | ||
670 | if (early_can_reuse_p2m_middle(pfn, mfn)) | ||
671 | return __set_phys_to_machine(pfn, mfn); | ||
672 | |||
579 | if (!early_alloc_p2m_middle(pfn, false /* boundary crossover OK!*/)) | 673 | if (!early_alloc_p2m_middle(pfn, false /* boundary crossover OK!*/)) |
580 | return false; | 674 | return false; |
581 | 675 | ||
diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c index ead85576d54a..d11ca11d14fc 100644 --- a/arch/x86/xen/setup.c +++ b/arch/x86/xen/setup.c | |||
@@ -78,9 +78,16 @@ static void __init xen_add_extra_mem(u64 start, u64 size) | |||
78 | memblock_reserve(start, size); | 78 | memblock_reserve(start, size); |
79 | 79 | ||
80 | xen_max_p2m_pfn = PFN_DOWN(start + size); | 80 | xen_max_p2m_pfn = PFN_DOWN(start + size); |
81 | for (pfn = PFN_DOWN(start); pfn < xen_max_p2m_pfn; pfn++) { | ||
82 | unsigned long mfn = pfn_to_mfn(pfn); | ||
83 | |||
84 | if (WARN(mfn == pfn, "Trying to over-write 1-1 mapping (pfn: %lx)\n", pfn)) | ||
85 | continue; | ||
86 | WARN(mfn != INVALID_P2M_ENTRY, "Trying to remove %lx which has %lx mfn!\n", | ||
87 | pfn, mfn); | ||
81 | 88 | ||
82 | for (pfn = PFN_DOWN(start); pfn <= xen_max_p2m_pfn; pfn++) | ||
83 | __set_phys_to_machine(pfn, INVALID_P2M_ENTRY); | 89 | __set_phys_to_machine(pfn, INVALID_P2M_ENTRY); |
90 | } | ||
84 | } | 91 | } |
85 | 92 | ||
86 | static unsigned long __init xen_do_chunk(unsigned long start, | 93 | static unsigned long __init xen_do_chunk(unsigned long start, |
diff --git a/arch/x86/xen/suspend.c b/arch/x86/xen/suspend.c index ae8a00c39de4..45329c8c226e 100644 --- a/arch/x86/xen/suspend.c +++ b/arch/x86/xen/suspend.c | |||
@@ -30,7 +30,7 @@ void xen_arch_hvm_post_suspend(int suspend_cancelled) | |||
30 | { | 30 | { |
31 | #ifdef CONFIG_XEN_PVHVM | 31 | #ifdef CONFIG_XEN_PVHVM |
32 | int cpu; | 32 | int cpu; |
33 | xen_hvm_resume_shared_info(); | 33 | xen_hvm_init_shared_info(); |
34 | xen_callback_vector(); | 34 | xen_callback_vector(); |
35 | xen_unplug_emulated_devices(); | 35 | xen_unplug_emulated_devices(); |
36 | if (xen_feature(XENFEAT_hvm_safe_pvclock)) { | 36 | if (xen_feature(XENFEAT_hvm_safe_pvclock)) { |
diff --git a/arch/x86/xen/xen-ops.h b/arch/x86/xen/xen-ops.h index 1e4329e04e0f..202d4c150154 100644 --- a/arch/x86/xen/xen-ops.h +++ b/arch/x86/xen/xen-ops.h | |||
@@ -41,7 +41,7 @@ void xen_enable_syscall(void); | |||
41 | void xen_vcpu_restore(void); | 41 | void xen_vcpu_restore(void); |
42 | 42 | ||
43 | void xen_callback_vector(void); | 43 | void xen_callback_vector(void); |
44 | void xen_hvm_resume_shared_info(void); | 44 | void xen_hvm_init_shared_info(void); |
45 | void xen_unplug_emulated_devices(void); | 45 | void xen_unplug_emulated_devices(void); |
46 | 46 | ||
47 | void __init xen_build_dynamic_phys_to_machine(void); | 47 | void __init xen_build_dynamic_phys_to_machine(void); |