2018-08-07 02:14:37 -05:00
|
|
|
/*
|
2021-01-28 10:38:47 -06:00
|
|
|
* Copyright 2007-2020 Broadcom Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Permission is granted to use, copy, modify and/or distribute this
|
|
|
|
* software under either one of the licenses below.
|
|
|
|
*
|
|
|
|
* License Option 1: GPL
|
2018-08-07 02:14:37 -05:00
|
|
|
*
|
2018-08-23 14:05:14 -05:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License, version 2, as
|
|
|
|
* published by the Free Software Foundation (the "GPL").
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License version 2 (GPLv2) for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* version 2 (GPLv2) along with this source code.
|
2021-01-28 10:38:47 -06:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* License Option 2: Broadcom Open Network Switch APIs (OpenNSA) license
|
|
|
|
*
|
|
|
|
* This software is governed by the Broadcom Open Network Switch APIs license:
|
|
|
|
* https://www.broadcom.com/products/ethernet-connectivity/software/opennsa
|
2018-08-07 02:14:37 -05:00
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* $Id: ibde.h,v 1.27 Broadcom SDK $
|
|
|
|
* $Copyright: (c) 2005 Broadcom Corp.
|
|
|
|
* All Rights Reserved.$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IBDE_H__
|
|
|
|
#define __IBDE_H__
|
|
|
|
|
|
|
|
#include <sal/types.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Represents a collection of devices
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct ibde_dev_s {
|
|
|
|
uint16 device;
|
|
|
|
uint8 rev;
|
|
|
|
sal_vaddr_t base_address;
|
|
|
|
sal_vaddr_t base_address1;
|
|
|
|
sal_vaddr_t base_address2;
|
2020-10-06 09:58:00 -05:00
|
|
|
/* a unique number representing the specific device.
|
|
|
|
* Must be different for different devices.
|
|
|
|
* May be used to identify specific devices in the system.
|
|
|
|
* May be implemented as a full PCIe address, a persistent configurable user value, ...
|
|
|
|
* Possible implementation value stores in QSPI flash memory of the device. */
|
|
|
|
uint32 dev_unique_id;
|
2018-08-07 02:14:37 -05:00
|
|
|
} ibde_dev_t;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct ibde_s {
|
|
|
|
|
|
|
|
const char *(*name)(void);
|
|
|
|
|
|
|
|
/* Returns the number of devices available */
|
|
|
|
/* Each device is is accessed through a handle */
|
|
|
|
/* Handles are assumed to index the array of devices */
|
|
|
|
|
|
|
|
/* Support SWITCH or ETHERNET or CPU devices */
|
|
|
|
int (*num_devices)(int type);
|
|
|
|
#define BDE_ALL_DEVICES 0
|
|
|
|
#define BDE_SWITCH_DEVICES 1
|
|
|
|
#define BDE_ETHER_DEVICES 2
|
|
|
|
#define BDE_CPU_DEVICES 3
|
|
|
|
|
|
|
|
const ibde_dev_t *(*get_dev)(int d);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get types of underlaying devices.
|
|
|
|
* A combination of bus type and functional type is returned.
|
|
|
|
* In case of bus type, support PCI and SPI device types.
|
|
|
|
* In case of functional type, specify if underlaying device is
|
|
|
|
* a switching or ethernet device.
|
|
|
|
*/
|
|
|
|
uint32 (*get_dev_type)(int d);
|
|
|
|
#define BDE_PCI_DEV_TYPE SAL_PCI_DEV_TYPE /* PCI device */
|
|
|
|
#define BDE_SPI_DEV_TYPE SAL_SPI_DEV_TYPE /* SPI device */
|
|
|
|
#define BDE_EB_DEV_TYPE SAL_EB_DEV_TYPE /* EB device */
|
|
|
|
#define BDE_ICS_DEV_TYPE SAL_ICS_DEV_TYPE /* ICS device */
|
|
|
|
#define BDE_MII_DEV_TYPE SAL_MII_DEV_TYPE /* MII device */
|
|
|
|
#define BDE_I2C_DEV_TYPE SAL_I2C_DEV_TYPE /* I2C device */
|
|
|
|
#define BDE_AXI_DEV_TYPE SAL_AXI_DEV_TYPE /* AXI device */
|
|
|
|
#define BDE_EMMI_DEV_TYPE SAL_EMMI_DEV_TYPE /* EMMI device */
|
[BCMSAI] Update BCMSAI debian to 6.0.0.10 with 6.5.23 SDK, and opennsl module to 6.5.23 (#9046)
Manual verification on switch (TH3 device)
admin@str2-xxxxx-01:~$ bcmcmd bsv
bsv
BRCM SAI ver: [6.0.0.10], OCP SAI ver: [1.9.1], SDK ver: [sdk-6.5.23]
drivshell>
admin@str2-xxxxx-01:~$ bcmcmd version
version
Broadcom Command Monitor: Copyright (c) 1998-2021 Broadcom
Release: sdk-6.5.23 built 20211020 (Wed Oct 20 06:52:58 2021)
From root@fedbbfdbee81:/__w/2/s/output/x86-xgsall-deb/hsdk
Platform: X86
OS: Unix (Posix)
Chips:
BCM56640_A0,
BCM56850_A0,
BCM56340_A0,
BCM56960_A0, BCM56860_A0,
BCM56970_A0, BCM56870_A0,
BCM56980_A0, BCM56980_B0,
BCM56370_A0, BCM56275_A0, BCM56770_A0,
Chips:
BCM56780_A0, BCM56782_A0, BCM56784_A0, BCM56785_A0,
BCM56786_A0, BCM56787_A0, BCM56788_A0, BCM56789_A0,
BCM56880_A0, BCM56880_B0, BCM56881_A0, BCM56881_B0,
BCM56883_A0, BCM56883_B0, BCM56990_A0, BCM56990_B0,
BCM56991_B0, BCM56992_B0, BCM56996_A0, BCM56996_B0,
BCM56997_A0, BCM56997_B0
Variant drivers:
BCM56780_A0_CNA_1_2_10, BCM56780_A0_DNA_2_7_6_0, BCM56880_A0_CNA_1_2_9, BCM56880_A0_DNA_4_9_5_0
PHYs: BCM5400, BCM54182, BCM54185, BCM54180,
BCM54140, BCM54192, BCM54195, BCM54190,
BCM54194, BCM54210, BCM54220, BCM54280,
BCM54282, BCM54240, BCM54285, BCM5428X,
BCM54290, BCM54292, BCM54294, BCM54295,
BCM54296, BCM56160-GPHY, BCM53540-GPHY, BCM56275-GPHY,
BCM8750, BCM8752, BCM8754, BCM84740,
BCM84164, BCM84758, BCM84780, BCM84784,
BCM84318, BCM84328, Sesto, BCM82780,
copper sfp
drivshell>
2021-10-28 02:12:32 -05:00
|
|
|
#define BDE_COMPOSITE_DEV_TYPE SAL_COMPOSITE_DEV_TYPE /* Composite device, composed of sub-devices with buses */
|
|
|
|
#define BDE_USER_DEV_TYPE SAL_USER_DEV_TYPE /* The user implements his own method of access to the device */
|
2018-08-07 02:14:37 -05:00
|
|
|
#define BDE_DEV_BUS_ALT SAL_DEV_BUS_ALT /* Alternate Access */
|
|
|
|
#define BDE_DEV_BUS_MSI SAL_DEV_BUS_MSI /* Message-signaled interrupts */
|
|
|
|
|
|
|
|
#define BDE_DEV_BUS_TYPE_MASK SAL_DEV_BUS_TYPE_MASK
|
|
|
|
|
|
|
|
#define BDE_SWITCH_DEV_TYPE SAL_SWITCH_DEV_TYPE /* Switch device */
|
|
|
|
#define BDE_ETHER_DEV_TYPE SAL_ETHER_DEV_TYPE /* Ethernet device */
|
|
|
|
#define BDE_CPU_DEV_TYPE SAL_CPU_DEV_TYPE /* CPU device */
|
|
|
|
|
|
|
|
#define BDE_BYTE_SWAP 0x01000000 /* SW byte swap */
|
|
|
|
#define BDE_NO_IPROC 0x02000000 /* Device uses two BARs, but is not iProc */
|
|
|
|
|
2018-08-23 14:05:14 -05:00
|
|
|
#define BDE_8MB_REG_SPACE 0x10000000 /* 8MB sized CMIC BAR */
|
2018-08-07 02:14:37 -05:00
|
|
|
#define BDE_256K_REG_SPACE 0x20000000 /* Map 256K (v 64K) */
|
|
|
|
#define BDE_128K_REG_SPACE 0x40000000 /* Map 128K (v 64K) */
|
|
|
|
#define BDE_320K_REG_SPACE 0x80000000 /* Map 256K+64K */
|
|
|
|
|
[BCMSAI] Update BCMSAI debian to 6.0.0.10 with 6.5.23 SDK, and opennsl module to 6.5.23 (#9046)
Manual verification on switch (TH3 device)
admin@str2-xxxxx-01:~$ bcmcmd bsv
bsv
BRCM SAI ver: [6.0.0.10], OCP SAI ver: [1.9.1], SDK ver: [sdk-6.5.23]
drivshell>
admin@str2-xxxxx-01:~$ bcmcmd version
version
Broadcom Command Monitor: Copyright (c) 1998-2021 Broadcom
Release: sdk-6.5.23 built 20211020 (Wed Oct 20 06:52:58 2021)
From root@fedbbfdbee81:/__w/2/s/output/x86-xgsall-deb/hsdk
Platform: X86
OS: Unix (Posix)
Chips:
BCM56640_A0,
BCM56850_A0,
BCM56340_A0,
BCM56960_A0, BCM56860_A0,
BCM56970_A0, BCM56870_A0,
BCM56980_A0, BCM56980_B0,
BCM56370_A0, BCM56275_A0, BCM56770_A0,
Chips:
BCM56780_A0, BCM56782_A0, BCM56784_A0, BCM56785_A0,
BCM56786_A0, BCM56787_A0, BCM56788_A0, BCM56789_A0,
BCM56880_A0, BCM56880_B0, BCM56881_A0, BCM56881_B0,
BCM56883_A0, BCM56883_B0, BCM56990_A0, BCM56990_B0,
BCM56991_B0, BCM56992_B0, BCM56996_A0, BCM56996_B0,
BCM56997_A0, BCM56997_B0
Variant drivers:
BCM56780_A0_CNA_1_2_10, BCM56780_A0_DNA_2_7_6_0, BCM56880_A0_CNA_1_2_9, BCM56880_A0_DNA_4_9_5_0
PHYs: BCM5400, BCM54182, BCM54185, BCM54180,
BCM54140, BCM54192, BCM54195, BCM54190,
BCM54194, BCM54210, BCM54220, BCM54280,
BCM54282, BCM54240, BCM54285, BCM5428X,
BCM54290, BCM54292, BCM54294, BCM54295,
BCM54296, BCM56160-GPHY, BCM53540-GPHY, BCM56275-GPHY,
BCM8750, BCM8752, BCM8754, BCM84740,
BCM84164, BCM84758, BCM84780, BCM84784,
BCM84318, BCM84328, Sesto, BCM82780,
copper sfp
drivshell>
2021-10-28 02:12:32 -05:00
|
|
|
|
2018-08-07 02:14:37 -05:00
|
|
|
/* Bus supports only 16bit reads */
|
|
|
|
#define BDE_DEV_BUS_RD_16BIT SAL_DEV_BUS_RD_16BIT
|
|
|
|
|
|
|
|
/* Bus supports only 16bit writes */
|
|
|
|
#define BDE_DEV_BUS_WR_16BIT SAL_DEV_BUS_WR_16BIT
|
|
|
|
|
|
|
|
/* Backward compatibility */
|
|
|
|
#define BDE_ET_DEV_TYPE BDE_MII_DEV_TYPE
|
|
|
|
|
|
|
|
#define BDE_DEV_MEM_MAPPED(_d) \
|
|
|
|
((_d) & (BDE_PCI_DEV_TYPE | BDE_ICS_DEV_TYPE | BDE_EB_DEV_TYPE |\
|
|
|
|
BDE_EMMI_DEV_TYPE | BDE_AXI_DEV_TYPE))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PCI Bus Access
|
|
|
|
*/
|
|
|
|
uint32 (*pci_conf_read)(int d, uint32 addr);
|
|
|
|
int (*pci_conf_write)(int d, uint32 addr, uint32 data);
|
|
|
|
void (*pci_bus_features)(int d, int *be_pio, int *be_packet,
|
|
|
|
int *be_other);
|
|
|
|
|
|
|
|
uint32 (*read)(int d, uint32 addr);
|
|
|
|
int (*write)(int d, uint32 addr, uint32 data);
|
|
|
|
|
|
|
|
uint32* (*salloc)(int d, int size, const char *name);
|
|
|
|
void (*sfree)(int d, void *ptr);
|
|
|
|
int (*sflush)(int d, void *addr, int length);
|
|
|
|
int (*sinval)(int d, void *addr, int length);
|
|
|
|
|
|
|
|
int (*interrupt_connect)(int d, void (*)(void*), void *data);
|
|
|
|
int (*interrupt_disconnect)(int d);
|
|
|
|
|
|
|
|
sal_paddr_t (*l2p)(int d, void *laddr);
|
|
|
|
void* (*p2l)(int d, sal_paddr_t paddr);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SPI Access via SMP
|
|
|
|
*/
|
|
|
|
int (*spi_read)(int d, uint32 addr, uint8 *buf, int len);
|
|
|
|
int (*spi_write)(int d, uint32 addr, uint8 *buf, int len);
|
|
|
|
/* Special SPI access addresses */
|
|
|
|
#define BDE_DEV_OP_EMMI_INIT SAL_DEV_OP_EMMI_INIT
|
|
|
|
|
|
|
|
/*
|
|
|
|
* iProc register access
|
|
|
|
*/
|
|
|
|
uint32 (*iproc_read)(int d, uint32 addr);
|
|
|
|
int (*iproc_write)(int d, uint32 addr, uint32 data);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Shared memory access
|
|
|
|
*/
|
|
|
|
uint32 (*shmem_read)(int dev, uint32 addr, uint8 *buf, uint32 len);
|
|
|
|
void (*shmem_write)(int dev, uint32 addr, uint8 *buf, uint32 len);
|
|
|
|
sal_vaddr_t (*shmem_map)(int dev, uint32 addr, uint32 size);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cmic
|
|
|
|
*/
|
|
|
|
int (*get_cmic_ver)(int d, uint32 *ver);
|
|
|
|
|
2019-04-15 20:05:51 -05:00
|
|
|
/*
|
|
|
|
* I2C operations on the Device, assuming it is connected by I2C to the CPU.
|
|
|
|
*/
|
|
|
|
/* Read from the internal device Address space using I2C */
|
|
|
|
int (*i2c_device_read)(
|
|
|
|
int dev, /* The device ID to access */
|
|
|
|
uint32 addr, /* The address to access in the internal device address space */
|
|
|
|
uint32 *value);/* the value to be read. */
|
|
|
|
/* Write to the internal device Address space using I2C */
|
|
|
|
int (*i2c_device_write)(
|
|
|
|
int dev, /* The device ID to access */
|
|
|
|
uint32 addr, /* The address to access in the internal device address space */
|
|
|
|
uint32 value); /* the value to be written. */
|
|
|
|
|
2018-08-07 02:14:37 -05:00
|
|
|
} ibde_t;
|
|
|
|
|
|
|
|
|
|
|
|
/* System BDE */
|
|
|
|
extern ibde_t *bde;
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __IBDE_H__ */
|