| /* |
| * Copyright (c) 2012, 2019, The Linux Foundation. All rights reserved. |
| * Permission to use, copy, modify, and/or distribute this software for |
| * any purpose with or without fee is hereby granted, provided that the |
| * above copyright notice and this permission notice appear in all copies. |
| * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
| * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT |
| * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| */ |
| |
| |
| /*qca808x_start*/ |
| #ifndef _HSL_DEV_H |
| #define _HSL_DEV_H |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif /* __cplusplus */ |
| |
| #include "hsl_api.h" |
| #include "ssdk_init.h" |
| |
| #define HSL_DEV_ID_CHECK(dev_id) \ |
| do { \ |
| if (dev_id >= SW_MAX_NR_DEV) \ |
| return SW_OUT_OF_RANGE; \ |
| } while (0) |
| |
| #define HSL_PORT_ID_CHECK(port_id) \ |
| do { \ |
| if (port_id >= SW_MAX_NR_PORT) \ |
| return SW_OUT_OF_RANGE; \ |
| } while (0) |
| |
| typedef struct |
| { |
| a_uint32_t dev_id; |
| a_uint8_t cpu_port_nr; |
| a_uint8_t nr_ports; |
| a_uint8_t nr_phy; |
| a_uint8_t nr_queue; |
| a_uint16_t nr_vlans; |
| a_bool_t hw_vlan_query; |
| hsl_acl_func_t acl_func; |
| hsl_init_mode cpu_mode; |
| a_uint32_t wan_bmp; |
| } hsl_dev_t; |
| |
| hsl_dev_t *hsl_dev_ptr_get(a_uint32_t dev_id); |
| /*qca808x_end*/ |
| hsl_acl_func_t *hsl_acl_ptr_get(a_uint32_t dev_id); |
| /*qca808x_start*/ |
| sw_error_t |
| hsl_dev_init(a_uint32_t dev_id, ssdk_init_cfg * cfg); |
| |
| sw_error_t |
| hsl_dev_cleanup(void); |
| |
| /*qca808x_end*/ |
| sw_error_t |
| hsl_ssdk_cfg(a_uint32_t dev_id, ssdk_cfg_t *ssdk_cfg); |
| |
| sw_error_t |
| hsl_access_mode_set(a_uint32_t dev_id, hsl_access_mode reg_mode); |
| |
| a_uint32_t hsl_dev_inner_ports_get(a_uint32_t dev_id); |
| |
| /*qca808x_start*/ |
| #ifdef __cplusplus |
| } |
| #endif /* __cplusplus */ |
| #endif /* _HSL_DEV_H */ |
| /*qca808x_end*/ |
| |