]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/pdk.git/blob - packages/ti/drv/emac/firmware/icss_dualmac/src/spin.h
Merge pull request #19 in PROCESSOR-SDK/pdk from prsdk-7325 to master
[processor-sdk/pdk.git] / packages / ti / drv / emac / firmware / icss_dualmac / src / spin.h
1 ;
2 ;  TEXAS INSTRUMENTS TEXT FILE LICENSE
3 ;
4 ;   Copyright (c) 2018-2019 Texas Instruments Incorporated
5 ;
6 ;  All rights reserved not granted herein.
7 ;
8 ;  Limited License.
9 ;
10 ;  Texas Instruments Incorporated grants a world-wide, royalty-free, non-exclusive
11 ;  license under copyrights and patents it now or hereafter owns or controls to
12 ;  make, have made, use, import, offer to sell and sell ("Utilize") this software
13 ;  subject to the terms herein.  With respect to the foregoing patent license,
14 ;  such license is granted  solely to the extent that any such patent is necessary
15 ;  to Utilize the software alone.  The patent license shall not apply to any
16 ;  combinations which include this software, other than combinations with devices
17 ;  manufactured by or for TI (“TI Devices”).  No hardware patent is licensed hereunder.
18 ;
19 ;  Redistributions must preserve existing copyright notices and reproduce this license
20 ;  (including the above copyright notice and the disclaimer and (if applicable) source
21 ;  code license limitations below) in the documentation and/or other materials provided
22 ;  with the distribution.
23 ;
24 ;  Redistribution and use in binary form, without modification, are permitted provided
25 ;  that the following conditions are met:
26 ;       No reverse engineering, decompilation, or disassembly of this software is
27 ;   permitted with respect to any software provided in binary form.
28 ;       Any redistribution and use are licensed by TI for use only with TI Devices.
29 ;       Nothing shall obligate TI to provide you with source code for the software
30 ;   licensed and provided to you in object code.
31 ;
32 ;  If software source code is provided to you, modification and redistribution of the
33 ;  source code are permitted provided that the following conditions are met:
34 ;       Any redistribution and use of the source code, including any resulting derivative
35 ;   works, are licensed by TI for use only with TI Devices.
36 ;       Any redistribution and use of any object code compiled from the source code
37 ;   and any resulting derivative works, are licensed by TI for use only with TI Devices.
38 ;
39 ;  Neither the name of Texas Instruments Incorporated nor the names of its suppliers
40 ;  may be used to endorse or promote products derived from this software without
41 ;  specific prior written permission.
42 ;
43 ;  DISCLAIMER.
44 ;
45 ;  THIS SOFTWARE IS PROVIDED BY TI AND TI’S LICENSORS "AS IS" AND ANY EXPRESS OR IMPLIED
46 ;  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
47 ;  AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL TI AND TI’S
48 ;  LICENSORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
49 ;  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
50 ;  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
51 ;  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 ;  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
53 ;  EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
55 ;----------------------------------------------------------
56 ; spin.h:  defines and macros for SPINLOCK  engine on ICSSG
57 ;-----------------------------------------------------------
59 ;-----------------DEFINES-------------------------
61 ;XIDs
62 SPIN_XID_LOC    .set    0x90
63 ;#define SPIN_XID_LOC  90    ;local lock
64 SPIN_XID_REM1   .set    0x91
65 SPIN_XID_REM2   .set    0x92
67 ;spin lock flag defines
68 SPIN_FDB_FLAG   .set    0x1
69 SPIN_FDB_HOST_FLAG      .set    0x2
71  .if $isdefed("SLICE0")
72 PRU_RTU_EOD_P_FLAG      .set    0x6
73 PRU_RTU_EOD_E_FLAG      .set    0x7
74 PSI_GLITCH_FLAG .set    0xa
75 PRU_RTU_SOF_FLAG        .set    0xa
76 PRU_RTU_EOF_FLAG        .set    0xb
77 RTU_RTU_IPC_FLAG        .set    0xc
78 PRU_RTU_TX_TS_READY     .set    0x10
79  .endif
80  .if $isdefed("SLICE1")
81 PRU_RTU_EOD_P_FLAG      .set    0x8
82 PRU_RTU_EOD_E_FLAG      .set    0x9
83 PSI_GLITCH_FLAG .set    0xd
84 PRU_RTU_SOF_FLAG        .set    0xd
85 PRU_RTU_EOF_FLAG        .set    0xe
86 RTU_RTU_IPC_FLAG        .set    0xf
87 PRU_RTU_TX_TS_READY     .set    0x11
88  .endif
90 ;-----------------STRUCTURES-----------------------------
92 ;-----------------STRUCTURE OVERLAYS-----------
94 ;------------------MACROS--------------------------
96 SPIN_SET_LOCK_LOC       .macro    flagno
97         ldi     r1.b0, flagno
98         xin     SPIN_XID_LOC, &r1.b3, 1
99  .endm
101 ;spin lock with fail label and bit to test
102 ;testbit == flagno
103 SPIN_SET_LOCK_LOC_LAB   .macro    flagno, lab_fail
104         ldi     r1.b0, flagno
105         xin     SPIN_XID_LOC, &r1.b3, 1
106         qbbc    lab_fail, r1, 24         ;replaced: qbbc lab_fail, r1.t24
107  .endm
109 SPIN_CLR_LOCK_LOC       .macro   flagno
110         ldi     r1.b0, flagno
111         xout    SPIN_XID_LOC, &r1.b3, 1
112  .endm
114 SPIN_TOG_LOCK_LOC       .macro          flagno
115         ldi     r1.b0, flagno
116         xin     SPIN_XID_LOC, &r1.b3, 1
117         xout    SPIN_XID_LOC, &r1.b3, 1
118  .endm