blob: f9c648e3eb4d406d81ac5108b41d9b9f08be825e [file] [log] [blame]
alshabib77b88482015-04-07 15:47:50 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2015 Open Networking Laboratory
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<drivers>
Saurav Dase3274c82015-05-24 17:21:56 -070018 <driver name="default"
19 manufacturer="ON.Lab" hwVersion="0.0.1" swVersion="0.0.1">
alshabib77b88482015-04-07 15:47:50 -070020 <behaviour api="org.onosproject.net.behaviour.Pipeliner"
21 impl="org.onosproject.driver.pipeline.DefaultSingleTablePipeline"/>
alshabibb452fd72015-04-22 20:46:20 -070022 <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver"
Madan Jampani1b8ea342015-05-27 17:22:59 -070023 impl="org.onosproject.driver.handshaker.DefaultSwitchHandshaker"/>
alshabib77b88482015-04-07 15:47:50 -070024 </driver>
Saurav Dase3274c82015-05-24 17:21:56 -070025 <driver name="ovs" extends="default"
26 manufacturer="Nicira, Inc\." hwVersion="Open vSwitch" swVersion="2\..*">
Thomas Vachuskae9002d02015-05-21 09:50:09 -070027 <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver"
Madan Jampani1b8ea342015-05-27 17:22:59 -070028 impl="org.onosproject.driver.handshaker.NiciraSwitchHandshaker"/>
Thomas Vachuskae9002d02015-05-21 09:50:09 -070029 </driver>
30 <driver name="ovs-corsa" extends="ovs"
Saurav Dasc39f6032015-05-14 17:12:47 -070031 manufacturer="Corsa" hwVersion="emulation" swVersion="0.0.0">
alshabibaebe7752015-04-07 17:45:42 -070032 <behaviour api="org.onosproject.net.behaviour.Pipeliner"
33 impl="org.onosproject.driver.pipeline.OVSCorsaPipeline"/>
34 </driver>
Thomas Vachuskaecc614d2015-05-11 08:57:56 -070035 <driver name="spring-open-cpqd" extends="default"
Saurav Dasdecd7a62015-05-16 22:39:47 -070036 manufacturer="Stanford University, Ericsson Research and CPqD Research"
37 hwVersion="OpenFlow 1.3 Reference Userspace Switch" swVersion=".*">
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -070038 <behaviour api="org.onosproject.net.behaviour.Pipeliner"
39 impl="org.onosproject.driver.pipeline.SpringOpenTTP"/>
40 </driver>
Thomas Vachuskaecc614d2015-05-11 08:57:56 -070041 <driver name="spring-open" extends="default"
Saurav Dasdecd7a62015-05-16 22:39:47 -070042 manufacturer="Dell " hwVersion="OpenFlow switch HW ver. 1.0"
43 swVersion="OpenFlow switch SW ver. 1.0 and 1.3">
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -070044 <behaviour api="org.onosproject.net.behaviour.Pipeliner"
45 impl="org.onosproject.driver.pipeline.SpringOpenTTPDell"/>
46 </driver>
Thomas Vachuskaecc614d2015-05-11 08:57:56 -070047 <driver name="linc-oe" extends="default"
Saurav Dasdecd7a62015-05-16 22:39:47 -070048 manufacturer="FlowForwarding.org" hwVersion="Unknown"
49 swVersion="LINC-OE OpenFlow Software Switch 1.1">
alshabibb452fd72015-04-22 20:46:20 -070050 <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver"
51 impl="org.onosproject.driver.handshaker.OFOpticalSwitchImplLINC13"/>
52 </driver>
Saurav Dase3274c82015-05-24 17:21:56 -070053 <driver name="corsa"
54 manufacturer="Corsa" hwVersion="Corsa Element" swVersion="2.3.1">
alshabibb452fd72015-04-22 20:46:20 -070055 <behaviour api="org.onosproject.net.behaviour.Pipeliner"
Saurav Dasd8b97002015-05-14 23:42:49 -070056 impl="org.onosproject.driver.pipeline.CorsaPipeline"/>
alshabibb452fd72015-04-22 20:46:20 -070057 <behaviour api="org.onosproject.openflow.controller.driver.OpenFlowSwitchDriver"
Madan Jampani1b8ea342015-05-27 17:22:59 -070058 impl="org.onosproject.driver.handshaker.CorsaSwitchHandshaker"/>
alshabibb452fd72015-04-22 20:46:20 -070059 </driver>
Thomas Vachuskaecc614d2015-05-11 08:57:56 -070060 <driver name="ofdpa" extends="default"
Saurav Das88329902015-05-27 23:22:32 -070061 manufacturer="Broadcom Corp." hwVersion="OF-DPA 2.0-EA1" swVersion="OF-DPA 2.0-EA1">
Saurav Das100e3b82015-04-30 11:12:10 -070062 <behaviour api="org.onosproject.net.behaviour.Pipeliner"
63 impl="org.onosproject.driver.pipeline.OFDPA1Pipeline"/>
64 </driver>
Saurav Dasdecd7a62015-05-16 22:39:47 -070065 <!-- The SoftRouter driver is meant to be used by any software/NPU based
Saurav Das558afec2015-05-31 17:12:48 -070066 ~ switch that wishes to implement a simple 2-table router. To use this
67 ~ driver, configure ONOS with the dpid of the device, or extend the
68 ~ driver declaration with the manufacturer/hwVersion/swVersion of the
69 ~ device (see 'noviflow' example).
Saurav Dasdecd7a62015-05-16 22:39:47 -070070 -->
71 <driver name="softrouter" extends="default"
72 manufacturer="Various" hwVersion="various" swVersion="0.0.0">
73 <behaviour api="org.onosproject.net.behaviour.Pipeliner"
74 impl="org.onosproject.driver.pipeline.SoftRouterPipeline"/>
75 </driver>
Saurav Dase3274c82015-05-24 17:21:56 -070076 <driver name="centec-V350" extends="default"
77 manufacturer=".*Centec.*" hwVersion=".*" swVersion="3.1.*">
78 <behaviour api="org.onosproject.net.behaviour.Pipeliner"
79 impl="org.onosproject.driver.pipeline.CentecV350Pipeline"/>
80 </driver>
81 <driver name="pica" extends="default"
82 manufacturer="Pica8, Inc." hwVersion="ly2" swVersion="PicOS 2.6">
83 <behaviour api="org.onosproject.net.behaviour.Pipeliner"
84 impl="org.onosproject.driver.pipeline.PicaPipeline"/>
85 </driver>
Saurav Das6c44a632015-05-30 22:05:22 -070086 <driver name="noviflow" extends="softrouter"
87 manufacturer="NoviFlow Inc" hwVersion="NS1132" swVersion="NW250.4.4">
88 </driver>
Saurav Das558afec2015-05-31 17:12:48 -070089 <!-- Emulation of the ofdpa pipeline using a CPqD OF 1.3 software switch.
90 ~ To use this driver, configure ONOS with the dpid of the device.
91 -->
92 <driver name="ofdpa-cpqd" extends="default"
93 manufacturer="ONF"
94 hwVersion="OF1.3 Software Switch from CPqD" swVersion="for Group Chaining">
95 <behaviour api="org.onosproject.net.behaviour.Pipeliner"
96 impl="org.onosproject.driver.pipeline.CpqdOFDPA1Pipeline"/>
97 </driver>
Srikanth Vavilapallif5b234a2015-04-21 13:04:13 -070098</drivers>
alshabibb452fd72015-04-22 20:46:20 -070099