Blame view

kernel/linux-rt-4.4.41/arch/mips/cavium-octeon/executive/cvmx-helper-errata.c 2.53 KB
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
  /***********************license start***************
   * Author: Cavium Networks
   *
   * Contact: support@caviumnetworks.com
   * This file is part of the OCTEON SDK
   *
   * Copyright (c) 2003-2008 Cavium Networks
   *
   * This file is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License, Version 2, as
   * published by the Free Software Foundation.
   *
   * This file is distributed in the hope that it will be useful, but
   * AS-IS and WITHOUT ANY WARRANTY; without even the implied warranty
   * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, TITLE, or
   * NONINFRINGEMENT.  See the GNU General Public License for more
   * details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this file; if not, write to the Free Software
   * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
   * or visit http://www.gnu.org/licenses/.
   *
   * This file may also be available under a different license from Cavium.
   * Contact Cavium Networks for more information
   ***********************license end**************************************/
  
  /**
   *
   * Fixes and workaround for Octeon chip errata. This file
   * contains functions called by cvmx-helper to workaround known
   * chip errata. For the most part, code doesn't need to call
   * these functions directly.
   *
   */
  #include <linux/module.h>
  
  #include <asm/octeon/octeon.h>
  
  #include <asm/octeon/cvmx-helper-jtag.h>
  
  /**
   * Due to errata G-720, the 2nd order CDR circuit on CN52XX pass
   * 1 doesn't work properly. The following code disables 2nd order
   * CDR for the specified QLM.
   *
   * @qlm:    QLM to disable 2nd order CDR for.
   */
  void __cvmx_helper_errata_qlm_disable_2nd_order_cdr(int qlm)
  {
  	int lane;
  	cvmx_helper_qlm_jtag_init();
  	/* We need to load all four lanes of the QLM, a total of 1072 bits */
  	for (lane = 0; lane < 4; lane++) {
  		/*
  		 * Each lane has 268 bits. We need to set
  		 * cfg_cdr_incx<67:64> = 3 and cfg_cdr_secord<77> =
  		 * 1. All other bits are zero. Bits go in LSB first,
  		 * so start off with the zeros for bits <63:0>.
  		 */
  		cvmx_helper_qlm_jtag_shift_zeros(qlm, 63 - 0 + 1);
  		/* cfg_cdr_incx<67:64>=3 */
  		cvmx_helper_qlm_jtag_shift(qlm, 67 - 64 + 1, 3);
  		/* Zeros for bits <76:68> */
  		cvmx_helper_qlm_jtag_shift_zeros(qlm, 76 - 68 + 1);
  		/* cfg_cdr_secord<77>=1 */
  		cvmx_helper_qlm_jtag_shift(qlm, 77 - 77 + 1, 1);
  		/* Zeros for bits <267:78> */
  		cvmx_helper_qlm_jtag_shift_zeros(qlm, 267 - 78 + 1);
  	}
  	cvmx_helper_qlm_jtag_update(qlm);
  }
  EXPORT_SYMBOL(__cvmx_helper_errata_qlm_disable_2nd_order_cdr);