Initial Commit

Add db845c and RB5 firmware binaries. These files are copied/downloaded
from multiple sources and are covered under different different
redistributable licences. Here is a short summary:

vendor/
└── linaro_devices/
    ├── common/
    │   └── linux-firmware/
    │       All but one (ath10k/WCN3390/hw1.0/board-2.bin) binaries are covered
    │       under upstream licenses mentioned in WHENCE file.
    │       https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git (f5d519563ac9)
    │
    │       ath10k/WCN3390/hw1.0/board-2.bin binary for db845c is picked from
    │       linux-firmware.git fork:
    │       https://github.com/andersson/linux-firmware/commit/e165604ca024
    └── qcom/
        ├── db845c/
        │   ├── dragonboard-845c-bootloader-ufs-aosp-88/
        │   │   Db845c bootloader/rescue package is covered under LICENSE file.
        │   │   The package can be downloaded from
        │   │   http://snapshots.linaro.org/96boards/dragonboard845c/linaro/rescue/88/dragonboard-845c-bootloader-ufs-aosp-88.zip
        │   │
        │   ├── qdl/
        │   │   QDL board recovery tool (covered under LICENSE) is built from
        │   │   https://git.linaro.org/landing-teams/working/qualcomm/qdl.git (760b3dffb03d)
        │   │
        │   └── RB3_firmware_20190529180356-v4/
        │       These binaries are covered under LICENSE.qcom.txt
        │       The package can be downloaded from
        │       http://releases.linaro.org/96boards/dragonboard845c/qualcomm/firmware/RB3_firmware_20190529180356-v4.zip
        └── rb5/
            ├── qdl/
            │   QDL board recovery tool (covered under LICENSE) is built from
            │   https://git.linaro.org/landing-teams/working/qualcomm/qdl.git (13681fcb359c)
            │
            ├── rb5-bootloader-ufs-aosp-19/
            │   RB5 bootloader/rescue package is covered under LICENSE file.
            │   The package can be downloaded from
            │   http://snapshots.linaro.org/96boards/qrb5165-rb5/linaro/rescue/19/rb5-bootloader-ufs-aosp-19.zip
            │
            └── RB5_firmware_20210331-v4/
                These binaries are covered under LICENSE.qcom.txt
                The package can be downloaded from
                http://releases.linaro.org/96boards/rb5/qualcomm/firmware/RB5_firmware_20210331-v4.zip

Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
diff --git a/linaro_devices/qcom/Android.mk b/linaro_devices/qcom/Android.mk
new file mode 100644
index 0000000..4e30bfe
--- /dev/null
+++ b/linaro_devices/qcom/Android.mk
@@ -0,0 +1,31 @@
+#
+# Copyright (C) 2015 The Android Open-Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+# WARNING: Everything listed here will be built on ALL platforms,
+# including x86, the emulator, and the SDK.  Modules must be uniquely
+# named (liblights.panda), and must build everywhere, or limit themselves
+# to only building on ARM if they include assembly. Individual makefiles
+# are responsible for having their own logic, for fine-grained control.
+
+ifneq ($(filter db845c rb5, $(TARGET_BOARD_PLATFORM)),)
+
+LOCAL_PATH := $(call my-dir)
+
+# If some modules are built directly from this directory (not subdirectories),
+# their rules should be written here.
+
+include $(call all-makefiles-under,$(LOCAL_PATH))
+endif