diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-09-07 02:19:51 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-09-07 02:19:51 -0400 |
commit | a1922ed661ab2c1637d0b10cde933bd9cd33d965 (patch) | |
tree | 0f1777542b385ebefd30b3586d830fd8ed6fda5b /arch/mips/cavium-octeon/executive | |
parent | 75e33751ca8bbb72dd6f1a74d2810ddc8cbe4bdf (diff) | |
parent | d28daf923ac5e4a0d7cecebae56f3e339189366b (diff) |
Merge branch 'tracing/core' into tracing/hw-breakpoints
Conflicts:
arch/Kconfig
kernel/trace/trace.h
Merge reason: resolve the conflicts, plus adopt to the new
ring-buffer APIs.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/mips/cavium-octeon/executive')
-rw-r--r-- | arch/mips/cavium-octeon/executive/Makefile | 1 | ||||
-rw-r--r-- | arch/mips/cavium-octeon/executive/cvmx-bootmem.c | 104 | ||||
-rw-r--r-- | arch/mips/cavium-octeon/executive/cvmx-helper-errata.c | 73 | ||||
-rw-r--r-- | arch/mips/cavium-octeon/executive/cvmx-helper-jtag.c | 144 | ||||
-rw-r--r-- | arch/mips/cavium-octeon/executive/cvmx-sysinfo.c | 2 |
5 files changed, 324 insertions, 0 deletions
diff --git a/arch/mips/cavium-octeon/executive/Makefile b/arch/mips/cavium-octeon/executive/Makefile index 80d6cb26766b..2fd66db6939e 100644 --- a/arch/mips/cavium-octeon/executive/Makefile +++ b/arch/mips/cavium-octeon/executive/Makefile | |||
@@ -11,3 +11,4 @@ | |||
11 | 11 | ||
12 | obj-y += cvmx-bootmem.o cvmx-l2c.o cvmx-sysinfo.o octeon-model.o | 12 | obj-y += cvmx-bootmem.o cvmx-l2c.o cvmx-sysinfo.o octeon-model.o |
13 | 13 | ||
14 | obj-$(CONFIG_PCI) += cvmx-helper-errata.o cvmx-helper-jtag.o | ||
diff --git a/arch/mips/cavium-octeon/executive/cvmx-bootmem.c b/arch/mips/cavium-octeon/executive/cvmx-bootmem.c index 4f5a08b37ccd..25666da17b22 100644 --- a/arch/mips/cavium-octeon/executive/cvmx-bootmem.c +++ b/arch/mips/cavium-octeon/executive/cvmx-bootmem.c | |||
@@ -31,6 +31,7 @@ | |||
31 | */ | 31 | */ |
32 | 32 | ||
33 | #include <linux/kernel.h> | 33 | #include <linux/kernel.h> |
34 | #include <linux/module.h> | ||
34 | 35 | ||
35 | #include <asm/octeon/cvmx.h> | 36 | #include <asm/octeon/cvmx.h> |
36 | #include <asm/octeon/cvmx-spinlock.h> | 37 | #include <asm/octeon/cvmx-spinlock.h> |
@@ -97,6 +98,33 @@ void *cvmx_bootmem_alloc(uint64_t size, uint64_t alignment) | |||
97 | return cvmx_bootmem_alloc_range(size, alignment, 0, 0); | 98 | return cvmx_bootmem_alloc_range(size, alignment, 0, 0); |
98 | } | 99 | } |
99 | 100 | ||
101 | void *cvmx_bootmem_alloc_named_range(uint64_t size, uint64_t min_addr, | ||
102 | uint64_t max_addr, uint64_t align, | ||
103 | char *name) | ||
104 | { | ||
105 | int64_t addr; | ||
106 | |||
107 | addr = cvmx_bootmem_phy_named_block_alloc(size, min_addr, max_addr, | ||
108 | align, name, 0); | ||
109 | if (addr >= 0) | ||
110 | return cvmx_phys_to_ptr(addr); | ||
111 | else | ||
112 | return NULL; | ||
113 | } | ||
114 | |||
115 | void *cvmx_bootmem_alloc_named_address(uint64_t size, uint64_t address, | ||
116 | char *name) | ||
117 | { | ||
118 | return cvmx_bootmem_alloc_named_range(size, address, address + size, | ||
119 | 0, name); | ||
120 | } | ||
121 | |||
122 | void *cvmx_bootmem_alloc_named(uint64_t size, uint64_t alignment, char *name) | ||
123 | { | ||
124 | return cvmx_bootmem_alloc_named_range(size, 0, 0, alignment, name); | ||
125 | } | ||
126 | EXPORT_SYMBOL(cvmx_bootmem_alloc_named); | ||
127 | |||
100 | int cvmx_bootmem_free_named(char *name) | 128 | int cvmx_bootmem_free_named(char *name) |
101 | { | 129 | { |
102 | return cvmx_bootmem_phy_named_block_free(name, 0); | 130 | return cvmx_bootmem_phy_named_block_free(name, 0); |
@@ -106,6 +134,7 @@ struct cvmx_bootmem_named_block_desc *cvmx_bootmem_find_named_block(char *name) | |||
106 | { | 134 | { |
107 | return cvmx_bootmem_phy_named_block_find(name, 0); | 135 | return cvmx_bootmem_phy_named_block_find(name, 0); |
108 | } | 136 | } |
137 | EXPORT_SYMBOL(cvmx_bootmem_find_named_block); | ||
109 | 138 | ||
110 | void cvmx_bootmem_lock(void) | 139 | void cvmx_bootmem_lock(void) |
111 | { | 140 | { |
@@ -584,3 +613,78 @@ int cvmx_bootmem_phy_named_block_free(char *name, uint32_t flags) | |||
584 | cvmx_bootmem_unlock(); | 613 | cvmx_bootmem_unlock(); |
585 | return named_block_ptr != NULL; /* 0 on failure, 1 on success */ | 614 | return named_block_ptr != NULL; /* 0 on failure, 1 on success */ |
586 | } | 615 | } |
616 | |||
617 | int64_t cvmx_bootmem_phy_named_block_alloc(uint64_t size, uint64_t min_addr, | ||
618 | uint64_t max_addr, | ||
619 | uint64_t alignment, | ||
620 | char *name, | ||
621 | uint32_t flags) | ||
622 | { | ||
623 | int64_t addr_allocated; | ||
624 | struct cvmx_bootmem_named_block_desc *named_block_desc_ptr; | ||
625 | |||
626 | #ifdef DEBUG | ||
627 | cvmx_dprintf("cvmx_bootmem_phy_named_block_alloc: size: 0x%llx, min: " | ||
628 | "0x%llx, max: 0x%llx, align: 0x%llx, name: %s\n", | ||
629 | (unsigned long long)size, | ||
630 | (unsigned long long)min_addr, | ||
631 | (unsigned long long)max_addr, | ||
632 | (unsigned long long)alignment, | ||
633 | name); | ||
634 | #endif | ||
635 | if (cvmx_bootmem_desc->major_version != 3) { | ||
636 | cvmx_dprintf("ERROR: Incompatible bootmem descriptor version: " | ||
637 | "%d.%d at addr: %p\n", | ||
638 | (int)cvmx_bootmem_desc->major_version, | ||
639 | (int)cvmx_bootmem_desc->minor_version, | ||
640 | cvmx_bootmem_desc); | ||
641 | return -1; | ||
642 | } | ||
643 | |||
644 | /* | ||
645 | * Take lock here, as name lookup/block alloc/name add need to | ||
646 | * be atomic. | ||
647 | */ | ||
648 | if (!(flags & CVMX_BOOTMEM_FLAG_NO_LOCKING)) | ||
649 | cvmx_spinlock_lock((cvmx_spinlock_t *)&(cvmx_bootmem_desc->lock)); | ||
650 | |||
651 | /* Get pointer to first available named block descriptor */ | ||
652 | named_block_desc_ptr = | ||
653 | cvmx_bootmem_phy_named_block_find(NULL, | ||
654 | flags | CVMX_BOOTMEM_FLAG_NO_LOCKING); | ||
655 | |||
656 | /* | ||
657 | * Check to see if name already in use, return error if name | ||
658 | * not available or no more room for blocks. | ||
659 | */ | ||
660 | if (cvmx_bootmem_phy_named_block_find(name, | ||
661 | flags | CVMX_BOOTMEM_FLAG_NO_LOCKING) || !named_block_desc_ptr) { | ||
662 | if (!(flags & CVMX_BOOTMEM_FLAG_NO_LOCKING)) | ||
663 | cvmx_spinlock_unlock((cvmx_spinlock_t *)&(cvmx_bootmem_desc->lock)); | ||
664 | return -1; | ||
665 | } | ||
666 | |||
667 | |||
668 | /* | ||
669 | * Round size up to mult of minimum alignment bytes We need | ||
670 | * the actual size allocated to allow for blocks to be | ||
671 | * coallesced when they are freed. The alloc routine does the | ||
672 | * same rounding up on all allocations. | ||
673 | */ | ||
674 | size = __ALIGN_MASK(size, (CVMX_BOOTMEM_ALIGNMENT_SIZE - 1)); | ||
675 | |||
676 | addr_allocated = cvmx_bootmem_phy_alloc(size, min_addr, max_addr, | ||
677 | alignment, | ||
678 | flags | CVMX_BOOTMEM_FLAG_NO_LOCKING); | ||
679 | if (addr_allocated >= 0) { | ||
680 | named_block_desc_ptr->base_addr = addr_allocated; | ||
681 | named_block_desc_ptr->size = size; | ||
682 | strncpy(named_block_desc_ptr->name, name, | ||
683 | cvmx_bootmem_desc->named_block_name_len); | ||
684 | named_block_desc_ptr->name[cvmx_bootmem_desc->named_block_name_len - 1] = 0; | ||
685 | } | ||
686 | |||
687 | if (!(flags & CVMX_BOOTMEM_FLAG_NO_LOCKING)) | ||
688 | cvmx_spinlock_unlock((cvmx_spinlock_t *)&(cvmx_bootmem_desc->lock)); | ||
689 | return addr_allocated; | ||
690 | } | ||
diff --git a/arch/mips/cavium-octeon/executive/cvmx-helper-errata.c b/arch/mips/cavium-octeon/executive/cvmx-helper-errata.c new file mode 100644 index 000000000000..868659e64d4a --- /dev/null +++ b/arch/mips/cavium-octeon/executive/cvmx-helper-errata.c | |||
@@ -0,0 +1,73 @@ | |||
1 | /***********************license start*************** | ||
2 | * Author: Cavium Networks | ||
3 | * | ||
4 | * Contact: support@caviumnetworks.com | ||
5 | * This file is part of the OCTEON SDK | ||
6 | * | ||
7 | * Copyright (c) 2003-2008 Cavium Networks | ||
8 | * | ||
9 | * This file is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License, Version 2, as | ||
11 | * published by the Free Software Foundation. | ||
12 | * | ||
13 | * This file is distributed in the hope that it will be useful, but | ||
14 | * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty | ||
15 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or | ||
16 | * NONINFRINGEMENT. See the GNU General Public License for more | ||
17 | * details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with this file; if not, write to the Free Software | ||
21 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
22 | * or visit http://www.gnu.org/licenses/. | ||
23 | * | ||
24 | * This file may also be available under a different license from Cavium. | ||
25 | * Contact Cavium Networks for more information | ||
26 | ***********************license end**************************************/ | ||
27 | |||
28 | /** | ||
29 | * | ||
30 | * Fixes and workaround for Octeon chip errata. This file | ||
31 | * contains functions called by cvmx-helper to workaround known | ||
32 | * chip errata. For the most part, code doesn't need to call | ||
33 | * these functions directly. | ||
34 | * | ||
35 | */ | ||
36 | #include <linux/module.h> | ||
37 | |||
38 | #include <asm/octeon/octeon.h> | ||
39 | |||
40 | #include <asm/octeon/cvmx-helper-jtag.h> | ||
41 | |||
42 | /** | ||
43 | * Due to errata G-720, the 2nd order CDR circuit on CN52XX pass | ||
44 | * 1 doesn't work properly. The following code disables 2nd order | ||
45 | * CDR for the specified QLM. | ||
46 | * | ||
47 | * @qlm: QLM to disable 2nd order CDR for. | ||
48 | */ | ||
49 | void __cvmx_helper_errata_qlm_disable_2nd_order_cdr(int qlm) | ||
50 | { | ||
51 | int lane; | ||
52 | cvmx_helper_qlm_jtag_init(); | ||
53 | /* We need to load all four lanes of the QLM, a total of 1072 bits */ | ||
54 | for (lane = 0; lane < 4; lane++) { | ||
55 | /* | ||
56 | * Each lane has 268 bits. We need to set | ||
57 | * cfg_cdr_incx<67:64> = 3 and cfg_cdr_secord<77> = | ||
58 | * 1. All other bits are zero. Bits go in LSB first, | ||
59 | * so start off with the zeros for bits <63:0>. | ||
60 | */ | ||
61 | cvmx_helper_qlm_jtag_shift_zeros(qlm, 63 - 0 + 1); | ||
62 | /* cfg_cdr_incx<67:64>=3 */ | ||
63 | cvmx_helper_qlm_jtag_shift(qlm, 67 - 64 + 1, 3); | ||
64 | /* Zeros for bits <76:68> */ | ||
65 | cvmx_helper_qlm_jtag_shift_zeros(qlm, 76 - 68 + 1); | ||
66 | /* cfg_cdr_secord<77>=1 */ | ||
67 | cvmx_helper_qlm_jtag_shift(qlm, 77 - 77 + 1, 1); | ||
68 | /* Zeros for bits <267:78> */ | ||
69 | cvmx_helper_qlm_jtag_shift_zeros(qlm, 267 - 78 + 1); | ||
70 | } | ||
71 | cvmx_helper_qlm_jtag_update(qlm); | ||
72 | } | ||
73 | EXPORT_SYMBOL(__cvmx_helper_errata_qlm_disable_2nd_order_cdr); | ||
diff --git a/arch/mips/cavium-octeon/executive/cvmx-helper-jtag.c b/arch/mips/cavium-octeon/executive/cvmx-helper-jtag.c new file mode 100644 index 000000000000..c1c54890bae0 --- /dev/null +++ b/arch/mips/cavium-octeon/executive/cvmx-helper-jtag.c | |||
@@ -0,0 +1,144 @@ | |||
1 | |||
2 | /***********************license start*************** | ||
3 | * Author: Cavium Networks | ||
4 | * | ||
5 | * Contact: support@caviumnetworks.com | ||
6 | * This file is part of the OCTEON SDK | ||
7 | * | ||
8 | * Copyright (c) 2003-2008 Cavium Networks | ||
9 | * | ||
10 | * This file is free software; you can redistribute it and/or modify | ||
11 | * it under the terms of the GNU General Public License, Version 2, as | ||
12 | * published by the Free Software Foundation. | ||
13 | * | ||
14 | * This file is distributed in the hope that it will be useful, but | ||
15 | * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty | ||
16 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or | ||
17 | * NONINFRINGEMENT. See the GNU General Public License for more | ||
18 | * details. | ||
19 | * | ||
20 | * You should have received a copy of the GNU General Public License | ||
21 | * along with this file; if not, write to the Free Software | ||
22 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
23 | * or visit http://www.gnu.org/licenses/. | ||
24 | * | ||
25 | * This file may also be available under a different license from Cavium. | ||
26 | * Contact Cavium Networks for more information | ||
27 | ***********************license end**************************************/ | ||
28 | |||
29 | /** | ||
30 | * | ||
31 | * Helper utilities for qlm_jtag. | ||
32 | * | ||
33 | */ | ||
34 | |||
35 | #include <asm/octeon/octeon.h> | ||
36 | #include <asm/octeon/cvmx-helper-jtag.h> | ||
37 | |||
38 | |||
39 | /** | ||
40 | * Initialize the internal QLM JTAG logic to allow programming | ||
41 | * of the JTAG chain by the cvmx_helper_qlm_jtag_*() functions. | ||
42 | * These functions should only be used at the direction of Cavium | ||
43 | * Networks. Programming incorrect values into the JTAG chain | ||
44 | * can cause chip damage. | ||
45 | */ | ||
46 | void cvmx_helper_qlm_jtag_init(void) | ||
47 | { | ||
48 | union cvmx_ciu_qlm_jtgc jtgc; | ||
49 | uint32_t clock_div = 0; | ||
50 | uint32_t divisor = cvmx_sysinfo_get()->cpu_clock_hz / (25 * 1000000); | ||
51 | divisor = (divisor - 1) >> 2; | ||
52 | /* Convert the divisor into a power of 2 shift */ | ||
53 | while (divisor) { | ||
54 | clock_div++; | ||
55 | divisor = divisor >> 1; | ||
56 | } | ||
57 | |||
58 | /* | ||
59 | * Clock divider for QLM JTAG operations. eclk is divided by | ||
60 | * 2^(CLK_DIV + 2) | ||
61 | */ | ||
62 | jtgc.u64 = 0; | ||
63 | jtgc.s.clk_div = clock_div; | ||
64 | jtgc.s.mux_sel = 0; | ||
65 | if (OCTEON_IS_MODEL(OCTEON_CN52XX)) | ||
66 | jtgc.s.bypass = 0x3; | ||
67 | else | ||
68 | jtgc.s.bypass = 0xf; | ||
69 | cvmx_write_csr(CVMX_CIU_QLM_JTGC, jtgc.u64); | ||
70 | cvmx_read_csr(CVMX_CIU_QLM_JTGC); | ||
71 | } | ||
72 | |||
73 | /** | ||
74 | * Write up to 32bits into the QLM jtag chain. Bits are shifted | ||
75 | * into the MSB and out the LSB, so you should shift in the low | ||
76 | * order bits followed by the high order bits. The JTAG chain is | ||
77 | * 4 * 268 bits long, or 1072. | ||
78 | * | ||
79 | * @qlm: QLM to shift value into | ||
80 | * @bits: Number of bits to shift in (1-32). | ||
81 | * @data: Data to shift in. Bit 0 enters the chain first, followed by | ||
82 | * bit 1, etc. | ||
83 | * | ||
84 | * Returns The low order bits of the JTAG chain that shifted out of the | ||
85 | * circle. | ||
86 | */ | ||
87 | uint32_t cvmx_helper_qlm_jtag_shift(int qlm, int bits, uint32_t data) | ||
88 | { | ||
89 | union cvmx_ciu_qlm_jtgd jtgd; | ||
90 | jtgd.u64 = 0; | ||
91 | jtgd.s.shift = 1; | ||
92 | jtgd.s.shft_cnt = bits - 1; | ||
93 | jtgd.s.shft_reg = data; | ||
94 | if (!OCTEON_IS_MODEL(OCTEON_CN56XX_PASS1_X)) | ||
95 | jtgd.s.select = 1 << qlm; | ||
96 | cvmx_write_csr(CVMX_CIU_QLM_JTGD, jtgd.u64); | ||
97 | do { | ||
98 | jtgd.u64 = cvmx_read_csr(CVMX_CIU_QLM_JTGD); | ||
99 | } while (jtgd.s.shift); | ||
100 | return jtgd.s.shft_reg >> (32 - bits); | ||
101 | } | ||
102 | |||
103 | /** | ||
104 | * Shift long sequences of zeros into the QLM JTAG chain. It is | ||
105 | * common to need to shift more than 32 bits of zeros into the | ||
106 | * chain. This function is a convience wrapper around | ||
107 | * cvmx_helper_qlm_jtag_shift() to shift more than 32 bits of | ||
108 | * zeros at a time. | ||
109 | * | ||
110 | * @qlm: QLM to shift zeros into | ||
111 | * @bits: | ||
112 | */ | ||
113 | void cvmx_helper_qlm_jtag_shift_zeros(int qlm, int bits) | ||
114 | { | ||
115 | while (bits > 0) { | ||
116 | int n = bits; | ||
117 | if (n > 32) | ||
118 | n = 32; | ||
119 | cvmx_helper_qlm_jtag_shift(qlm, n, 0); | ||
120 | bits -= n; | ||
121 | } | ||
122 | } | ||
123 | |||
124 | /** | ||
125 | * Program the QLM JTAG chain into all lanes of the QLM. You must | ||
126 | * have already shifted in 268*4, or 1072 bits into the JTAG | ||
127 | * chain. Updating invalid values can possibly cause chip damage. | ||
128 | * | ||
129 | * @qlm: QLM to program | ||
130 | */ | ||
131 | void cvmx_helper_qlm_jtag_update(int qlm) | ||
132 | { | ||
133 | union cvmx_ciu_qlm_jtgd jtgd; | ||
134 | |||
135 | /* Update the new data */ | ||
136 | jtgd.u64 = 0; | ||
137 | jtgd.s.update = 1; | ||
138 | if (!OCTEON_IS_MODEL(OCTEON_CN56XX_PASS1_X)) | ||
139 | jtgd.s.select = 1 << qlm; | ||
140 | cvmx_write_csr(CVMX_CIU_QLM_JTGD, jtgd.u64); | ||
141 | do { | ||
142 | jtgd.u64 = cvmx_read_csr(CVMX_CIU_QLM_JTGD); | ||
143 | } while (jtgd.s.update); | ||
144 | } | ||
diff --git a/arch/mips/cavium-octeon/executive/cvmx-sysinfo.c b/arch/mips/cavium-octeon/executive/cvmx-sysinfo.c index 4812370706a1..e5838890cba5 100644 --- a/arch/mips/cavium-octeon/executive/cvmx-sysinfo.c +++ b/arch/mips/cavium-octeon/executive/cvmx-sysinfo.c | |||
@@ -29,6 +29,7 @@ | |||
29 | * This module provides system/board/application information obtained | 29 | * This module provides system/board/application information obtained |
30 | * by the bootloader. | 30 | * by the bootloader. |
31 | */ | 31 | */ |
32 | #include <linux/module.h> | ||
32 | 33 | ||
33 | #include <asm/octeon/cvmx.h> | 34 | #include <asm/octeon/cvmx.h> |
34 | #include <asm/octeon/cvmx-spinlock.h> | 35 | #include <asm/octeon/cvmx-spinlock.h> |
@@ -69,6 +70,7 @@ struct cvmx_sysinfo *cvmx_sysinfo_get(void) | |||
69 | { | 70 | { |
70 | return &(state.sysinfo); | 71 | return &(state.sysinfo); |
71 | } | 72 | } |
73 | EXPORT_SYMBOL(cvmx_sysinfo_get); | ||
72 | 74 | ||
73 | /** | 75 | /** |
74 | * This function is used in non-simple executive environments (such as | 76 | * This function is used in non-simple executive environments (such as |