Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 1 | // Copyright 2013, Big Switch Networks, Inc. |
| 2 | // |
Dan Talayco | f76f711 | 2013-05-19 23:32:12 -0700 | [diff] [blame] | 3 | // LoxiGen is licensed under the Eclipse Public License, |
Dan Talayco | ba50672 | 2013-05-21 14:33:33 -0700 | [diff] [blame] | 4 | // version 1.0 (EPL), with the following special exception: |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 5 | // |
| 6 | // LOXI Exception |
| 7 | // |
Dan Talayco | f76f711 | 2013-05-19 23:32:12 -0700 | [diff] [blame] | 8 | // As a special exception to the terms of the EPL, you may |
| 9 | // distribute libraries generated by LoxiGen (LoxiGen Libraries) |
| 10 | // under the terms of your choice, provided that copyright and |
| 11 | // licensing notices generated by LoxiGen are not altered or removed |
| 12 | // from the LoxiGen Libraries and the notice provided below is (i) |
| 13 | // included in the LoxiGen Libraries, if distributed in source code |
| 14 | // form and (ii) included in any documentation for the LoxiGen |
| 15 | // Libraries, if distributed in binary form. |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 16 | // |
Dan Talayco | f76f711 | 2013-05-19 23:32:12 -0700 | [diff] [blame] | 17 | // Notice: "Copyright 2013, Big Switch Networks, Inc. |
| 18 | // This library was generated by the LoxiGen Compiler." |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 19 | // |
Dan Talayco | f76f711 | 2013-05-19 23:32:12 -0700 | [diff] [blame] | 20 | // You may not use this file except in compliance with the EPL or |
| 21 | // LOXI Exception. You may obtain a copy of the EPL at: |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 22 | // |
| 23 | // http://www.eclipse.org/legal/epl-v10.html |
| 24 | // |
Dan Talayco | f76f711 | 2013-05-19 23:32:12 -0700 | [diff] [blame] | 25 | // Unless required by applicable law or agreed to in writing, |
| 26 | // software distributed under the License is distributed on an "AS |
| 27 | // IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either |
| 28 | // express or implied. See the EPL for the specific language |
| 29 | // governing permissions and limitations under the EPL. |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 30 | |
| 31 | #version any |
| 32 | |
Kiran Poola | 8ecd3f1 | 2013-07-09 17:58:12 -0700 | [diff] [blame] | 33 | enum ofp_bsn_vport_status { |
Kiran Poola | 747339a | 2013-07-09 17:45:22 -0700 | [diff] [blame] | 34 | OF_BSN_VPORT_STATUS_OK = 0, |
| 35 | OF_BSN_VPORT_STATUS_FAILED = 1, |
| 36 | }; |
| 37 | |
Dan Talayco | 78654ff | 2013-05-24 11:41:55 -0700 | [diff] [blame] | 38 | // When the ingress or egress VID has this value, no outer tag should be used. |
| 39 | // In this case, the corresponding TPID is ignored. |
| 40 | |
Andreas Wundsam | 4ee5146 | 2013-07-30 11:00:37 -0700 | [diff] [blame] | 41 | enum ofp_bsn_vport_q_in_q_untagged(wire_type=uint16_t, complete=False) { |
Dan Talayco | 78654ff | 2013-05-24 11:41:55 -0700 | [diff] [blame] | 42 | OF_BSN_VPORT_Q_IN_Q_UNTAGGED = 0xffff, |
| 43 | }; |
| 44 | |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 45 | // BSN Virtual port object header |
| 46 | // FIXME For now, inheritance is not exercised. See below. |
Rich Lane | d071467 | 2013-05-29 14:22:35 -0700 | [diff] [blame] | 47 | struct of_bsn_vport { |
Andreas Wundsam | 70411bf | 2013-08-02 22:26:38 -0700 | [diff] [blame] | 48 | uint16_t type == ?; /* Discriminate virtual port type */ |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 49 | uint16_t length; /* Length in bytes of this structure with this header */ |
| 50 | /* Remainder of data is specific to the port type */ |
| 51 | }; |
| 52 | |
| 53 | |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 54 | // Q-in-Q virtual port specification |
| 55 | |
Rich Lane | e9c37db | 2013-06-21 18:30:24 -0700 | [diff] [blame] | 56 | struct of_bsn_vport_q_in_q : of_bsn_vport { |
Rich Lane | d071467 | 2013-05-29 14:22:35 -0700 | [diff] [blame] | 57 | uint16_t type == 0; |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 58 | uint16_t length; /* 16 */ |
| 59 | uint32_t port_no; /* OF port number of parent; usually phys port */ |
| 60 | uint16_t ingress_tpid; |
| 61 | uint16_t ingress_vlan_id; |
| 62 | uint16_t egress_tpid; |
| 63 | uint16_t egress_vlan_id; |
| 64 | }; |
| 65 | |
| 66 | // Request from controller to switch to create vport |
Rich Lane | e9c37db | 2013-06-21 18:30:24 -0700 | [diff] [blame] | 67 | struct of_bsn_virtual_port_create_request : of_bsn_header { |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 68 | uint8_t version; |
Rich Lane | d071467 | 2013-05-29 14:22:35 -0700 | [diff] [blame] | 69 | uint8_t type == 4; |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 70 | uint16_t length; |
| 71 | uint32_t xid; |
Rich Lane | d071467 | 2013-05-29 14:22:35 -0700 | [diff] [blame] | 72 | uint32_t experimenter == 0x5c16c7; |
| 73 | uint32_t subtype == 15; |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 74 | // FIXME This should be an instance of the inheritance superclass |
| 75 | of_bsn_vport_q_in_q_t vport; // Description of vport to create |
| 76 | // Additional data follows depending on header type |
| 77 | }; |
| 78 | |
| 79 | // Reply from switch to controller indicating port number created |
| 80 | // vport_no must be 16 bits to be compatible with 1.0 |
Rich Lane | e9c37db | 2013-06-21 18:30:24 -0700 | [diff] [blame] | 81 | struct of_bsn_virtual_port_create_reply : of_bsn_header { |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 82 | uint8_t version; |
Rich Lane | d071467 | 2013-05-29 14:22:35 -0700 | [diff] [blame] | 83 | uint8_t type == 4; |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 84 | uint16_t length; |
| 85 | uint32_t xid; // Must match create_request |
Rich Lane | d071467 | 2013-05-29 14:22:35 -0700 | [diff] [blame] | 86 | uint32_t experimenter == 0x5c16c7; |
| 87 | uint32_t subtype == 16; |
Dan Talayco | b392f6b | 2013-06-12 10:48:17 -0700 | [diff] [blame] | 88 | uint32_t status; // 0 means success |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 89 | uint32_t vport_no; // The OF port number created. 16-bits for OF 1.0 |
| 90 | }; |
| 91 | |
| 92 | // Request from controller to switch to remove a vport |
Rich Lane | e9c37db | 2013-06-21 18:30:24 -0700 | [diff] [blame] | 93 | struct of_bsn_virtual_port_remove_request : of_bsn_header { |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 94 | uint8_t version; |
Rich Lane | d071467 | 2013-05-29 14:22:35 -0700 | [diff] [blame] | 95 | uint8_t type == 4; |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 96 | uint16_t length; |
| 97 | uint32_t xid; |
Rich Lane | d071467 | 2013-05-29 14:22:35 -0700 | [diff] [blame] | 98 | uint32_t experimenter == 0x5c16c7; |
| 99 | uint32_t subtype == 17; |
Dan Talayco | c0e802e | 2013-05-18 23:52:39 -0700 | [diff] [blame] | 100 | uint32_t vport_no; // The OF port number to be removed |
| 101 | }; |
Dan Talayco | b392f6b | 2013-06-12 10:48:17 -0700 | [diff] [blame] | 102 | |
| 103 | // Request from controller to switch to remove a vport |
Rich Lane | e9c37db | 2013-06-21 18:30:24 -0700 | [diff] [blame] | 104 | struct of_bsn_virtual_port_remove_reply : of_bsn_header { |
Dan Talayco | b392f6b | 2013-06-12 10:48:17 -0700 | [diff] [blame] | 105 | uint8_t version; |
| 106 | uint8_t type == 4; |
| 107 | uint16_t length; |
| 108 | uint32_t xid; // Must match request xid |
| 109 | uint32_t experimenter == 0x5c16c7; |
| 110 | uint32_t subtype == 26; |
| 111 | uint32_t status; // 0 means success |
| 112 | }; |