tree: 5c2160043cf70f7fbcd0d65b791399e4fd4e8be7 [path history] [tgz]
  1. Makefile
  2. README.md
  3. asfvolt16_driver.c
  4. asfvolt16_driver.h
  5. bal_access_terminal_hdlr.c
  6. bal_access_terminal_hdlr.h
  7. bal_flow_hdlr.c
  8. bal_flow_hdlr.h
  9. bal_group_hdlr.c
  10. bal_group_hdlr.h
  11. bal_indications_hdlr.c
  12. bal_indications_hdlr.h
  13. bal_interface_hdlr.c
  14. bal_interface_hdlr.h
  15. bal_packet_hdlr.c
  16. bal_packet_hdlr.h
  17. bal_stats_hdlr.c
  18. bal_stats_hdlr.h
  19. bal_subscriber_terminal_hdlr.c
  20. bal_subscriber_terminal_hdlr.h
  21. bal_tmqueue_hdlr.c
  22. bal_tmqueue_hdlr.h
  23. bal_tmsched_hdlr.c
  24. bal_tmsched_hdlr.h
src/README.md

ASFvOLT16 vOLTHA BAL DRIVER

This is an executable (voltha_bal_driver), which will receive asfvolt16_olt adapter grpc-c messages and call the respective BAL API. It will send received responses/asynchronous indications from BAL running in the ASFvOLT16 to the asfvolt16_olt adapter in VOLTHA. This driver requires the Broadcom proprietary BAL/Maple SDK for the PON MAC and the Qumran switching SDK. These components are available from Broadcom.

GETTING STARTED

The following proprietary components are required to build the voltha_bal_driver. Contact Dave Baron at Broadcom for details on accessing these files. dave.baronATbroadcomDOTcom Reference Case: CS3233745

ComponentVersionFilename
BAL/Maple SDK2.4.3.6SW-BCM68620_2_4_3_6.zip
Qumran SDK6.5.7sdk-all-6.5.7.tar.gz
ComponentFilenameMD5
ASFvOLT16 BAL patchACCTON_BAL_2.4.3.6-V201710131639.patchb7d1bff32c5ed7b46cb48ba36ff9ad84

The following open-source components are required to build the voltha_bal_driver.

Component/PackageVersionNameFromGit Repo
VOLTHA asfvolt16_olt adaptervoltha-1.1volthaOpencordgit clone https://gerrit.opencord.org/voltha
ASFvOLT16 Drivervoltha-1.1asfvolt16-driverOpencordgit clone https://gerrit.opencord.org/asfvolt16-driver

Open Network Linux

This guide assumes that Open Network Linux (ONL) build environment for ASFvOLT16 has been installed and the build was successful. Refer to ONL build instructions here.

Clone asfvolt16-driver repo

cd OpenNetworkLinux
git clone https://gerrit.opencord.org/asfvolt16-driver

Build helper scripts are available in asfvolt16-driver/scripts to automate the steps for building BAL/Maple SDK and the voltha_bal_driver.

Helper ScriptPurpose
asfvolt-bal-prepare.shPrepare BAL/Maple SDK build workspace (outside of docker)
asfvolt-bal-buildall.shBuild BAL/Maple SDK
asfvolt-driver-build.shBuild voltha_bal_driver
asfvolt-driver-package.shRepackage BAL/Maple release with voltha_bal_driver

The helper scripts contain default shell variable values for component directory locations and file names for the build.

Prepare workspace for BAL

Any of the following variables can be overridden to suit the local build environment.

ONL_TOPDIR=/aux/OpenNetworkLinux
BALSRC_RELEASE=bal_src_release
BALSRC_ZIPNAME=SW-BCM68620_2_4_3_6.zip
SWISDK_TARNAME=sdk-all-6.5.7
PATCH_FILENAME=ACCTON_BAL_2.4.3.6-V201710131639.patch
BROADCOM_DOWNLOAD_DIR=/home/user/broadcom/download
EDGECORE_DOWNLOAD_DIR=/home/user/edgecore/download

Prepare the BAL/Maple build workspace from outside of the docker environment. This allows access to network and device resources that may not be available in the docker.

    > cd ${ONL_TOPDIR}
    > BROADCOM_DOWNLOAD_DIR=/aux/brcm_download EDGECORE_DOWNLOAD_DIR=/aux/brcm_download ./asfvolt16-driver/scripts/asfvolt-bal-prepare.sh

Build BAL/Maple SDK

All of the remaining steps are done inside the ONL build docker. Start ONL build docker workspace:

    > docker/tools/onlbuilder -8   # enter the docker workspace
    > ./asfvolt16-driver/scripts/asfvolt-bal-buildall.sh

Build voltha_bal_driver

This step requires access to the voltha source tree so it can find the protobuf definitions used by the asfvolt16_olt adapter. Be sure to use matching version of the voltha tree because asfvolt16_olt adapter and the voltha_bal_driver need to share the same grpc protobuf definitions.

ONL_TOPDIR=/aux/OpenNetworkLinux
MAKE_JOBS=4
BALSRC_RELEASE=bal_src_release
VOLTHA_TOPDIR=/home/<user>/voltha/incubator/voltha
BALSRC_TOPDIR=/aux/OpenNetworkLinux/bal_src_release/bal_release
ASFSRC_TOPDIR=/aux/OpenNetworkLinux/asfvolt16-driver/src
DEVSIM_TOPDIR=/aux/OpenNetworkLinux/asfvolt16-driver/device_simulator
PATCHF_TOPDIR=/aux/OpenNetworkLinux/asfvolt16-driver/patches

From the ONL build docker workspace:

    > VOLTHA_TOPDIR=/home/<user>/voltha/incubator/voltha ./asfvolt16-driver/scripts/asfvolt-driver-build.sh

Package voltha_bal_driver into BAL release tarball

From the ONL build docker workspace:

    > ./asfvolt16-driver/scripts/asfvolt-driver-package.sh

The tarball containing the packaged voltha_bal_driver can be found in ${ASFDRVR_PKGDIR}:

    > ls ${ONL_TOPDIR}/asfdrvr-package-dir/
asfvolt16-voltha-bal-201710051908.tgz  broadcom  opt

USAGE: ./voltha_bal_driver "serverIP:port1" -C "serverIP:port2" -A "serverIP:port3" ./bal_core_dist -C "serverIP:port2" -A "serverIP:port3"

NOTE: bal_core_dist is a broadcom executable

CONTRIBUTING

VERSIONING

AUTHORS Radisys Adapter Team

Licence

Acknowledgments