PM / sleep: Asynchronous threads for suspend_noirq
[linux/fpc-iii.git] / drivers / net / ethernet / ti / cpsw_ale.c
blob7f893069c4187caab2e8071775f1d0756eb5a17a
1 /*
2 * Texas Instruments 3-Port Ethernet Switch Address Lookup Engine
4 * Copyright (C) 2012 Texas Instruments
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 #include <linux/kernel.h>
16 #include <linux/platform_device.h>
17 #include <linux/seq_file.h>
18 #include <linux/slab.h>
19 #include <linux/err.h>
20 #include <linux/io.h>
21 #include <linux/stat.h>
22 #include <linux/sysfs.h>
23 #include <linux/etherdevice.h>
25 #include "cpsw_ale.h"
27 #define BITMASK(bits) (BIT(bits) - 1)
28 #define ALE_ENTRY_BITS 68
29 #define ALE_ENTRY_WORDS DIV_ROUND_UP(ALE_ENTRY_BITS, 32)
31 #define ALE_VERSION_MAJOR(rev) ((rev >> 8) & 0xff)
32 #define ALE_VERSION_MINOR(rev) (rev & 0xff)
34 /* ALE Registers */
35 #define ALE_IDVER 0x00
36 #define ALE_CONTROL 0x08
37 #define ALE_PRESCALE 0x10
38 #define ALE_UNKNOWNVLAN 0x18
39 #define ALE_TABLE_CONTROL 0x20
40 #define ALE_TABLE 0x34
41 #define ALE_PORTCTL 0x40
43 #define ALE_TABLE_WRITE BIT(31)
45 #define ALE_TYPE_FREE 0
46 #define ALE_TYPE_ADDR 1
47 #define ALE_TYPE_VLAN 2
48 #define ALE_TYPE_VLAN_ADDR 3
50 #define ALE_UCAST_PERSISTANT 0
51 #define ALE_UCAST_UNTOUCHED 1
52 #define ALE_UCAST_OUI 2
53 #define ALE_UCAST_TOUCHED 3
55 static inline int cpsw_ale_get_field(u32 *ale_entry, u32 start, u32 bits)
57 int idx;
59 idx = start / 32;
60 start -= idx * 32;
61 idx = 2 - idx; /* flip */
62 return (ale_entry[idx] >> start) & BITMASK(bits);
65 static inline void cpsw_ale_set_field(u32 *ale_entry, u32 start, u32 bits,
66 u32 value)
68 int idx;
70 value &= BITMASK(bits);
71 idx = start / 32;
72 start -= idx * 32;
73 idx = 2 - idx; /* flip */
74 ale_entry[idx] &= ~(BITMASK(bits) << start);
75 ale_entry[idx] |= (value << start);
78 #define DEFINE_ALE_FIELD(name, start, bits) \
79 static inline int cpsw_ale_get_##name(u32 *ale_entry) \
80 { \
81 return cpsw_ale_get_field(ale_entry, start, bits); \
82 } \
83 static inline void cpsw_ale_set_##name(u32 *ale_entry, u32 value) \
84 { \
85 cpsw_ale_set_field(ale_entry, start, bits, value); \
88 DEFINE_ALE_FIELD(entry_type, 60, 2)
89 DEFINE_ALE_FIELD(vlan_id, 48, 12)
90 DEFINE_ALE_FIELD(mcast_state, 62, 2)
91 DEFINE_ALE_FIELD(port_mask, 66, 3)
92 DEFINE_ALE_FIELD(super, 65, 1)
93 DEFINE_ALE_FIELD(ucast_type, 62, 2)
94 DEFINE_ALE_FIELD(port_num, 66, 2)
95 DEFINE_ALE_FIELD(blocked, 65, 1)
96 DEFINE_ALE_FIELD(secure, 64, 1)
97 DEFINE_ALE_FIELD(vlan_untag_force, 24, 3)
98 DEFINE_ALE_FIELD(vlan_reg_mcast, 16, 3)
99 DEFINE_ALE_FIELD(vlan_unreg_mcast, 8, 3)
100 DEFINE_ALE_FIELD(vlan_member_list, 0, 3)
101 DEFINE_ALE_FIELD(mcast, 40, 1)
103 /* The MAC address field in the ALE entry cannot be macroized as above */
104 static inline void cpsw_ale_get_addr(u32 *ale_entry, u8 *addr)
106 int i;
108 for (i = 0; i < 6; i++)
109 addr[i] = cpsw_ale_get_field(ale_entry, 40 - 8*i, 8);
112 static inline void cpsw_ale_set_addr(u32 *ale_entry, u8 *addr)
114 int i;
116 for (i = 0; i < 6; i++)
117 cpsw_ale_set_field(ale_entry, 40 - 8*i, 8, addr[i]);
120 static int cpsw_ale_read(struct cpsw_ale *ale, int idx, u32 *ale_entry)
122 int i;
124 WARN_ON(idx > ale->params.ale_entries);
126 __raw_writel(idx, ale->params.ale_regs + ALE_TABLE_CONTROL);
128 for (i = 0; i < ALE_ENTRY_WORDS; i++)
129 ale_entry[i] = __raw_readl(ale->params.ale_regs +
130 ALE_TABLE + 4 * i);
132 return idx;
135 static int cpsw_ale_write(struct cpsw_ale *ale, int idx, u32 *ale_entry)
137 int i;
139 WARN_ON(idx > ale->params.ale_entries);
141 for (i = 0; i < ALE_ENTRY_WORDS; i++)
142 __raw_writel(ale_entry[i], ale->params.ale_regs +
143 ALE_TABLE + 4 * i);
145 __raw_writel(idx | ALE_TABLE_WRITE, ale->params.ale_regs +
146 ALE_TABLE_CONTROL);
148 return idx;
151 int cpsw_ale_match_addr(struct cpsw_ale *ale, u8 *addr, u16 vid)
153 u32 ale_entry[ALE_ENTRY_WORDS];
154 int type, idx;
156 for (idx = 0; idx < ale->params.ale_entries; idx++) {
157 u8 entry_addr[6];
159 cpsw_ale_read(ale, idx, ale_entry);
160 type = cpsw_ale_get_entry_type(ale_entry);
161 if (type != ALE_TYPE_ADDR && type != ALE_TYPE_VLAN_ADDR)
162 continue;
163 if (cpsw_ale_get_vlan_id(ale_entry) != vid)
164 continue;
165 cpsw_ale_get_addr(ale_entry, entry_addr);
166 if (ether_addr_equal(entry_addr, addr))
167 return idx;
169 return -ENOENT;
172 int cpsw_ale_match_vlan(struct cpsw_ale *ale, u16 vid)
174 u32 ale_entry[ALE_ENTRY_WORDS];
175 int type, idx;
177 for (idx = 0; idx < ale->params.ale_entries; idx++) {
178 cpsw_ale_read(ale, idx, ale_entry);
179 type = cpsw_ale_get_entry_type(ale_entry);
180 if (type != ALE_TYPE_VLAN)
181 continue;
182 if (cpsw_ale_get_vlan_id(ale_entry) == vid)
183 return idx;
185 return -ENOENT;
188 static int cpsw_ale_match_free(struct cpsw_ale *ale)
190 u32 ale_entry[ALE_ENTRY_WORDS];
191 int type, idx;
193 for (idx = 0; idx < ale->params.ale_entries; idx++) {
194 cpsw_ale_read(ale, idx, ale_entry);
195 type = cpsw_ale_get_entry_type(ale_entry);
196 if (type == ALE_TYPE_FREE)
197 return idx;
199 return -ENOENT;
202 static int cpsw_ale_find_ageable(struct cpsw_ale *ale)
204 u32 ale_entry[ALE_ENTRY_WORDS];
205 int type, idx;
207 for (idx = 0; idx < ale->params.ale_entries; idx++) {
208 cpsw_ale_read(ale, idx, ale_entry);
209 type = cpsw_ale_get_entry_type(ale_entry);
210 if (type != ALE_TYPE_ADDR && type != ALE_TYPE_VLAN_ADDR)
211 continue;
212 if (cpsw_ale_get_mcast(ale_entry))
213 continue;
214 type = cpsw_ale_get_ucast_type(ale_entry);
215 if (type != ALE_UCAST_PERSISTANT &&
216 type != ALE_UCAST_OUI)
217 return idx;
219 return -ENOENT;
222 static void cpsw_ale_flush_mcast(struct cpsw_ale *ale, u32 *ale_entry,
223 int port_mask)
225 int mask;
227 mask = cpsw_ale_get_port_mask(ale_entry);
228 if ((mask & port_mask) == 0)
229 return; /* ports dont intersect, not interested */
230 mask &= ~port_mask;
232 /* free if only remaining port is host port */
233 if (mask)
234 cpsw_ale_set_port_mask(ale_entry, mask);
235 else
236 cpsw_ale_set_entry_type(ale_entry, ALE_TYPE_FREE);
239 int cpsw_ale_flush_multicast(struct cpsw_ale *ale, int port_mask)
241 u32 ale_entry[ALE_ENTRY_WORDS];
242 int ret, idx;
244 for (idx = 0; idx < ale->params.ale_entries; idx++) {
245 cpsw_ale_read(ale, idx, ale_entry);
246 ret = cpsw_ale_get_entry_type(ale_entry);
247 if (ret != ALE_TYPE_ADDR && ret != ALE_TYPE_VLAN_ADDR)
248 continue;
250 if (cpsw_ale_get_mcast(ale_entry)) {
251 u8 addr[6];
253 cpsw_ale_get_addr(ale_entry, addr);
254 if (!is_broadcast_ether_addr(addr))
255 cpsw_ale_flush_mcast(ale, ale_entry, port_mask);
258 cpsw_ale_write(ale, idx, ale_entry);
260 return 0;
263 static void cpsw_ale_flush_ucast(struct cpsw_ale *ale, u32 *ale_entry,
264 int port_mask)
266 int port;
268 port = cpsw_ale_get_port_num(ale_entry);
269 if ((BIT(port) & port_mask) == 0)
270 return; /* ports dont intersect, not interested */
271 cpsw_ale_set_entry_type(ale_entry, ALE_TYPE_FREE);
274 int cpsw_ale_flush(struct cpsw_ale *ale, int port_mask)
276 u32 ale_entry[ALE_ENTRY_WORDS];
277 int ret, idx;
279 for (idx = 0; idx < ale->params.ale_entries; idx++) {
280 cpsw_ale_read(ale, idx, ale_entry);
281 ret = cpsw_ale_get_entry_type(ale_entry);
282 if (ret != ALE_TYPE_ADDR && ret != ALE_TYPE_VLAN_ADDR)
283 continue;
285 if (cpsw_ale_get_mcast(ale_entry))
286 cpsw_ale_flush_mcast(ale, ale_entry, port_mask);
287 else
288 cpsw_ale_flush_ucast(ale, ale_entry, port_mask);
290 cpsw_ale_write(ale, idx, ale_entry);
292 return 0;
295 static inline void cpsw_ale_set_vlan_entry_type(u32 *ale_entry,
296 int flags, u16 vid)
298 if (flags & ALE_VLAN) {
299 cpsw_ale_set_entry_type(ale_entry, ALE_TYPE_VLAN_ADDR);
300 cpsw_ale_set_vlan_id(ale_entry, vid);
301 } else {
302 cpsw_ale_set_entry_type(ale_entry, ALE_TYPE_ADDR);
306 int cpsw_ale_add_ucast(struct cpsw_ale *ale, u8 *addr, int port,
307 int flags, u16 vid)
309 u32 ale_entry[ALE_ENTRY_WORDS] = {0, 0, 0};
310 int idx;
312 cpsw_ale_set_vlan_entry_type(ale_entry, flags, vid);
314 cpsw_ale_set_addr(ale_entry, addr);
315 cpsw_ale_set_ucast_type(ale_entry, ALE_UCAST_PERSISTANT);
316 cpsw_ale_set_secure(ale_entry, (flags & ALE_SECURE) ? 1 : 0);
317 cpsw_ale_set_blocked(ale_entry, (flags & ALE_BLOCKED) ? 1 : 0);
318 cpsw_ale_set_port_num(ale_entry, port);
320 idx = cpsw_ale_match_addr(ale, addr, (flags & ALE_VLAN) ? vid : 0);
321 if (idx < 0)
322 idx = cpsw_ale_match_free(ale);
323 if (idx < 0)
324 idx = cpsw_ale_find_ageable(ale);
325 if (idx < 0)
326 return -ENOMEM;
328 cpsw_ale_write(ale, idx, ale_entry);
329 return 0;
332 int cpsw_ale_del_ucast(struct cpsw_ale *ale, u8 *addr, int port,
333 int flags, u16 vid)
335 u32 ale_entry[ALE_ENTRY_WORDS] = {0, 0, 0};
336 int idx;
338 idx = cpsw_ale_match_addr(ale, addr, (flags & ALE_VLAN) ? vid : 0);
339 if (idx < 0)
340 return -ENOENT;
342 cpsw_ale_set_entry_type(ale_entry, ALE_TYPE_FREE);
343 cpsw_ale_write(ale, idx, ale_entry);
344 return 0;
347 int cpsw_ale_add_mcast(struct cpsw_ale *ale, u8 *addr, int port_mask,
348 int flags, u16 vid, int mcast_state)
350 u32 ale_entry[ALE_ENTRY_WORDS] = {0, 0, 0};
351 int idx, mask;
353 idx = cpsw_ale_match_addr(ale, addr, (flags & ALE_VLAN) ? vid : 0);
354 if (idx >= 0)
355 cpsw_ale_read(ale, idx, ale_entry);
357 cpsw_ale_set_vlan_entry_type(ale_entry, flags, vid);
359 cpsw_ale_set_addr(ale_entry, addr);
360 cpsw_ale_set_super(ale_entry, (flags & ALE_BLOCKED) ? 1 : 0);
361 cpsw_ale_set_mcast_state(ale_entry, mcast_state);
363 mask = cpsw_ale_get_port_mask(ale_entry);
364 port_mask |= mask;
365 cpsw_ale_set_port_mask(ale_entry, port_mask);
367 if (idx < 0)
368 idx = cpsw_ale_match_free(ale);
369 if (idx < 0)
370 idx = cpsw_ale_find_ageable(ale);
371 if (idx < 0)
372 return -ENOMEM;
374 cpsw_ale_write(ale, idx, ale_entry);
375 return 0;
378 int cpsw_ale_del_mcast(struct cpsw_ale *ale, u8 *addr, int port_mask,
379 int flags, u16 vid)
381 u32 ale_entry[ALE_ENTRY_WORDS] = {0, 0, 0};
382 int idx;
384 idx = cpsw_ale_match_addr(ale, addr, (flags & ALE_VLAN) ? vid : 0);
385 if (idx < 0)
386 return -EINVAL;
388 cpsw_ale_read(ale, idx, ale_entry);
390 if (port_mask)
391 cpsw_ale_set_port_mask(ale_entry, port_mask);
392 else
393 cpsw_ale_set_entry_type(ale_entry, ALE_TYPE_FREE);
395 cpsw_ale_write(ale, idx, ale_entry);
396 return 0;
399 int cpsw_ale_add_vlan(struct cpsw_ale *ale, u16 vid, int port, int untag,
400 int reg_mcast, int unreg_mcast)
402 u32 ale_entry[ALE_ENTRY_WORDS] = {0, 0, 0};
403 int idx;
405 idx = cpsw_ale_match_vlan(ale, vid);
406 if (idx >= 0)
407 cpsw_ale_read(ale, idx, ale_entry);
409 cpsw_ale_set_entry_type(ale_entry, ALE_TYPE_VLAN);
410 cpsw_ale_set_vlan_id(ale_entry, vid);
412 cpsw_ale_set_vlan_untag_force(ale_entry, untag);
413 cpsw_ale_set_vlan_reg_mcast(ale_entry, reg_mcast);
414 cpsw_ale_set_vlan_unreg_mcast(ale_entry, unreg_mcast);
415 cpsw_ale_set_vlan_member_list(ale_entry, port);
417 if (idx < 0)
418 idx = cpsw_ale_match_free(ale);
419 if (idx < 0)
420 idx = cpsw_ale_find_ageable(ale);
421 if (idx < 0)
422 return -ENOMEM;
424 cpsw_ale_write(ale, idx, ale_entry);
425 return 0;
428 int cpsw_ale_del_vlan(struct cpsw_ale *ale, u16 vid, int port_mask)
430 u32 ale_entry[ALE_ENTRY_WORDS] = {0, 0, 0};
431 int idx;
433 idx = cpsw_ale_match_vlan(ale, vid);
434 if (idx < 0)
435 return -ENOENT;
437 cpsw_ale_read(ale, idx, ale_entry);
439 if (port_mask)
440 cpsw_ale_set_vlan_member_list(ale_entry, port_mask);
441 else
442 cpsw_ale_set_entry_type(ale_entry, ALE_TYPE_FREE);
444 cpsw_ale_write(ale, idx, ale_entry);
445 return 0;
448 struct ale_control_info {
449 const char *name;
450 int offset, port_offset;
451 int shift, port_shift;
452 int bits;
455 static const struct ale_control_info ale_controls[ALE_NUM_CONTROLS] = {
456 [ALE_ENABLE] = {
457 .name = "enable",
458 .offset = ALE_CONTROL,
459 .port_offset = 0,
460 .shift = 31,
461 .port_shift = 0,
462 .bits = 1,
464 [ALE_CLEAR] = {
465 .name = "clear",
466 .offset = ALE_CONTROL,
467 .port_offset = 0,
468 .shift = 30,
469 .port_shift = 0,
470 .bits = 1,
472 [ALE_AGEOUT] = {
473 .name = "ageout",
474 .offset = ALE_CONTROL,
475 .port_offset = 0,
476 .shift = 29,
477 .port_shift = 0,
478 .bits = 1,
480 [ALE_P0_UNI_FLOOD] = {
481 .name = "port0_unicast_flood",
482 .offset = ALE_CONTROL,
483 .port_offset = 0,
484 .shift = 8,
485 .port_shift = 0,
486 .bits = 1,
488 [ALE_VLAN_NOLEARN] = {
489 .name = "vlan_nolearn",
490 .offset = ALE_CONTROL,
491 .port_offset = 0,
492 .shift = 7,
493 .port_shift = 0,
494 .bits = 1,
496 [ALE_NO_PORT_VLAN] = {
497 .name = "no_port_vlan",
498 .offset = ALE_CONTROL,
499 .port_offset = 0,
500 .shift = 6,
501 .port_shift = 0,
502 .bits = 1,
504 [ALE_OUI_DENY] = {
505 .name = "oui_deny",
506 .offset = ALE_CONTROL,
507 .port_offset = 0,
508 .shift = 5,
509 .port_shift = 0,
510 .bits = 1,
512 [ALE_BYPASS] = {
513 .name = "bypass",
514 .offset = ALE_CONTROL,
515 .port_offset = 0,
516 .shift = 4,
517 .port_shift = 0,
518 .bits = 1,
520 [ALE_RATE_LIMIT_TX] = {
521 .name = "rate_limit_tx",
522 .offset = ALE_CONTROL,
523 .port_offset = 0,
524 .shift = 3,
525 .port_shift = 0,
526 .bits = 1,
528 [ALE_VLAN_AWARE] = {
529 .name = "vlan_aware",
530 .offset = ALE_CONTROL,
531 .port_offset = 0,
532 .shift = 2,
533 .port_shift = 0,
534 .bits = 1,
536 [ALE_AUTH_ENABLE] = {
537 .name = "auth_enable",
538 .offset = ALE_CONTROL,
539 .port_offset = 0,
540 .shift = 1,
541 .port_shift = 0,
542 .bits = 1,
544 [ALE_RATE_LIMIT] = {
545 .name = "rate_limit",
546 .offset = ALE_CONTROL,
547 .port_offset = 0,
548 .shift = 0,
549 .port_shift = 0,
550 .bits = 1,
552 [ALE_PORT_STATE] = {
553 .name = "port_state",
554 .offset = ALE_PORTCTL,
555 .port_offset = 4,
556 .shift = 0,
557 .port_shift = 0,
558 .bits = 2,
560 [ALE_PORT_DROP_UNTAGGED] = {
561 .name = "drop_untagged",
562 .offset = ALE_PORTCTL,
563 .port_offset = 4,
564 .shift = 2,
565 .port_shift = 0,
566 .bits = 1,
568 [ALE_PORT_DROP_UNKNOWN_VLAN] = {
569 .name = "drop_unknown",
570 .offset = ALE_PORTCTL,
571 .port_offset = 4,
572 .shift = 3,
573 .port_shift = 0,
574 .bits = 1,
576 [ALE_PORT_NOLEARN] = {
577 .name = "nolearn",
578 .offset = ALE_PORTCTL,
579 .port_offset = 4,
580 .shift = 4,
581 .port_shift = 0,
582 .bits = 1,
584 [ALE_PORT_NO_SA_UPDATE] = {
585 .name = "no_source_update",
586 .offset = ALE_PORTCTL,
587 .port_offset = 4,
588 .shift = 5,
589 .port_shift = 0,
590 .bits = 1,
592 [ALE_PORT_MCAST_LIMIT] = {
593 .name = "mcast_limit",
594 .offset = ALE_PORTCTL,
595 .port_offset = 4,
596 .shift = 16,
597 .port_shift = 0,
598 .bits = 8,
600 [ALE_PORT_BCAST_LIMIT] = {
601 .name = "bcast_limit",
602 .offset = ALE_PORTCTL,
603 .port_offset = 4,
604 .shift = 24,
605 .port_shift = 0,
606 .bits = 8,
608 [ALE_PORT_UNKNOWN_VLAN_MEMBER] = {
609 .name = "unknown_vlan_member",
610 .offset = ALE_UNKNOWNVLAN,
611 .port_offset = 0,
612 .shift = 0,
613 .port_shift = 0,
614 .bits = 6,
616 [ALE_PORT_UNKNOWN_MCAST_FLOOD] = {
617 .name = "unknown_mcast_flood",
618 .offset = ALE_UNKNOWNVLAN,
619 .port_offset = 0,
620 .shift = 8,
621 .port_shift = 0,
622 .bits = 6,
624 [ALE_PORT_UNKNOWN_REG_MCAST_FLOOD] = {
625 .name = "unknown_reg_flood",
626 .offset = ALE_UNKNOWNVLAN,
627 .port_offset = 0,
628 .shift = 16,
629 .port_shift = 0,
630 .bits = 6,
632 [ALE_PORT_UNTAGGED_EGRESS] = {
633 .name = "untagged_egress",
634 .offset = ALE_UNKNOWNVLAN,
635 .port_offset = 0,
636 .shift = 24,
637 .port_shift = 0,
638 .bits = 6,
642 int cpsw_ale_control_set(struct cpsw_ale *ale, int port, int control,
643 int value)
645 const struct ale_control_info *info;
646 int offset, shift;
647 u32 tmp, mask;
649 if (control < 0 || control >= ARRAY_SIZE(ale_controls))
650 return -EINVAL;
652 info = &ale_controls[control];
653 if (info->port_offset == 0 && info->port_shift == 0)
654 port = 0; /* global, port is a dont care */
656 if (port < 0 || port > ale->params.ale_ports)
657 return -EINVAL;
659 mask = BITMASK(info->bits);
660 if (value & ~mask)
661 return -EINVAL;
663 offset = info->offset + (port * info->port_offset);
664 shift = info->shift + (port * info->port_shift);
666 tmp = __raw_readl(ale->params.ale_regs + offset);
667 tmp = (tmp & ~(mask << shift)) | (value << shift);
668 __raw_writel(tmp, ale->params.ale_regs + offset);
670 return 0;
673 int cpsw_ale_control_get(struct cpsw_ale *ale, int port, int control)
675 const struct ale_control_info *info;
676 int offset, shift;
677 u32 tmp;
679 if (control < 0 || control >= ARRAY_SIZE(ale_controls))
680 return -EINVAL;
682 info = &ale_controls[control];
683 if (info->port_offset == 0 && info->port_shift == 0)
684 port = 0; /* global, port is a dont care */
686 if (port < 0 || port > ale->params.ale_ports)
687 return -EINVAL;
689 offset = info->offset + (port * info->port_offset);
690 shift = info->shift + (port * info->port_shift);
692 tmp = __raw_readl(ale->params.ale_regs + offset) >> shift;
693 return tmp & BITMASK(info->bits);
696 static void cpsw_ale_timer(unsigned long arg)
698 struct cpsw_ale *ale = (struct cpsw_ale *)arg;
700 cpsw_ale_control_set(ale, 0, ALE_AGEOUT, 1);
702 if (ale->ageout) {
703 ale->timer.expires = jiffies + ale->ageout;
704 add_timer(&ale->timer);
708 int cpsw_ale_set_ageout(struct cpsw_ale *ale, int ageout)
710 del_timer_sync(&ale->timer);
711 ale->ageout = ageout * HZ;
712 if (ale->ageout) {
713 ale->timer.expires = jiffies + ale->ageout;
714 add_timer(&ale->timer);
716 return 0;
719 void cpsw_ale_start(struct cpsw_ale *ale)
721 u32 rev;
723 rev = __raw_readl(ale->params.ale_regs + ALE_IDVER);
724 dev_dbg(ale->params.dev, "initialized cpsw ale revision %d.%d\n",
725 ALE_VERSION_MAJOR(rev), ALE_VERSION_MINOR(rev));
726 cpsw_ale_control_set(ale, 0, ALE_ENABLE, 1);
727 cpsw_ale_control_set(ale, 0, ALE_CLEAR, 1);
729 init_timer(&ale->timer);
730 ale->timer.data = (unsigned long)ale;
731 ale->timer.function = cpsw_ale_timer;
732 if (ale->ageout) {
733 ale->timer.expires = jiffies + ale->ageout;
734 add_timer(&ale->timer);
738 void cpsw_ale_stop(struct cpsw_ale *ale)
740 del_timer_sync(&ale->timer);
743 struct cpsw_ale *cpsw_ale_create(struct cpsw_ale_params *params)
745 struct cpsw_ale *ale;
747 ale = kzalloc(sizeof(*ale), GFP_KERNEL);
748 if (!ale)
749 return NULL;
751 ale->params = *params;
752 ale->ageout = ale->params.ale_ageout * HZ;
754 return ale;
757 int cpsw_ale_destroy(struct cpsw_ale *ale)
759 if (!ale)
760 return -EINVAL;
761 cpsw_ale_stop(ale);
762 cpsw_ale_control_set(ale, 0, ALE_ENABLE, 0);
763 kfree(ale);
764 return 0;