remove trailing whitespaces
[dpdk.git] / lib / librte_kni / rte_kni.h
index 375e882..1a0b004 100644 (file)
@@ -1,13 +1,13 @@
 /*-
  *   BSD LICENSE
- * 
- *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
+ *
+ *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
  *   All rights reserved.
- * 
+ *
  *   Redistribution and use in source and binary forms, with or without
  *   modification, are permitted provided that the following conditions
  *   are met:
- * 
+ *
  *     * Redistributions of source code must retain the above copyright
  *       notice, this list of conditions and the following disclaimer.
  *     * Redistributions in binary form must reproduce the above copyright
@@ -17,7 +17,7 @@
  *     * Neither the name of Intel Corporation nor the names of its
  *       contributors may be used to endorse or promote products derived
  *       from this software without specific prior written permission.
- * 
+ *
  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  * and burst transmit packets to KNI interfaces.
  */
 
+#include <rte_pci.h>
 #include <rte_mbuf.h>
 
+#include <exec-env/rte_kni_common.h>
+
 #ifdef __cplusplus
 extern "C" {
 #endif
@@ -58,6 +61,8 @@ struct rte_kni;
  * Structure which has the function pointers for KNI interface.
  */
 struct rte_kni_ops {
+       uint8_t port_id; /* Port ID */
+
        /* Pointer to function of changing MTU */
        int (*change_mtu)(uint8_t port_id, unsigned new_mtu);
 
@@ -66,32 +71,76 @@ struct rte_kni_ops {
 };
 
 /**
- * Create kni interface according to the port id. It will create a paired KNI
- * interface in the kernel space for each NIC port. The KNI interface created
+ * Structure for configuring KNI device.
+ */
+struct rte_kni_conf {
+       /*
+        * KNI name which will be used in relevant network device.
+        * Let the name as short as possible, as it will be part of
+        * memzone name.
+        */
+       char name[RTE_KNI_NAMESIZE];
+       uint32_t core_id;   /* Core ID to bind kernel thread on */
+       uint16_t group_id;  /* Group ID */
+       unsigned mbuf_size; /* mbuf size */
+       struct rte_pci_addr addr;
+       struct rte_pci_id id;
+
+       uint8_t force_bind : 1; /* Flag to bind kernel thread */
+};
+
+/**
+ * Allocate KNI interface according to the port id, mbuf size, mbuf pool,
+ * configurations and callbacks for kernel requests.The KNI interface created
  * in the kernel space is the net interface the traditional Linux application
  * talking to.
  *
- * @param port_id
- *  The port id.
  * @param pktmbuf_pool
  *  The mempool for allocting mbufs for packets.
+ * @param conf
+ *  The pointer to the configurations of the KNI device.
+ * @param ops
+ *  The pointer to the callbacks for the KNI kernel requests.
+ *
+ * @return
+ *  - The pointer to the context of a KNI interface.
+ *  - NULL indicate error.
+ */
+extern struct rte_kni *rte_kni_alloc(struct rte_mempool *pktmbuf_pool,
+                                    const struct rte_kni_conf *conf,
+                                    struct rte_kni_ops *ops);
+
+/**
+ * It create a KNI device for specific port.
+ *
+ * Note: It is deprecated and just for backward compatibility.
+ *
+ * @param port_id
+ *  Port ID.
  * @param mbuf_size
- *  The mbuf size to store a packet.
+ *  mbuf size.
+ * @param pktmbuf_pool
+ *  The mempool for allocting mbufs for packets.
+ * @param ops
+ *  The pointer to the callbacks for the KNI kernel requests.
  *
  * @return
- *  - The pointer to the context of a kni interface.
+ *  - The pointer to the context of a KNI interface.
  *  - NULL indicate error.
  */
-extern struct rte_kni *rte_kni_create(uint8_t port_id, unsigned mbuf_size,
-               struct rte_mempool *pktmbuf_pool, struct rte_kni_ops *ops);
+extern struct rte_kni *rte_kni_create(uint8_t port_id,
+                                     unsigned mbuf_size,
+                                     struct rte_mempool *pktmbuf_pool,
+                                     struct rte_kni_ops *ops) \
+                                     __attribute__ ((deprecated));
 
 /**
- * Release kni interface according to the context. It will also release the
- * paired KNI interface in kernel space. All processing on the specific kni
+ * Release KNI interface according to the context. It will also release the
+ * paired KNI interface in kernel space. All processing on the specific KNI
  * context need to be stopped before calling this interface.
  *
  * @param kni
- *  The pointer to the context of an existant kni interface.
+ *  The pointer to the context of an existent KNI interface.
  *
  * @return
  *  - 0 indicates success.
@@ -100,12 +149,12 @@ extern struct rte_kni *rte_kni_create(uint8_t port_id, unsigned mbuf_size,
 extern int rte_kni_release(struct rte_kni *kni);
 
 /**
- * It is used to handle the request mbufs sent from kernel space. 
+ * It is used to handle the request mbufs sent from kernel space.
  * Then analyzes it and calls the specific actions for the specific requests.
  * Finally constructs the response mbuf and puts it back to the resp_q.
  *
  * @param kni
- *  The pointer to the context of an existant kni interface.
+ *  The pointer to the context of an existent KNI interface.
  *
  * @return
  *  - 0
@@ -114,13 +163,13 @@ extern int rte_kni_release(struct rte_kni *kni);
 extern int rte_kni_handle_request(struct rte_kni *kni);
 
 /**
- * Retrieve a burst of packets from a kni interface. The retrieved packets are
+ * Retrieve a burst of packets from a KNI interface. The retrieved packets are
  * stored in rte_mbuf structures whose pointers are supplied in the array of
  * mbufs, and the maximum number is indicated by num. It handles the freeing of
- * the mbufs in the free queue of kni interface.
+ * the mbufs in the free queue of KNI interface.
  *
  * @param kni
- *  The kni interface context.
+ *  The KNI interface context.
  * @param mbufs
  *  The array to store the pointers of mbufs.
  * @param num
@@ -133,13 +182,13 @@ extern unsigned rte_kni_rx_burst(struct rte_kni *kni,
                struct rte_mbuf **mbufs, unsigned num);
 
 /**
- * Send a burst of packets to a kni interface. The packets to be sent out are
+ * Send a burst of packets to a KNI interface. The packets to be sent out are
  * stored in rte_mbuf structures whose pointers are supplied in the array of
  * mbufs, and the maximum number is indicated by num. It handles allocating
- * the mbufs for kni interface alloc queue.
+ * the mbufs for KNI interface alloc queue.
  *
  * @param kni
- *  The kni interface context.
+ *  The KNI interface context.
  * @param mbufs
  *  The array to store the pointers of mbufs.
  * @param num
@@ -152,36 +201,54 @@ extern unsigned rte_kni_tx_burst(struct rte_kni *kni,
                struct rte_mbuf **mbufs, unsigned num);
 
 /**
- * Get the port id from kni interface.
+ * Get the port id from KNI interface.
+ *
+ * Note: It is deprecated and just for backward compatibility.
  *
  * @param kni
- *  The kni interface context.
+ *  The KNI interface context.
  *
  * @return
  *  On success: The port id.
  *  On failure: ~0x0
  */
-extern uint8_t rte_kni_get_port_id(struct rte_kni *kni);
+extern uint8_t rte_kni_get_port_id(struct rte_kni *kni) \
+                               __attribute__ ((deprecated));
+
+/**
+ * Get the KNI context of its name.
+ *
+ * @param name
+ *  pointer to the KNI device name.
+ *
+ * @return
+ *  On success: Pointer to KNI interface.
+ *  On failure: NULL.
+ */
+extern struct rte_kni *rte_kni_get(const char *name);
 
 /**
- * Get kni context information of the port.  
+ * Get the KNI context of the specific port.
+ *
+ * Note: It is deprecated and just for backward compatibility.
  *
- * @port_id
+ * @param port_id
  *  the port id.
  *
- * @return 
- *  On success: Pointer to kni interface.
+ * @return
+ *  On success: Pointer to KNI interface.
  *  On failure: NULL
  */
-extern struct rte_kni * rte_kni_info_get(uint8_t port_id);
+extern struct rte_kni *rte_kni_info_get(uint8_t port_id) \
+                               __attribute__ ((deprecated));
 
 /**
- * Register kni request handling for a specified port,and it can
+ * Register KNI request handling for a specified port,and it can
  * be called by master process or slave process.
  *
- * @param kni 
+ * @param kni
  *  pointer to struct rte_kni.
- * @param ops 
+ * @param ops
  *  ponter to struct rte_kni_ops.
  *
  * @return
@@ -192,8 +259,8 @@ extern int rte_kni_register_handlers(struct rte_kni *kni,
                        struct rte_kni_ops *ops);
 
 /**
- *  Unregister kni request handling for a specified port.
- * 
+ *  Unregister KNI request handling for a specified port.
+ *
  *  @param kni
  *   pointer to struct rte_kni.
  *
@@ -203,6 +270,16 @@ extern int rte_kni_register_handlers(struct rte_kni *kni,
  */
 extern int rte_kni_unregister_handlers(struct rte_kni *kni);
 
+/**
+ *  close KNI device.
+ *
+ *  @param void
+ *
+ *  @return
+ *   void
+ */
+extern void rte_kni_close(void);
+
 #ifdef __cplusplus
 }
 #endif