carl9170: Update based on commit 370b7919114a02149088c482c8709cafb9bf7478 dated May...
[linux-libre-firmware.git] / isci / create_fw.h
1 /*
2  * This file is provided under a dual BSD/GPLv2 license.  When using or
3  * redistributing this file, you may do so under either license.
4  *
5  * GPL LICENSE SUMMARY
6  *
7  * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of version 2 of the GNU General Public License as
11  * published by the Free Software Foundation.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21  * The full GNU General Public License is included in this distribution
22  * in the file called LICENSE.GPL.
23  *
24  * BSD LICENSE
25  *
26  * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
27  * All rights reserved.
28  *
29  * Redistribution and use in source and binary forms, with or without
30  * modification, are permitted provided that the following conditions
31  * are met:
32  *
33  *   * Redistributions of source code must retain the above copyright
34  *     notice, this list of conditions and the following disclaimer.
35  *   * Redistributions in binary form must reproduce the above copyright
36  *     notice, this list of conditions and the following disclaimer in
37  *     the documentation and/or other materials provided with the
38  *     distribution.
39  *   * Neither the name of Intel Corporation nor the names of its
40  *     contributors may be used to endorse or promote products derived
41  *     from this software without specific prior written permission.
42  *
43  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
44  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
45  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
46  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
47  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
48  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
49  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54  */
55
56 #ifndef _CREATE_FW_H_
57 #define _CREATE_FW_H_
58 #include "probe_roms.h"
59
60
61 /* we are configuring for 2 SCUs */
62 static const int num_elements = 2;
63
64 /*
65  * For all defined arrays:
66  * elements 0-3 are for SCU0, ports 0-3
67  * elements 4-7 are for SCU1, ports 0-3
68  *
69  * valid configurations for one SCU are:
70  *  P0  P1  P2  P3
71  * ----------------
72  * 0xF,0x0,0x0,0x0 # 1 x4 port
73  * 0x3,0x0,0x4,0x8 # Phys 0 and 1 are a x2 port, phy 2 and phy 3 are each x1
74  *                 # ports
75  * 0x1,0x2,0xC,0x0 # Phys 0 and 1 are each x1 ports, phy 2 and phy 3 are a x2
76  *                 # port
77  * 0x3,0x0,0xC,0x0 # Phys 0 and 1 are a x2 port, phy 2 and phy 3 are a x2 port
78  * 0x1,0x2,0x4,0x8 # Each phy is a x1 port (this is the default configuration)
79  *
80  * if there is a port/phy on which you do not wish to override the default
81  * values, use the value assigned to UNINIT_PARAM (255).
82  */
83
84 /* discovery mode type (port auto config mode by default ) */
85
86 /*
87  * if there is a port/phy on which you do not wish to override the default
88  * values, use the value "0000000000000000". SAS address of zero's is
89  * considered invalid and will not be used.
90  */
91 #ifdef MPC
92 static const int mode_type = SCIC_PORT_MANUAL_CONFIGURATION_MODE;
93 static const __u8 phy_mask[2][4] = { {1, 2, 4, 8},
94                                      {1, 2, 4, 8} };
95 static const unsigned long long sas_addr[2][4] = { { 0x5FCFFFFFF0000001ULL,
96                                                      0x5FCFFFFFF0000002ULL,
97                                                      0x5FCFFFFFF0000003ULL,
98                                                      0x5FCFFFFFF0000004ULL },
99                                                    { 0x5FCFFFFFF0000005ULL,
100                                                      0x5FCFFFFFF0000006ULL,
101                                                      0x5FCFFFFFF0000007ULL,
102                                                      0x5FCFFFFFF0000008ULL } };
103 #else   /* APC (default) */
104 static const int mode_type = SCIC_PORT_AUTOMATIC_CONFIGURATION_MODE;
105 static const __u8 phy_mask[2][4];
106 static const unsigned long long sas_addr[2][4] = { { 0x5FCFFFFF00000001ULL,
107                                                      0x5FCFFFFF00000001ULL,
108                                                      0x5FCFFFFF00000001ULL,
109                                                      0x5FCFFFFF00000001ULL },
110                                                    { 0x5FCFFFFF00000002ULL,
111                                                      0x5FCFFFFF00000002ULL,
112                                                      0x5FCFFFFF00000002ULL,
113                                                      0x5FCFFFFF00000002ULL } };
114 #endif
115
116 static const int cable_selection[2][4];
117
118 /* Maximum number of concurrent device spin up */
119 static const int max_num_concurrent_dev_spin_up = 1;
120
121 /* enable of ssc operation */
122 /*
123  * NOTE: also see probe_roms.h. This value can be set for ssc values.
124  * Values can be set for:
125  * ssc_sata_tx_spread_level
126  * ssc_sas_tx_spread_level
127  * ssc_sas_tx_type
128  */
129 static const __u8 enable_ssc;
130
131 /* AFE_TX_AMP_CONTROL */
132 static const unsigned int afe_tx_amp_control0 = 0x000bdd08;
133 static const unsigned int afe_tx_amp_control1 = 0x000ffc00;
134 static const unsigned int afe_tx_amp_control2 = 0x000b7c09;
135 static const unsigned int afe_tx_amp_control3 = 0x000afc6e;
136
137 static const char blob_name[] = "isci_firmware.bin";
138 static const char sig[] = "ISCUOEMB";
139 static const unsigned char version = ISCI_ROM_VER_LATEST;
140
141 #endif