Revert "Revert "VOL-1298 OpenOLT - new dir structure for 2.0""

Revert the revert now that root cause of compile error is fixed.

This reverts commit c13de2141381ae5e1e5451d2c42f9d20c6de811b.

Change-Id: I513851f8d316b21ecf187e0cd5235a8a93fc768c
diff --git a/Makefile.in b/agent/Makefile.in
similarity index 99%
rename from Makefile.in
rename to agent/Makefile.in
index 3c3226d..20ff796 100644
--- a/Makefile.in
+++ b/agent/Makefile.in
@@ -183,7 +183,7 @@
 ##        OpenOLT API
 ##
 ##
-OPENOLT_PROTOS_DIR = ./protos
+OPENOLT_PROTOS_DIR = ../protos
 OPENOLT_API_LIB = $(OPENOLT_PROTOS_DIR)/libopenoltapi.a
 CXXFLAGS += -I$(OPENOLT_PROTOS_DIR) -I$(OPENOLT_PROTOS_DIR)/googleapis/gens
 protos:
diff --git a/agent/README.md b/agent/README.md
new file mode 100644
index 0000000..4e41fd7
--- /dev/null
+++ b/agent/README.md
@@ -0,0 +1,355 @@
+# OpenOLT agent
+
+The *OpenOLT agent* runs on white box Optical Line Terminals (OLTs) and
+provides a gRPC-based management and control interface to OLTs.
+
+The OpenOLT agent is used by [VOLTHA](https://github.com/opencord/voltha)
+through the [OpenOLT
+adapter](https://github.com/opencord/voltha/tree/master/voltha/adapters/openolt).
+
+OpenOLT agent currently supports Broadcom's Maple/Qumran chipsets.
+
+```text
+
+  +---------------------------------+
+  |             VOLTHA              |
+  |                                 |
+  |       +------------------+      |
+  |       | OpenOLT adapter  |      |
+  +-------+--------+---------+------+
+                   |
+  OpenOLT gRPC API |
+                   |
++--------------------- ---------------+
+|                  |                  |
+|         +------------------+        |
+|         |   OpenOLT agent  |        |
+|         +--------+---------+        |
+|                  |                  |
+| Vendor specific  | (e.g. Broadcom   |
+|       API        |     BAL API      |
+|                  |                  |
+|         +------------------+        |
+|         | Vendor SoC/FPGA  |        |
+|         |(e.g Maple/Qumran)|        |
+|         +------------------+        |
+|                                     |
+|           White box OLT             |
++-------------------------------------+
+
+```
+
+## Hardware requirements
+
+A list of tested devices and optics can be found in the [CORD hardware
+requirements](https://github.com/opencord/docs/blob/master/prereqs/hardware.md#suggested-hardware)
+guide, in the *R-CORD access equipment and optics* section.
+
+## Pre-built debian packages of OpenOLT agent for Accton/Edgecore ASFVOLT16
+
+Accton/Edgecore makes available pre-built debian packages of OpenOLT agent to their customers.
+Contact your Accton/Edgecore representative for more information.
+
+The pre-built debian packages have been tested on [this specific version of
+OpenNetworkingLinux
+(ONL)](https://github.com/opencord/OpenNetworkLinux/releases/download/20180124-olt-kernel-3.7.10/ONL-2.0.0_ONL-OS_2018-01-24.0118-1303f20_AMD64_INSTALLED_INSTALLER).
+
+More info on how to install ONL can be found on the official [ONL
+website](https://opennetlinux.org/docs/deploy).
+
+## Install OpenOLT
+
+Copy the debian package to the OLT. For example:
+
+```shell
+scp openolt.deb root@10.6.0.201:~/.
+```
+
+Install the *openolt.deb* package using *dpkg*:
+
+```shell
+dpkg -i openolt.deb
+```
+
+## Run OpenOLT as a Linux service
+
+Rebooting the OLT (after the installation) will start bal_core_dist and openolt as init.d services:
+
+Rebooting the OLT will start the bal_core_dist and openolt services:
+```shell
+reboot
+```
+The services can also be stopped/started manually:
+```shell 
+service bal_core_dist stop
+service openolt stop
+service bal_core_dist start
+service openolt start
+```
+
+Check the status of the services:
+```shell
+service bal_core_dist status
+service openolt status
+```
+
+## Run OpenOLT in foreground
+
+Running the bal_core_dist and/or openolt services in the forground is useful for development and debugging. Make sure to first stop the services if they are running in background.
+
+Open a terminal and run the Broadcom BAL software (*bal_core_dist*):
+
+```shell
+cd /broadcom
+./bal_core_dist -C :55001
+```
+
+While the first executable still runs (even in background), open another
+terminal and run *openolt*:
+
+```shell
+cd /broadcom
+./openolt -C 127.0.0.1:55001
+```
+
+> **NOTE**: the two executables will remain open in the terminals, unless they
+> are put in background.
+
+### Connect from VOLTHA
+
+At the VOLTHA CLI, preprovision and enable the OLT:
+
+```shell
+(voltha) preprovision_olt -t openolt -H YOUR_OLT_MGMT_IP:9191
+(voltha) enable
+```
+
+### Additional notes
+
+* *9191* is the TCP port that the *OpenOLT* agent uses for its gRPC channel
+* In the commands above, you can either use the loopback IP address (127.0.0.1)
+  or substitute all its occurrences with the management IP of your OLT
+
+## Build OpenOLT
+
+### Supported BAL API versions
+
+Currently, OpenOLT support the Broadcom BAL APIs, version *2.6.0.1*.
+
+### Proprietary software requirements
+
+The following proprietary source code is required to build the OpenOLT agent.
+
+* `SW-BCM68620_<BAL_VER>.zip` - Broadcom BAL source and Maple SDK
+* `sdk-all-<SDK_VER>.tar.gz` - Broadcom Qumran SDK
+* `ACCTON_BAL_<BAL_VER>-<ACCTON_VER>.patch` - Accton/Edgecore's patch
+* `OPENOLT_BAL_<BAL_VER>.patch` - A patch to Broadcom software to allow
+  compilation with C++ based openolt
+
+The versions currently supported by the OpenOLT agent are:
+
+* SW-BCM68620_2_6_0_1.zip
+* sdk-all-6.5.7.tar.gz
+* ACCTON_BAL_2.6.0.1-V201804301043.patch
+* OPENOLT_BAL_2.6.0.1.patch
+
+> NOTE: the repository does not contain the above four source packages.  These
+> are needed to build the OpenOLT agent executable. Contact
+> [Broadcom](mailto:dave.baron@broadcom.com) to access the source packages.
+
+### System Requirements
+
+OpenOLT agent builds on *Ubuntu 14.04 LTS*.
+
+### Build procedure
+
+Clone the *openolt* repository either from GitHub or from OpenCORD Gerrit:
+
+```shell
+git clone git@github.com:opencord/openolt.git
+or
+git clone https://gerrit.opencord.org/openolt
+```
+
+Copy the Broadcom source and patch files to the openolt/download directory:
+
+```shell
+cd openolt/download
+cp SW-BCM68620_2_6_0_1.zip sdk-all-6.5.7.tar.gz ACCTON_BAL_2.6.0.1-V201804301043.patch OPENOLT_BAL_2.6.0.1.patch ./download
+```
+
+Run Autoconfig to generate the appropriate makefile scaffolding for the desired target
+
+```shell
+cd openolt
+./configure
+```
+
+Run *make prereq* to install the package dependencies.
+This is usually a one-time thing, unless there is a change in the dependencies.
+
+```shell
+make OPENOLTDEVICE=asfvolt16 prereq
+```
+
+Run *make*. This can take a while to complete the first time, since it builds
+ONL and the Broadcom SDKs. Following runs will be much faster, as they only
+build the OpenOLT agent source.
+
+```shell
+make OPENOLTDEVICE=asfvolt16
+```
+
+If the build process succeeds, libraries and executables will be created in the
+*openolt/build* directory.
+
+Optionally, build the debian package that will be installed on the OLT.
+
+```shell
+make OPENOLTDEVICE=asfvolt16 deb
+```
+
+If the build process succeeds, the *openolt.deb* package will be created as
+well in the *openolt/build* directory.
+
+### Cleanup
+
+To cleanup the repository and start the build procedure again, run:
+
+```shell
+make OPENOLTDEVICE=asfvolt16 clean-all
+```
+
+## FAQ
+
+### How to change speed of ASFVOLT16 NNI interface?
+
+Auto-negotiation on the NNI (uplink) interfaces is not tested. By default, the OpenOLT agent sets the speed of the NNI interfaces to 100G. To downgrade the network interface speed to 40G, add the following lines at the end of the qax.soc (/broadcom/qax.soc) configuration file. A restart of the bal_core_dist and openolt executables is required after the change.
+
+```shell
+port ce128 sp=40000
+```
+
+This change can also be made at run-time from the CLI of the bal_core_dist:
+
+```shell
+d/s/shell
+port ce128 speed=40000
+```
+(It is safe to ignore the error msgs.)
+
+### How do I configure rate limiting?
+
+By default, the full 1G xgs-pon bandwidth is available to an ONU when no rate-limiting is applied. There is experimental support available to change the default bandwith and also rate-limit specific ONUs from the voltha CLI.
+
+
+Configure default rate limit (PIR = 5Mbps):
+
+```shell
+(voltha) xpon
+(voltha-xpon )traffic_descriptor_profile create -n "default" -f 1000 -a 1000 -m 5000
+```
+
+
+Configure ONU BRCM12345678 to be rate-limited to 100Mbps:
+```shell
+(voltha) xpon
+(voltha-xpon )traffic_descriptor_profile create -n "default" -f 50000 -a 70000 -m 100000
+```
+
+### Why does the Broadcom ONU not forward eapol packets?
+
+The firmware on the ONU is likely not setup to forward 802.1x on the linux bridge. Drop down to the shell in the Broadcom ONU's console and configure the Linux bridge to forward 802.1x.
+
+```shell
+> sh
+# echo 8 > /sys/class/net/bronu513/bridge/group_fwd_mask
+```
+
+### How do I check packet counters on the ONU?
+
+LAN port packet counters:
+
+```shell
+bs /b/e port/index=lan{0,1,2,3,4,5,6}
+```
+
+WAN port packt counters:
+```shell
+bs /b/e port/index=wan0
+```
+
+### How do I check packet counters on the OLT's PON interface?
+
+Following is an example of retrieving the interface description for PON intf_id 0 (TODO: document PON interface numbering for Edgecore OLT).
+
+```shell
+ACC.0>b/t clear=no object=interface intf_id=0 intf_type=pon
+[-- API Start: bcmbal_stat_get --]
+[-- API Message Data --]
+object: interface - BAL interface object
+get stat: response: OK
+key:
+   intf_id=0
+   intf_type=pon
+data:
+   rx_bytes=18473516
+   rx_packets=176416
+   rx_ucast_packets=30627
+   rx_mcast_packets=2230
+   rx_bcast_packets=143559
+   rx_error_packets=0
+   rx_unknown_protos=0
+   rx_crc_errors=0
+   bip_errors=0
+   tx_bytes=5261350
+   tx_packets=39164
+   tx_ucast_packets=30583
+   tx_mcast_packets=0
+   tx_bcast_packets=8581
+   tx_error_packets=0
+[-- API Complete: 0 (OK) --]
+```
+
+#### How do I check packet counters on the OLT's NNI interface?
+
+Following command retrieves NNI intf_id 0:
+
+```shell
+ACC.0>b/t clear=no object=interface intf_id=0 intf_type=nniCollecting statistics
+[-- API Start: bcmbal_stat_get --]
+[-- API Message Data --]
+object: interface - BAL interface object
+get stat: response: OK
+key:
+   intf_id=0
+   intf_type=nni
+data:
+   rx_bytes=8588348
+   rx_packets=69774
+   rx_ucast_packets=61189
+   rx_mcast_packets=0
+   rx_bcast_packets=8585
+   rx_error_packets=0
+   rx_unknown_protos=0
+   tx_bytes=35354878
+   tx_packets=347167
+   tx_ucast_packets=61274
+   tx_mcast_packets=4447
+   tx_bcast_packets=281446
+   tx_error_packets=0
+[-- API Complete: 0 (OK) --]
+```
+
+### How do I list flows installed in the OLT?
+
+In the bal_core_dist CLI:
+
+```shell
+> ~, Debug/, Maple/, Board/, Cld/, Transport/, Logger/, Quit
+> Debug
+.../Debug> Rsc_mgr/, Mac_util/, Switch/, sLeep, sHow_config, os/
+> Mac_util
+.../Mac_util> Print_flows, pRint_flows_for_gem, prInt_flows_for_alloc_id, Epon_helper
+> Print_flow
+```
diff --git a/common/Queue.h b/agent/common/Queue.h
similarity index 100%
rename from common/Queue.h
rename to agent/common/Queue.h
diff --git a/common/core.h b/agent/common/core.h
similarity index 100%
rename from common/core.h
rename to agent/common/core.h
diff --git a/common/main.cc b/agent/common/main.cc
similarity index 100%
rename from common/main.cc
rename to agent/common/main.cc
diff --git a/common/server.cc b/agent/common/server.cc
similarity index 100%
rename from common/server.cc
rename to agent/common/server.cc
diff --git a/common/server.h b/agent/common/server.h
similarity index 100%
rename from common/server.h
rename to agent/common/server.h
diff --git a/common/state.h b/agent/common/state.h
similarity index 100%
rename from common/state.h
rename to agent/common/state.h
diff --git a/config.h.in b/agent/config.h.in
similarity index 100%
rename from config.h.in
rename to agent/config.h.in
diff --git a/configure b/agent/configure
similarity index 100%
rename from configure
rename to agent/configure
diff --git a/configure.ac b/agent/configure.ac
similarity index 100%
rename from configure.ac
rename to agent/configure.ac
diff --git a/device/asfvolt16/vendor.cc b/agent/device/asfvolt16/vendor.cc
similarity index 100%
rename from device/asfvolt16/vendor.cc
rename to agent/device/asfvolt16/vendor.cc
diff --git a/device/asfvolt16/vendor.h b/agent/device/asfvolt16/vendor.h
similarity index 100%
rename from device/asfvolt16/vendor.h
rename to agent/device/asfvolt16/vendor.h
diff --git a/device/device.h b/agent/device/device.h
similarity index 100%
rename from device/device.h
rename to agent/device/device.h
diff --git a/device/generic/vendor.cc b/agent/device/generic/vendor.cc
similarity index 100%
rename from device/generic/vendor.cc
rename to agent/device/generic/vendor.cc
diff --git a/device/generic/vendor.h b/agent/device/generic/vendor.h
similarity index 100%
rename from device/generic/vendor.h
rename to agent/device/generic/vendor.h
diff --git a/device/tlabvolt8/vendor.cc b/agent/device/tlabvolt8/vendor.cc
similarity index 100%
rename from device/tlabvolt8/vendor.cc
rename to agent/device/tlabvolt8/vendor.cc
diff --git a/device/tlabvolt8/vendor.h b/agent/device/tlabvolt8/vendor.h
similarity index 100%
rename from device/tlabvolt8/vendor.h
rename to agent/device/tlabvolt8/vendor.h
diff --git a/download/README.md b/agent/download/README.md
similarity index 100%
rename from download/README.md
rename to agent/download/README.md
diff --git a/mkdebian/build_asfvolt16_deb.sh b/agent/mkdebian/build_asfvolt16_deb.sh
similarity index 100%
rename from mkdebian/build_asfvolt16_deb.sh
rename to agent/mkdebian/build_asfvolt16_deb.sh
diff --git a/mkdebian/debian/asfvolt16.install b/agent/mkdebian/debian/asfvolt16.install
similarity index 100%
rename from mkdebian/debian/asfvolt16.install
rename to agent/mkdebian/debian/asfvolt16.install
diff --git a/mkdebian/debian/asfvolt16.postinst b/agent/mkdebian/debian/asfvolt16.postinst
similarity index 100%
rename from mkdebian/debian/asfvolt16.postinst
rename to agent/mkdebian/debian/asfvolt16.postinst
diff --git a/mkdebian/debian/asfvolt16.postrm b/agent/mkdebian/debian/asfvolt16.postrm
similarity index 100%
rename from mkdebian/debian/asfvolt16.postrm
rename to agent/mkdebian/debian/asfvolt16.postrm
diff --git a/mkdebian/debian/asfvolt16.preinst b/agent/mkdebian/debian/asfvolt16.preinst
similarity index 100%
rename from mkdebian/debian/asfvolt16.preinst
rename to agent/mkdebian/debian/asfvolt16.preinst
diff --git a/mkdebian/debian/changelog b/agent/mkdebian/debian/changelog
similarity index 100%
rename from mkdebian/debian/changelog
rename to agent/mkdebian/debian/changelog
diff --git a/mkdebian/debian/compat b/agent/mkdebian/debian/compat
similarity index 100%
rename from mkdebian/debian/compat
rename to agent/mkdebian/debian/compat
diff --git a/mkdebian/debian/control b/agent/mkdebian/debian/control
similarity index 100%
rename from mkdebian/debian/control
rename to agent/mkdebian/debian/control
diff --git a/mkdebian/debian/copyright b/agent/mkdebian/debian/copyright
similarity index 100%
rename from mkdebian/debian/copyright
rename to agent/mkdebian/debian/copyright
diff --git a/mkdebian/debian/files b/agent/mkdebian/debian/files
similarity index 100%
rename from mkdebian/debian/files
rename to agent/mkdebian/debian/files
diff --git a/mkdebian/debian/logrotate.d/openolt b/agent/mkdebian/debian/logrotate.d/openolt
similarity index 100%
rename from mkdebian/debian/logrotate.d/openolt
rename to agent/mkdebian/debian/logrotate.d/openolt
diff --git a/mkdebian/debian/rules b/agent/mkdebian/debian/rules
similarity index 100%
rename from mkdebian/debian/rules
rename to agent/mkdebian/debian/rules
diff --git a/scripts/init.d/bal_core_dist b/agent/scripts/init.d/bal_core_dist
similarity index 100%
rename from scripts/init.d/bal_core_dist
rename to agent/scripts/init.d/bal_core_dist
diff --git a/scripts/init.d/openolt b/agent/scripts/init.d/openolt
similarity index 100%
rename from scripts/init.d/openolt
rename to agent/scripts/init.d/openolt
diff --git a/sim/core.cc b/agent/sim/core.cc
similarity index 100%
rename from sim/core.cc
rename to agent/sim/core.cc
diff --git a/sim/core.h b/agent/sim/core.h
similarity index 100%
rename from sim/core.h
rename to agent/sim/core.h
diff --git a/src/core.cc b/agent/src/core.cc
similarity index 100%
rename from src/core.cc
rename to agent/src/core.cc
diff --git a/src/error_format.cc b/agent/src/error_format.cc
similarity index 100%
rename from src/error_format.cc
rename to agent/src/error_format.cc
diff --git a/src/error_format.h b/agent/src/error_format.h
similarity index 100%
rename from src/error_format.h
rename to agent/src/error_format.h
diff --git a/src/indications.cc b/agent/src/indications.cc
similarity index 100%
rename from src/indications.cc
rename to agent/src/indications.cc
diff --git a/src/indications.h b/agent/src/indications.h
similarity index 100%
rename from src/indications.h
rename to agent/src/indications.h
diff --git a/src/stats_collection.cc b/agent/src/stats_collection.cc
similarity index 100%
rename from src/stats_collection.cc
rename to agent/src/stats_collection.cc
diff --git a/src/stats_collection.h b/agent/src/stats_collection.h
similarity index 100%
rename from src/stats_collection.h
rename to agent/src/stats_collection.h
diff --git a/src/translation.cc b/agent/src/translation.cc
similarity index 100%
rename from src/translation.cc
rename to agent/src/translation.cc
diff --git a/src/translation.h b/agent/src/translation.h
similarity index 100%
rename from src/translation.h
rename to agent/src/translation.h
diff --git a/src/utils.cc b/agent/src/utils.cc
similarity index 100%
rename from src/utils.cc
rename to agent/src/utils.cc
diff --git a/src/utils.h b/agent/src/utils.h
similarity index 100%
rename from src/utils.h
rename to agent/src/utils.h