Arvid Brodin | 70ebe4a | 2014-07-04 23:34:38 +0200 | [diff] [blame] | 1 | /* Copyright 2011-2014 Autronica Fire and Security AS |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify it |
| 4 | * under the terms of the GNU General Public License as published by the Free |
| 5 | * Software Foundation; either version 2 of the License, or (at your option) |
| 6 | * any later version. |
| 7 | * |
| 8 | * Author(s): |
Arvid Brodin | 70ebe4a | 2014-07-04 23:34:38 +0200 | [diff] [blame] | 9 | * 2011-2014 Arvid Brodin, arvid.brodin@alten.se |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 10 | */ |
| 11 | |
Arvid Brodin | 70ebe4a | 2014-07-04 23:34:38 +0200 | [diff] [blame] | 12 | #ifndef __HSR_PRIVATE_H |
| 13 | #define __HSR_PRIVATE_H |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 14 | |
| 15 | #include <linux/netdevice.h> |
| 16 | #include <linux/list.h> |
| 17 | |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 18 | /* Time constants as specified in the HSR specification (IEC-62439-3 2010) |
| 19 | * Table 8. |
| 20 | * All values in milliseconds. |
| 21 | */ |
| 22 | #define HSR_LIFE_CHECK_INTERVAL 2000 /* ms */ |
| 23 | #define HSR_NODE_FORGET_TIME 60000 /* ms */ |
| 24 | #define HSR_ANNOUNCE_INTERVAL 100 /* ms */ |
| 25 | |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 26 | /* By how much may slave1 and slave2 timestamps of latest received frame from |
| 27 | * each node differ before we notify of communication problem? |
| 28 | */ |
| 29 | #define MAX_SLAVE_DIFF 3000 /* ms */ |
Arvid Brodin | f266a68 | 2014-07-04 23:41:03 +0200 | [diff] [blame] | 30 | #define HSR_SEQNR_START (USHRT_MAX - 1024) |
Peter Heise | ee1c279 | 2016-04-13 13:52:22 +0200 | [diff] [blame] | 31 | #define HSR_SUP_SEQNR_START (HSR_SEQNR_START / 2) |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 32 | |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 33 | /* How often shall we check for broken ring and remove node entries older than |
| 34 | * HSR_NODE_FORGET_TIME? |
| 35 | */ |
| 36 | #define PRUNE_PERIOD 3000 /* ms */ |
| 37 | |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 38 | #define HSR_TLV_ANNOUNCE 22 |
| 39 | #define HSR_TLV_LIFE_CHECK 23 |
| 40 | |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 41 | /* HSR Tag. |
| 42 | * As defined in IEC-62439-3:2010, the HSR tag is really { ethertype = 0x88FB, |
| 43 | * path, LSDU_size, sequence Nr }. But we let eth_header() create { h_dest, |
| 44 | * h_source, h_proto = 0x88FB }, and add { path, LSDU_size, sequence Nr, |
| 45 | * encapsulated protocol } instead. |
Arvid Brodin | 70ebe4a | 2014-07-04 23:34:38 +0200 | [diff] [blame] | 46 | * |
| 47 | * Field names as defined in the IEC:2010 standard for HSR. |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 48 | */ |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 49 | struct hsr_tag { |
| 50 | __be16 path_and_LSDU_size; |
| 51 | __be16 sequence_nr; |
| 52 | __be16 encap_proto; |
| 53 | } __packed; |
| 54 | |
Arvid Brodin | 70ebe4a | 2014-07-04 23:34:38 +0200 | [diff] [blame] | 55 | #define HSR_HLEN 6 |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 56 | |
Peter Heise | ee1c279 | 2016-04-13 13:52:22 +0200 | [diff] [blame] | 57 | #define HSR_V1_SUP_LSDUSIZE 52 |
| 58 | |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 59 | /* The helper functions below assumes that 'path' occupies the 4 most |
| 60 | * significant bits of the 16-bit field shared by 'path' and 'LSDU_size' (or |
| 61 | * equivalently, the 4 most significant bits of HSR tag byte 14). |
| 62 | * |
| 63 | * This is unclear in the IEC specification; its definition of MAC addresses |
| 64 | * indicates the spec is written with the least significant bit first (to the |
| 65 | * left). This, however, would mean that the LSDU field would be split in two |
| 66 | * with the path field in-between, which seems strange. I'm guessing the MAC |
| 67 | * address definition is in error. |
| 68 | */ |
| 69 | static inline u16 get_hsr_tag_path(struct hsr_tag *ht) |
| 70 | { |
| 71 | return ntohs(ht->path_and_LSDU_size) >> 12; |
| 72 | } |
| 73 | |
| 74 | static inline u16 get_hsr_tag_LSDU_size(struct hsr_tag *ht) |
| 75 | { |
| 76 | return ntohs(ht->path_and_LSDU_size) & 0x0FFF; |
| 77 | } |
| 78 | |
| 79 | static inline void set_hsr_tag_path(struct hsr_tag *ht, u16 path) |
| 80 | { |
Murali Karicheri | d595b85 | 2019-04-05 13:31:23 -0400 | [diff] [blame] | 81 | ht->path_and_LSDU_size = |
| 82 | htons((ntohs(ht->path_and_LSDU_size) & 0x0FFF) | (path << 12)); |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | static inline void set_hsr_tag_LSDU_size(struct hsr_tag *ht, u16 LSDU_size) |
| 86 | { |
Murali Karicheri | 0525fc0 | 2019-04-05 13:31:27 -0400 | [diff] [blame] | 87 | ht->path_and_LSDU_size = htons((ntohs(ht->path_and_LSDU_size) & |
| 88 | 0xF000) | (LSDU_size & 0x0FFF)); |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | struct hsr_ethhdr { |
| 92 | struct ethhdr ethhdr; |
| 93 | struct hsr_tag hsr_tag; |
| 94 | } __packed; |
| 95 | |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 96 | /* HSR Supervision Frame data types. |
| 97 | * Field names as defined in the IEC:2010 standard for HSR. |
| 98 | */ |
| 99 | struct hsr_sup_tag { |
| 100 | __be16 path_and_HSR_Ver; |
| 101 | __be16 sequence_nr; |
| 102 | __u8 HSR_TLV_Type; |
| 103 | __u8 HSR_TLV_Length; |
| 104 | } __packed; |
| 105 | |
| 106 | struct hsr_sup_payload { |
| 107 | unsigned char MacAddressA[ETH_ALEN]; |
| 108 | } __packed; |
| 109 | |
| 110 | static inline u16 get_hsr_stag_path(struct hsr_sup_tag *hst) |
| 111 | { |
Murali Karicheri | 5fa9677 | 2019-04-05 13:31:29 -0400 | [diff] [blame^] | 112 | return get_hsr_tag_path((struct hsr_tag *)hst); |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | static inline u16 get_hsr_stag_HSR_ver(struct hsr_sup_tag *hst) |
| 116 | { |
Murali Karicheri | 5fa9677 | 2019-04-05 13:31:29 -0400 | [diff] [blame^] | 117 | return get_hsr_tag_LSDU_size((struct hsr_tag *)hst); |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | static inline void set_hsr_stag_path(struct hsr_sup_tag *hst, u16 path) |
| 121 | { |
Murali Karicheri | 5fa9677 | 2019-04-05 13:31:29 -0400 | [diff] [blame^] | 122 | set_hsr_tag_path((struct hsr_tag *)hst, path); |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | static inline void set_hsr_stag_HSR_Ver(struct hsr_sup_tag *hst, u16 HSR_Ver) |
| 126 | { |
Murali Karicheri | 5fa9677 | 2019-04-05 13:31:29 -0400 | [diff] [blame^] | 127 | set_hsr_tag_LSDU_size((struct hsr_tag *)hst, HSR_Ver); |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 128 | } |
| 129 | |
Peter Heise | ee1c279 | 2016-04-13 13:52:22 +0200 | [diff] [blame] | 130 | struct hsrv0_ethhdr_sp { |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 131 | struct ethhdr ethhdr; |
| 132 | struct hsr_sup_tag hsr_sup; |
| 133 | } __packed; |
| 134 | |
Peter Heise | ee1c279 | 2016-04-13 13:52:22 +0200 | [diff] [blame] | 135 | struct hsrv1_ethhdr_sp { |
| 136 | struct ethhdr ethhdr; |
| 137 | struct hsr_tag hsr; |
| 138 | struct hsr_sup_tag hsr_sup; |
| 139 | } __packed; |
| 140 | |
Arvid Brodin | c5a7591 | 2014-07-04 23:38:05 +0200 | [diff] [blame] | 141 | enum hsr_port_type { |
| 142 | HSR_PT_NONE = 0, /* Must be 0, used by framereg */ |
| 143 | HSR_PT_SLAVE_A, |
| 144 | HSR_PT_SLAVE_B, |
| 145 | HSR_PT_INTERLINK, |
| 146 | HSR_PT_MASTER, |
| 147 | HSR_PT_PORTS, /* This must be the last item in the enum */ |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 148 | }; |
Arvid Brodin | c5a7591 | 2014-07-04 23:38:05 +0200 | [diff] [blame] | 149 | |
| 150 | struct hsr_port { |
| 151 | struct list_head port_list; |
| 152 | struct net_device *dev; |
| 153 | struct hsr_priv *hsr; |
| 154 | enum hsr_port_type type; |
| 155 | }; |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 156 | |
| 157 | struct hsr_priv { |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 158 | struct rcu_head rcu_head; |
Arvid Brodin | c5a7591 | 2014-07-04 23:38:05 +0200 | [diff] [blame] | 159 | struct list_head ports; |
Arvid Brodin | f266a68 | 2014-07-04 23:41:03 +0200 | [diff] [blame] | 160 | struct list_head node_db; /* Known HSR nodes */ |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 161 | struct list_head self_node_db; /* MACs of slaves */ |
| 162 | struct timer_list announce_timer; /* Supervision frame dispatch */ |
Arvid Brodin | abff716 | 2014-07-04 23:35:47 +0200 | [diff] [blame] | 163 | struct timer_list prune_timer; |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 164 | int announce_count; |
| 165 | u16 sequence_nr; |
Murali Karicheri | d595b85 | 2019-04-05 13:31:23 -0400 | [diff] [blame] | 166 | u16 sup_sequence_nr; /* For HSRv1 separate seq_nr for supervision */ |
| 167 | u8 protVersion; /* Indicate if HSRv0 or HSRv1. */ |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 168 | spinlock_t seqnr_lock; /* locking for sequence_nr */ |
| 169 | unsigned char sup_multicast_addr[ETH_ALEN]; |
| 170 | }; |
| 171 | |
Arvid Brodin | f266a68 | 2014-07-04 23:41:03 +0200 | [diff] [blame] | 172 | #define hsr_for_each_port(hsr, port) \ |
| 173 | list_for_each_entry_rcu((port), &(hsr)->ports, port_list) |
| 174 | |
Arvid Brodin | c5a7591 | 2014-07-04 23:38:05 +0200 | [diff] [blame] | 175 | struct hsr_port *hsr_port_get_hsr(struct hsr_priv *hsr, enum hsr_port_type pt); |
Arvid Brodin | f421436 | 2013-10-30 21:10:47 +0100 | [diff] [blame] | 176 | |
Arvid Brodin | f266a68 | 2014-07-04 23:41:03 +0200 | [diff] [blame] | 177 | /* Caller must ensure skb is a valid HSR frame */ |
| 178 | static inline u16 hsr_get_skb_sequence_nr(struct sk_buff *skb) |
| 179 | { |
| 180 | struct hsr_ethhdr *hsr_ethhdr; |
| 181 | |
Murali Karicheri | 5fa9677 | 2019-04-05 13:31:29 -0400 | [diff] [blame^] | 182 | hsr_ethhdr = (struct hsr_ethhdr *)skb_mac_header(skb); |
Arvid Brodin | f266a68 | 2014-07-04 23:41:03 +0200 | [diff] [blame] | 183 | return ntohs(hsr_ethhdr->hsr_tag.sequence_nr); |
| 184 | } |
| 185 | |
Arvid Brodin | 70ebe4a | 2014-07-04 23:34:38 +0200 | [diff] [blame] | 186 | #endif /* __HSR_PRIVATE_H */ |