1 /* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
2 /*
3  * Copyright (c) 2018 Microsemi Corporation
4  */
5 
6 #define ETH_LEN 6
7 #define MAC_VID 1
8 
9 enum mscc_regs_ana_table {
10 	MSCC_ANA_TABLES_MACHDATA,
11 	MSCC_ANA_TABLES_MACLDATA,
12 	MSCC_ANA_TABLES_MACACCESS,
13 };
14 
15 int mscc_mac_table_add(void __iomem *regs,
16 		       const unsigned long *mscc_mac_table_offset,
17 		       const unsigned char mac[ETH_LEN], int pgid);
18