Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd9cdbf1 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mhi: cntrl: qcom: Add EDL image to the firmware table"

parents b20aa2b4 decc40ce
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -33,13 +33,16 @@ struct firmware_info {
};

static const struct firmware_info firmware_table[] = {
	{.dev_id = 0x308, .fw_image = "sdx65m/sbl1.mbn"},
	{.dev_id = 0x307, .fw_image = "sdx60m/sbl1.mbn"},
	{.dev_id = 0x306, .fw_image = "sdx55m/sbl1.mbn"},
	{.dev_id = 0x308, .fw_image = "sdx65m/sbl1.mbn",
	 .edl_image = "sdx65m/edl.mbn"},
	{.dev_id = 0x307, .fw_image = "sdx60m/sbl1.mbn",
	 .edl_image = "sdx60m/edl.mbn"},
	{.dev_id = 0x306, .fw_image = "sdx55m/sbl1.mbn",
	 .edl_image = "sdx55m/edl.mbn"},
	{.dev_id = 0x305, .fw_image = "sdx50m/sbl1.mbn"},
	{.dev_id = 0x304, .fw_image = "sbl.mbn", .edl_image = "edl.mbn"},
	/* default, set to debug.mbn */
	{.fw_image = "debug.mbn"},
	{.fw_image = "debug.mbn", .edl_image = "debug.mbn"},
};

static int debug_mode;