| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*********************************************************************
- * SEGGER Microcontroller GmbH *
- * Solutions for real time microcontroller applications *
- **********************************************************************
- * *
- * (c) 1995 - 2018 SEGGER Microcontroller GmbH *
- * *
- * Internet: www.segger.com Support: support@segger.com *
- * *
- **********************************************************************
- ----------------------------------------------------------------------
- Purpose :
- ---------------------------END-OF-HEADER------------------------------
- */
- /*********************************************************************
- *
- * ResetTarget
- */
- void ResetTarget(void) {
- // In case cores 1-3 are reset, we do nothing,
- // as we would lose connection to these cores, when resetting the device
- // as a reset disables the clock to them.
- }
- /*********************************************************************
- *
- * InitTarget
- */
- void InitTarget(void) {
- int WordAcc;
- int v;
-
- JTAG_Reset(); // Perform TAP reset and J-Link JTAG auto-detection
- if (JTAG_TotalIRLen == 5) { // Freescale System JTAG Controller (SJC) in MOD 1 detected?
- JTAG_TRSTPin = 0; // Set JTAG_MOD to 0 in order to set Freescale System JTAG Controller (SJC) MOD to 0 ("Daisy chain ALL")
- SYS_Sleep(10); // Give pin some time to get low
- }
- Report("******************************************************");
- Report("J-Link script: iMX6 SoloX Cortex-A9 core J-Link script");
- Report("******************************************************");
- JLINK_CORESIGHT_Configure("IRPre=4;DRPre=1;IRPost=9;DRPost=2;IRLenDevice=4");
- CPU = CORTEX_A9; // Pre-select that we have a Cortex-A9 connected
- JTAG_AllowTAPReset = 1; // J-Link is allowed to use a TAP reset for JTAG-chain auto-detection
- CORESIGHT_CoreBaseAddr = 0x02150000;
- CORESIGHT_AddAP(0, CORESIGHT_AHB_AP);
- CORESIGHT_AddAP(1, CORESIGHT_APB_AP);
- CORESIGHT_IndexAPBAPToUse = 1;
- JTAG_SetDeviceId(0, 0x4BA00477); // 4-bits IRLen
- JTAG_SetDeviceId(1, 0x4BA00477); // 4-bits IRLen
- JTAG_SetDeviceId(2, 0x00000001); // 5-bits IRLen
- JTAG_SetDeviceId(3, 0x0891C01D); // 4-bits IRLen
- }
|