]> git.donarmstrong.com Git - tmk_firmware.git/blob - common/action_code.h
Merge pull request #36 from Wraul/fix_sleep_led
[tmk_firmware.git] / common / action_code.h
1 /*
2 Copyright 2013 Jun Wako <wakojun@gmail.com>
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17 #ifndef ACTION_CODE_H
18 #define ACTION_CODE_H
19
20 /* Action codes
21  * ============
22  * 16bit code: action_kind(4bit) + action_parameter(12bit)
23  *
24  *
25  * Key Actions(00xx)
26  * -----------------
27  * ACT_MODS(000r):
28  * 000r|0000|0000 0000    No action code
29  * 000r|0000|0000 0001    Transparent code
30  * 000r|0000| keycode     Key
31  * 000r|mods|0000 0000    Modifiers
32  * 000r|mods| keycode     Key and Modifiers
33  *   r: Left/Right flag(Left:0, Right:1)
34  *
35  * ACT_MODS_TAP(001r):
36  * 0010|mods|0000 0000    Modifiers with OneShot
37  * 0010|mods|0000 00xx    (reserved)
38  * 0010|mods| keycode     Modifiers with Tap Key
39  *
40  *
41  * Other Keys(01xx)
42  * ----------------
43  * ACT_USAGE(0100): TODO: Not needed?
44  * 0100|00| usage(10)     System control(0x80) - General Desktop page(0x01)
45  * 0100|01| usage(10)     Consumer control(0x01) - Consumer page(0x0C)
46  * 0100|10| usage(10)     (reserved)
47  * 0100|11| usage(10)     (reserved)
48  *
49  * ACT_MOUSEKEY(0110): TODO: Not needed?
50  * 0101|xxxx| keycode     Mouse key
51  *
52  * 011x|xxxx xxxx xxxx    (reseved)
53  *
54  *
55  * Layer Actions(10xx)
56  * -------------------
57  * ACT_LAYER(1000):
58  * 1000|oo00|pppE BBBB   Default Layer Bitwise operation
59  *   oo:    operation(00:AND, 01:OR, 10:XOR, 11:SET)
60  *   ppp:   4-bit chunk part(0-7)
61  *   EBBBB: bits and extra bit
62  * 1000|ooee|pppE BBBB   Layer Bitwise Operation
63  *   oo:    operation(00:AND, 01:OR, 10:XOR, 11:SET)
64  *   ppp:   4-bit chunk part(0-7)
65  *   eBBBB: bits and extra bit
66  *   ee:    on event(00:default layer, 01:press, 10:release, 11:both)
67  *
68  * 1001|xxxx|xxxx xxxx   (reserved)
69  * 1001|oopp|BBBB BBBB   8-bit Bitwise Operation???
70  *
71  * ACT_LAYER_TAP(101x):
72  * 101E|LLLL| keycode    Invert with tap key
73  * 101E|LLLL|1110 xxxx   Reserved(0xE0-EF)
74  * 101E|LLLL|1111 0000   Invert with tap toggle(0xF0)
75  * 101E|LLLL|1111 0001   On/Off
76  * 101E|LLLL|1111 0010   Off/On
77  * 101E|LLLL|1111 0011   Set/Clear
78  * 101E|LLLL|1111 xxxx   Reserved(0xF4-FF)
79  *   ELLLL: layer(0-31)
80  *
81  *
82  * Extensions(11xx)
83  * ----------------
84  * ACT_MACRO(1100):
85  * 1100|opt | id(8)      Macro play?
86  * 1100|1111| id(8)      Macro record?
87  *
88  * ACT_COMMAND(1110):
89  * 1110|opt | id(8)      Built-in Command exec
90  *
91  * ACT_FUNCTION(1111):
92  * 1111| address(12)     Function?
93  * 1111|opt | id(8)      Function?
94  */
95 enum action_kind_id {
96     /* Key Actions */
97     ACT_MODS            = 0b0000,
98     ACT_LMODS           = 0b0000,
99     ACT_RMODS           = 0b0001,
100     ACT_MODS_TAP        = 0b0010,
101     ACT_LMODS_TAP       = 0b0010,
102     ACT_RMODS_TAP       = 0b0011,
103     /* Other Keys */
104     ACT_USAGE           = 0b0100,
105     ACT_MOUSEKEY        = 0b0101,
106     /* Layer Actions */
107     ACT_LAYER           = 0b1000,
108     ACT_LAYER_TAP       = 0b1010,
109     ACT_LAYER_TAP1      = 0b1011,
110     /* Extensions */
111     ACT_MACRO           = 0b1100,
112     ACT_COMMAND         = 0b1110,
113     ACT_FUNCTION        = 0b1111
114 };
115
116
117 /* Action Code Struct
118  *
119  * NOTE:
120  * In avr-gcc bit field seems to be assigned from LSB(bit0) to MSB(bit15).
121  * AVR looks like a little endian in avr-gcc.
122  * Not portable across compiler/endianness?
123  *
124  * Byte order and bit order of 0x1234:
125  *   Big endian:                Little endian:
126  *   --------------------       --------------------
127  *   FEDC BA98  7654 3210       0123 4567  89AB CDEF
128  *   0001 0010  0011 0100       0010 1100  0100 1000
129  *     0x12       0x34            0x34       0x12
130  */
131 typedef union {
132     uint16_t code;
133     struct action_kind {
134         uint16_t param  :12;
135         uint8_t  id     :4;
136     } kind;
137     struct action_key {
138         uint8_t  code   :8;
139         uint8_t  mods   :4;
140         uint8_t  kind   :4;
141     } key;
142     struct action_layer_bitop {
143         uint8_t  bits   :4;
144         uint8_t  xbit   :1;
145         uint8_t  part   :3;
146         uint8_t  on     :2;
147         uint8_t  op     :2;
148         uint8_t  kind   :4;
149     } layer_bitop;
150     struct action_layer_tap {
151         uint8_t  code   :8;
152         uint8_t  val    :5;
153         uint8_t  kind   :3;
154     } layer_tap;
155     struct action_usage {
156         uint16_t code   :10;
157         uint8_t  page   :2;
158         uint8_t  kind   :4;
159     } usage;
160     struct action_command {
161         uint8_t  id     :8;
162         uint8_t  opt    :4;
163         uint8_t  kind   :4;
164     } command;
165     struct action_function {
166         uint8_t  id     :8;
167         uint8_t  opt    :4;
168         uint8_t  kind   :4;
169     } func;
170 } action_t;
171
172
173 /* action utility */
174 #define ACTION_NO                       0
175 #define ACTION_TRANSPARENT              1
176 #define ACTION(kind, param)             ((kind)<<12 | (param))
177
178
179 /*
180  * Key Actions
181  */
182 /* Mod bits:    43210
183  *   bit 0      ||||+- Control
184  *   bit 1      |||+-- Shift
185  *   bit 2      ||+--- Alt
186  *   bit 3      |+---- Gui
187  *   bit 4      +----- LR flag(Left:0, Right:1)
188  */
189 enum mods_bit {
190     MOD_LCTL = 0x01,
191     MOD_LSFT = 0x02,
192     MOD_LALT = 0x04,
193     MOD_LGUI = 0x08,
194     MOD_RCTL = 0x11,
195     MOD_RSFT = 0x12,
196     MOD_RALT = 0x14,
197     MOD_RGUI = 0x18,
198 };
199 enum mods_codes {
200     MODS_ONESHOT = 0x00,
201 };
202 #define ACTION_KEY(key)                 ACTION(ACT_MODS, (key))
203 #define ACTION_MODS(mods)               ACTION(ACT_MODS, (mods)<<8 | 0)
204 #define ACTION_MODS_KEY(mods, key)      ACTION(ACT_MODS, (mods)<<8 | (key))
205 #define ACTION_MODS_TAP_KEY(mods, key)  ACTION(ACT_MODS_TAP, (mods)<<8 | (key))
206 #define ACTION_MODS_ONESHOT(mods)       ACTION(ACT_MODS_TAP, (mods)<<8 | MODS_ONESHOT)
207
208
209 /*
210  * Other Keys
211  */
212 enum usage_pages {
213     PAGE_SYSTEM,
214     PAGE_CONSUMER
215 };
216 #define ACTION_USAGE_SYSTEM(id)         ACTION(ACT_USAGE, PAGE_SYSTEM<<10 | (id))
217 #define ACTION_USAGE_CONSUMER(id)       ACTION(ACT_USAGE, PAGE_CONSUMER<<10 | (id))
218 #define ACTION_MOUSEKEY(key)            ACTION(ACT_MOUSEKEY, key)
219
220
221
222 /* 
223  * Layer Actions
224  */
225 enum layer_param_on {
226     ON_PRESS    = 1,
227     ON_RELEASE  = 2,
228     ON_BOTH     = 3,
229 };
230 enum layer_param_bit_op {
231     OP_BIT_AND = 0,
232     OP_BIT_OR  = 1,
233     OP_BIT_XOR = 2,
234     OP_BIT_SET = 3,
235 };
236 enum layer_pram_tap_op {
237     OP_TAP_TOGGLE = 0xF0,
238     OP_ON_OFF,
239     OP_OFF_ON,
240     OP_SET_CLEAR,
241 };
242 #define ACTION_LAYER_BITOP(op, part, bits, on)      (ACT_LAYER<<12 | (op)<<10 | (on)<<8 | (part)<<5 | ((bits)&0x1f))
243 #define ACTION_LAYER_TAP(layer, key)                (ACT_LAYER_TAP<<12 | (layer)<<8 | (key))
244 /* Default Layer */
245 #define ACTION_DEFAULT_LAYER_SET(layer)             ACTION_DEFAULT_LAYER_BIT_SET((layer)/4, 1<<((layer)%4))
246 /* Layer Operation */
247 #define ACTION_LAYER_CLEAR(on)                      ACTION_LAYER_BIT_AND(0, 0, (on))
248 #define ACTION_LAYER_MOMENTARY(layer)               ACTION_LAYER_ON_OFF(layer)
249 #define ACTION_LAYER_TOGGLE(layer)                  ACTION_LAYER_INVERT(layer, ON_RELEASE)
250 #define ACTION_LAYER_INVERT(layer, on)              ACTION_LAYER_BIT_XOR((layer)/4,   1<<((layer)%4),  (on))
251 #define ACTION_LAYER_ON(layer, on)                  ACTION_LAYER_BIT_OR( (layer)/4,   1<<((layer)%4),  (on))
252 #define ACTION_LAYER_OFF(layer, on)                 ACTION_LAYER_BIT_AND((layer)/4, ~(1<<((layer)%4)), (on))
253 #define ACTION_LAYER_SET(layer, on)                 ACTION_LAYER_BIT_SET((layer)/4,   1<<((layer)%4),  (on))
254 #define ACTION_LAYER_ON_OFF(layer)                  ACTION_LAYER_TAP((layer), OP_ON_OFF)
255 #define ACTION_LAYER_OFF_ON(layer)                  ACTION_LAYER_TAP((layer), OP_OFF_ON)
256 #define ACTION_LAYER_SET_CLEAR(layer)               ACTION_LAYER_TAP((layer), OP_SET_CLEAR)
257 /* With Tapping */
258 #define ACTION_LAYER_TAP_KEY(layer, key)            ACTION_LAYER_TAP((layer), (key))
259 #define ACTION_LAYER_TAP_TOGGLE(layer)              ACTION_LAYER_TAP((layer), OP_TAP_TOGGLE)
260 /* Bitwise Operation */
261 #define ACTION_LAYER_BIT_AND(part, bits, on)        ACTION_LAYER_BITOP(OP_BIT_AND, (part), (bits), (on))
262 #define ACTION_LAYER_BIT_OR( part, bits, on)        ACTION_LAYER_BITOP(OP_BIT_OR,  (part), (bits), (on))
263 #define ACTION_LAYER_BIT_XOR(part, bits, on)        ACTION_LAYER_BITOP(OP_BIT_XOR, (part), (bits), (on))
264 #define ACTION_LAYER_BIT_SET(part, bits, on)        ACTION_LAYER_BITOP(OP_BIT_SET, (part), (bits), (on))
265 /* Default Layer Bitwise Operation */
266 #define ACTION_DEFAULT_LAYER_BIT_AND(part, bits)    ACTION_LAYER_BITOP(OP_BIT_AND, (part), (bits), 0)
267 #define ACTION_DEFAULT_LAYER_BIT_OR( part, bits)    ACTION_LAYER_BITOP(OP_BIT_OR,  (part), (bits), 0)
268 #define ACTION_DEFAULT_LAYER_BIT_XOR(part, bits)    ACTION_LAYER_BITOP(OP_BIT_XOR, (part), (bits), 0)
269 #define ACTION_DEFAULT_LAYER_BIT_SET(part, bits)    ACTION_LAYER_BITOP(OP_BIT_SET, (part), (bits), 0)
270
271
272 /*
273  * Extensions
274  */
275 /* Macro */
276 #define ACTION_MACRO(id)                ACTION(ACT_MACRO, (id))
277 #define ACTION_MACRO_TAP(id)            ACTION(ACT_MACRO, FUNC_TAP<<8 | (id))
278 #define ACTION_MACRO_OPT(id, opt)       ACTION(ACT_MACRO, (opt)<<8 | (id))
279 /* Command */
280 #define ACTION_COMMAND(id, opt)         ACTION(ACT_COMMAND,  (opt)<<8 | (addr))
281 /* Function */
282 enum function_opts {
283     FUNC_TAP = 0x8,     /* indciates function is tappable */
284 };
285 #define ACTION_FUNCTION(id)             ACTION(ACT_FUNCTION, (id))
286 #define ACTION_FUNCTION_TAP(id)         ACTION(ACT_FUNCTION, FUNC_TAP<<8 | (id))
287 #define ACTION_FUNCTION_OPT(id, opt)    ACTION(ACT_FUNCTION, (opt)<<8 | (id))
288
289 #endif /* ACTION_CODE_H */