blob: e417e4b2dc52272541ff4a6ca92cb372c0c545e8 [file] [log] [blame]
Yi Tsengbe342052017-11-03 10:21:23 -07001/*
2 * Copyright 2017-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <core.p4>
18#include <v1model.p4>
19
20#include "include/control/filtering.p4"
21#include "include/control/forwarding.p4"
22#include "include/control/next.p4"
23#include "include/control/packetio.p4"
24#include "include/control/port_counter.p4"
25#include "include/header.p4"
26#include "include/checksum.p4"
27#include "include/parser.p4"
28
29control FabricIngress (
30inout parsed_headers_t hdr,
31inout fabric_metadata_t fabric_metadata,
32inout standard_metadata_t standard_metadata) {
33 PacketIoIngress() packet_io_ingress;
34 Filtering() filtering;
35 Forwarding() forwarding;
36 Next() next;
37 PortCountersControl() port_counters_control;
38
39 apply {
40 packet_io_ingress.apply(hdr, fabric_metadata, standard_metadata);
41 filtering.apply(hdr, fabric_metadata, standard_metadata);
42 forwarding.apply(hdr, fabric_metadata, standard_metadata);
43 next.apply(hdr, fabric_metadata, standard_metadata);
44 port_counters_control.apply(hdr, fabric_metadata, standard_metadata);
45 }
46}
47
48control FabricEgress (inout parsed_headers_t hdr,
49 inout fabric_metadata_t fabric_metadata,
50 inout standard_metadata_t standard_metadata) {
51 PacketIoEgress() pktIoEgress;
52 EgressNextControl() egress_next;
53 apply {
54 egress_next.apply(hdr, fabric_metadata, standard_metadata);
55 pktIoEgress.apply(hdr, fabric_metadata, standard_metadata);
56 }
57}
58
59V1Switch(
60 FabricParser(),
61 FabricVerifyChecksum(),
62 FabricIngress(),
63 FabricEgress(),
64 FabricComputeChecksum(),
65 FabricDeparser()
66) main;