Merge pull request #139 from olerem/gcc-7
[open-ath9k-htc-firmware.git] / target_firmware / magpie_fw_dev / target / init / app_start.c
1 /*
2  * Copyright (c) 2013 Qualcomm Atheros, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted (subject to the limitations in the
7  * disclaimer below) provided that the following conditions are met:
8  *
9  *  * Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  *  * Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the
15  *    distribution.
16  *
17  *  * Neither the name of Qualcomm Atheros nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific prior written permission.
20  *
21  * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
22  * GRANTED BY THIS LICENSE.  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
23  * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
24  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
27  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
30  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
31  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
32  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
33  * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34  */
35
36 #include <wlan_pci.h>
37 #include <Magpie_api.h>
38 #include <rom.h>
39
40 #include "dt_defs.h"
41 #include "athos_api.h"
42
43 #include "regdump.h"
44 #include "usb_defs.h"
45
46 #include "adf_os_io.h"
47
48 #include "init.h"
49 #include "app_start.h"
50
51 // @TODO: Should define the memory region later~
52 #define ALLOCRAM_START       ( ((unsigned int)&_fw_image_end) + 4)
53 #define ALLOCRAM_SIZE        ( SYS_RAM_SZIE - ( ALLOCRAM_START - SYS_D_RAM_REGION_0_BASE) - SYS_D_RAM_STACK_SIZE)
54
55 // support for more than 64 bytes on command pipe
56 extern void usb_reg_out_patch(void);
57 extern int _HIFusb_get_max_msg_len_patch(hif_handle_t handle, int pipe);
58 extern void _HIFusb_isr_handler_patch(hif_handle_t h);
59 extern BOOLEAN bSet_configuration_patch(void);
60 extern void vUSBFIFO_EP6Cfg_FS_patch(void);
61 extern void usb_status_in_patch(void);
62 extern void _fw_usbfifo_init(USB_FIFO_CONFIG *pConfig);
63 extern void zfTurnOffPower_patch(void);
64 extern void zfResetUSBFIFO_patch(void);
65 extern void _HIFusb_start_patch(hif_handle_t handle);
66 extern void hif_pci_patch_install(struct hif_api *apis);
67 extern BOOLEAN bGet_descriptor_patch(void);
68 extern BOOLEAN bStandardCommand_patch(void);
69
70 // patch for clock
71 extern void cmnos_clock_init_patch(a_uint32_t refclk);
72 extern a_uint32_t cmnos_refclk_speed_get_patch(void);
73 extern void cmnos_delay_us_patch(int us);
74 extern void cmnos_tick_patch(void);
75 extern a_uint32_t cmnos_milliseconds_patch(void);
76
77 extern BOOLEAN bJumptoFlash;
78 extern BOOLEAN bEepromExist;
79
80 void __section(boot) __noreturn __visible app_start(void)
81 {
82         uint32_t rst_status;
83         A_HOSTIF hostif;
84 #if defined(PROJECT_MAGPIE)
85         T_EEP_RET retEEP;
86 #endif
87
88         /* Zero BSS segment & dynamic memory section. */
89         init_mem();
90
91 #if defined(PROJECT_MAGPIE)
92         fatal_exception_func();
93 #endif
94
95         if( IS_FLASHBOOT() ) {
96                 athos_indirection_table_install();
97                 DBG_MODULE_INSTALL();
98                 A_CLOCK_INIT(SYSTEM_CLK);
99                 A_UART_INIT();
100                 A_PRINTF_INIT();
101                 A_DBG_INIT();
102                 A_EEP_INIT();
103                 A_TASKLET_INIT();
104                 _indir_tbl.cmnos.timer._timer_init();
105
106 #if defined(PROJECT_K2)
107                 /*
108                  * WAR: these variable is not initialized when boot from flash
109                  *      either re-enumeration or config them to default value = 0 would fix the issue
110                  */
111                 u8UsbInterfaceAlternateSetting = u8UsbConfigValue = u8UsbInterfaceValue = 0;
112 #endif
113         }
114 #ifdef ROM_VER_1_1
115         else
116                 A_EEP_INIT(); /*Required for 1_1*/
117 #endif
118
119 #if defined(PROJECT_MAGPIE)
120         retEEP = A_EEP_IS_EXIST();
121         bJumptoFlash = FALSE;
122         if ( RET_SUCCESS == retEEP ) {
123                 bEepromExist = TRUE;
124         } else {
125                 bEepromExist = FALSE;
126         }
127 #endif
128
129         hostif = A_IS_HOST_PRESENT();
130
131 #if defined(PROJECT_MAGPIE)
132         rst_status = ioread32(WATCH_DOG_MAGIC_PATTERN_ADDR);
133 #elif defined(PROJECT_K2)
134         rst_status = ioread32(MAGPIE_REG_RST_STATUS_ADDR);
135 #endif /* #if defined(PROJECT_MAGPIE) */
136
137
138         A_PRINTF(" A_WDT_INIT()\n\r");
139
140 #if defined(PROJECT_K2)
141         save_cmnos_printf = fw_cmnos_printf;
142 #endif
143
144         if( hostif == HIF_USB ) {
145 #if defined(PROJECT_K2)
146 #if MOVE_PRINT_TO_RAM
147                 save_cmnos_printf = _indir_tbl.cmnos.printf._printf;
148                 _indir_tbl.cmnos.printf._printf = fw_cmnos_printf;
149 #endif
150                 _indir_tbl.cmnos.usb._usb_fw_task = _fw_usb_fw_task;
151                 _indir_tbl.cmnos.usb._usb_reset_fifo = _fw_usb_reset_fifo;
152 #endif
153         }
154
155         if( rst_status == WDT_MAGIC_PATTERN ) {
156                 A_PRINTF(" ==>WDT reset<==\n");
157 #if defined(PROJECT_MAGPIE)
158                 reset_EP4_FIFO();
159 #endif
160                 *((volatile uint32_t*)WATCH_DOG_RESET_COUNTER_ADDR)+=1;
161         } else if (rst_status == SUS_MAGIC_PATTERN) {
162                 A_PRINTF(" ==>warm start<==\n");
163         } else
164                 A_PRINTF(" ==>cold start<==\n");
165
166 #if defined(PROJECT_MAGPIE)
167         *((volatile uint32_t*)WATCH_DOG_MAGIC_PATTERN_ADDR)=WDT_MAGIC_PATTERN;
168 #elif defined(PROJECT_K2)
169         iowrite32(MAGPIE_REG_RST_STATUS_ADDR, WDT_MAGIC_PATTERN);
170 #endif /* #if defined(PROJECT_MAGPIE) */
171
172         /* intr enable would left for firmware */
173         /* athos_interrupt_init(); */
174
175         DBG_MODULE_INSTALL();
176 #if defined(PROJECT_K2)
177         A_DBG_INIT();
178 #endif
179
180 #if defined(PROJECT_K2)
181 #if SYSTEM_MODULE_SFLASH
182         SFLASH_MODULE_INSTALL();
183         A_SFLASH_INIT();
184 #endif
185 #endif
186
187         HIF_MODULE_INSTALL();
188         HTC_MODULE_INSTALL();
189         WMI_SERVICE_MODULE_INSTALL();
190         BUF_POOL_MODULE_INSTALL();
191         VBUF_MODULE_INSTALL();
192         VDESC_MODULE_INSTALL();
193
194         //init each module, should be put together..
195         A_PRINTF("ALLOCRAM start 0x%x size %d\n", ALLOCRAM_START, ALLOCRAM_SIZE);
196         A_ALLOCRAM_INIT(ALLOCRAM_START, ALLOCRAM_SIZE);
197
198         if( hostif == HIF_USB ) {
199                 _indir_tbl.hif._get_max_msg_len = _HIFusb_get_max_msg_len_patch;
200                 _indir_tbl.cmnos.usb._usb_reg_out = usb_reg_out_patch;
201                 _indir_tbl.hif._isr_handler = _HIFusb_isr_handler_patch;
202                 _indir_tbl.cmnos.usb._usb_set_configuration = bSet_configuration_patch;
203                 _indir_tbl.cmnos.usb._usb_status_in = usb_status_in_patch;
204                 _indir_tbl.cmnos.usb._usb_get_descriptor = bGet_descriptor_patch;
205                 _indir_tbl.cmnos.usb._usb_standard_cmd = bStandardCommand_patch;
206                 _indir_tbl.usbfifo_api._init = _fw_usbfifo_init;
207
208 #if defined(PROJECT_MAGPIE)
209                 _indir_tbl.cmnos.usb._usb_power_off = zfTurnOffPower_patch;
210                 _indir_tbl.cmnos.usb._usb_reset_fifo = zfResetUSBFIFO_patch;
211                 _indir_tbl.hif._start = _HIFusb_start_patch;
212                 _indir_tbl.htc._HTC_MsgRecvHandler = HTCMsgRecvHandler_patch;
213                 _indir_tbl.htc._HTC_ControlSvcProcessMsg = HTCControlSvcProcessMsg_patch;
214 #endif
215
216                 if (!(ioread8_usb(ZM_MAIN_CTRL_OFFSET) & BIT6))
217                         vUSBFIFO_EP6Cfg_FS_patch();
218
219 #ifdef FUSION_USB_ENABLE_TX_STREAM
220                 // For K2, enable tx stream mode
221                 A_PRINTF("Enable Tx Stream mode: 0x%x\r\n",
222                         ioread32_usb(ZM_SOC_USB_MODE_CTRL_OFFSET));
223
224                 /* Patch for K2 USB STREAM mode */
225                 /* disable down stream DMA mode */
226                 io32_rmw_usb(ZM_SOC_USB_MODE_CTRL_OFFSET, BIT6, BIT0);
227 #if SYSTEM_MODULE_HP_EP5
228                 io32_set_usb(ZM_SOC_USB_MODE_CTRL_OFFSET, BIT8);
229 #endif
230
231 #if SYSTEM_MODULE_HP_EP6
232                 io32_set_usb(ZM_SOC_USB_MODE_CTRL_OFFSET, BIT9);
233 #endif
234                 /* enable down stream DMA mode */
235                 io32_set_usb(ZM_SOC_USB_MODE_CTRL_OFFSET, BIT0);
236 #endif
237
238 #ifdef FUSION_USB_ENABLE_RX_STREAM
239                 /* Patch for K2 USB STREAM mode */
240                 /* disable upstream DMA mode and enable upstream stream mode */
241                 io32_clr_usb(ZM_SOC_USB_MODE_CTRL_OFFSET, BIT1 | BIT3);
242
243                 /* K2, Set maximum IN transfer to 8K */
244                 io32_rmw_usb(ZM_SOC_USB_MODE_CTRL_OFFSET, 0x20, 0x30);
245
246                 /* enable upstream DMA mode */
247                 io32_set_usb(ZM_SOC_USB_MODE_CTRL_OFFSET, BIT1);
248
249                 /* set stream mode timeout critirea */
250                 iowrite32_usb(ZM_SOC_USB_TIME_CTRL_OFFSET, 0xa0);
251 #if defined(PROJECT_K2)
252                 /*0x10004020 is vaild in k2 but could be invaild in other chip*/
253                 if ((ioread32(0x10004020) & 0x2000) != 0) {
254                         /* disable stream mode for AR9270 */
255                         iowrite32_usb(ZM_SOC_USB_MAX_AGGREGATE_OFFSET, 0);
256                 } else {
257                         /* enable stream mode for AR9271 */
258                         iowrite32_usb(ZM_SOC_USB_MAX_AGGREGATE_OFFSET, 9);
259                 }
260 #else
261                 iowrite32_usb(ZM_SOC_USB_MAX_AGGREGATE_OFFSET, 9);
262 #endif
263 #endif
264         }
265 #if defined(PROJECT_MAGPIE) && !defined(ROM_VER_1_1)
266         else if (hostif == HIF_PCI )
267                 hif_pci_patch_install(&_indir_tbl.hif);
268 #endif
269         A_PRINTF("USB mode: 0x%x\r\n", ioread32_usb(0x100));
270
271         // patch the clock function
272         if(1) {
273                 _indir_tbl.cmnos.clock._clock_init = cmnos_clock_init_patch;
274                 _indir_tbl.cmnos.clock._refclk_speed_get = cmnos_refclk_speed_get_patch;
275                 _indir_tbl.cmnos.clock._delay_us = cmnos_delay_us_patch;
276                 _indir_tbl.cmnos.clock._clock_tick = cmnos_tick_patch;
277                 _indir_tbl.cmnos.clock._milliseconds = cmnos_milliseconds_patch;
278
279                 //default clock, setup initial variable, SYSTEM_FREQ=40
280                 A_CLOCK_INIT(SYSTEM_FREQ);
281         }
282
283         Magpie_init();
284
285 #if MAGPIE_ENABLE_WLAN == 1
286         io32_clr(MAGPIE_REG_RST_RESET_ADDR, BIT10 | BIT8 | BIT7 | BIT6);
287 #if defined(PROJECT_MAGPIE)
288         io32_set(MAGPIE_REG_AHB_ARB_ADDR, BIT1);
289 #endif
290
291         wlan_pci_module_init();
292         wlan_pci_probe();
293 #endif
294
295
296         A_PRINTF("Tgt running\n\r");
297
298 #if defined(PROJECT_MAGPIE)
299         if(1) {
300                 A_PRINTF("======= Apply MISC Assert patch\n\r");
301                 _assfail_ori =  _indir_tbl.cmnos.misc._assfail;
302                 _indir_tbl.cmnos.misc._assfail = exception_reset;
303         }
304
305         change_magpie_clk();
306 #endif
307         wlan_task(); //never return
308 }