aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/Makefile
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2016-04-26 10:20:49 +0530
committerGreg Kroah-Hartman <gregkh@google.com>2016-04-27 11:10:44 -0700
commit9e04fb7b1627ad55b63c4e0927f696ecb1a2563a (patch)
treeddfb584f5d63412678dc229191be30c895bbcb71 /drivers/staging/greybus/Makefile
parentgreybus: audio: Identify jack type based on attributes reported (diff)
downloadlinux-dev-9e04fb7b1627ad55b63c4e0927f696ecb1a2563a.tar.xz
linux-dev-9e04fb7b1627ad55b63c4e0927f696ecb1a2563a.zip
greybus: firmware: Add firmware management bundle driver
All firmware packages on the Modules or Interfaces are now managed by a special Firmware Management Protocol. The Interface Manifest shall at least contain the Firmware Management Bundle and a Firmware Management Protocol CPort within it. The bundle may contain additional CPorts based on the extra functionality required to manage firmware packages. For example, this is how the Firmware Management Bundle of the Interface Manifest may look like: ; Firmware Management Bundle (Bundle 1): [bundle-descriptor 1] class = 0x16 ; (Mandatory) Firmware Management Protocol on CPort 1 [cport-descriptor 1] bundle = 1 protocol = 0x18 ; (Optional) Firmware Download Protocol on CPort 2 [cport-descriptor 2] bundle = 1 protocol = 0x17 ; (Optional) SPI protocol on CPort 3 [cport-descriptor 3] bundle = 1 protocol = 0x0b ; (Optional) Component Authentication Protocol (CAP) on CPort 4 [cport-descriptor 4] bundle = 1 protocol = 0xXX //TBD This patch adds the basic firmware-management bundle driver, which just creates a firmware-management connection. Support for individual protocols will be added separately. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/Makefile')
-rw-r--r--drivers/staging/greybus/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/greybus/Makefile b/drivers/staging/greybus/Makefile
index 5bdccccbe171..1a120d928485 100644
--- a/drivers/staging/greybus/Makefile
+++ b/drivers/staging/greybus/Makefile
@@ -39,6 +39,7 @@ gb-audio-apbridgea-y := audio_apbridgea.o
gb-audio-manager-y += audio_manager.o
gb-audio-manager-y += audio_manager_module.o
gb-camera-y := camera.o
+gb-firmware-y := fw-core.o
obj-m += greybus.o
obj-m += gb-phy.o
@@ -60,6 +61,7 @@ endif
obj-m += gb-audio-gb.o
obj-m += gb-audio-apbridgea.o
obj-m += gb-audio-manager.o
+obj-m += gb-firmware.o
KERNELVER ?= $(shell uname -r)
KERNELDIR ?= /lib/modules/$(KERNELVER)/build