From: Lukas Middendorf <kernel@tuxforce.de>
To: linux-media@vger.kernel.org
Cc: Antti Palosaari <crope@iki.fi>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
Luis Chamberlain <mcgrof@kernel.org>,
Lukas Middendorf <kernel@tuxforce.de>
Subject: [PATCH 1/2] media: si2168: request caching of firmware to make it available on resume
Date: Thu, 13 Aug 2020 23:45:37 +0200 [thread overview]
Message-ID: <20200813214538.8474-1-kernel@tuxforce.de> (raw)
even though request_firmware() is supposed to be safe to call during
resume, it might fail (or even hang the system) when the firmware
has not been loaded previously. Use firmware_request_cache() to
have it cached so it is available reliably on resume.
Signed-off-by: Lukas Middendorf <kernel@tuxforce.de>
---
drivers/media/dvb-frontends/si2168.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/drivers/media/dvb-frontends/si2168.c b/drivers/media/dvb-frontends/si2168.c
index 14b93a7d3358..ea4b2d91697e 100644
--- a/drivers/media/dvb-frontends/si2168.c
+++ b/drivers/media/dvb-frontends/si2168.c
@@ -757,6 +757,17 @@ static int si2168_probe(struct i2c_client *client,
dev->version >> 24 & 0xff, dev->version >> 16 & 0xff,
dev->version >> 8 & 0xff, dev->version >> 0 & 0xff);
+ /* request caching of the firmware so it is available on resume after suspend.
+ * The actual caching of the firmware file only occurs during suspend
+ * The return value does not show whether the firmware file exists
+ */
+ ret = firmware_request_cache(&client->dev, dev->firmware_name);
+ if (ret) {
+ dev_err(&client->dev,
+ "firmware caching for '%s' failed\n",
+ dev->firmware_name);
+ }
+
return 0;
err_kfree:
kfree(dev);
--
2.26.2
next reply other threads:[~2020-08-13 21:47 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-13 21:45 Lukas Middendorf [this message]
2020-08-13 21:45 ` [PATCH 2/2] media: si2168: also cache Si2168 B40 fallback firmware Lukas Middendorf
2020-08-13 21:55 ` Luis Chamberlain
2021-04-01 14:46 ` Lukas Middendorf
2020-08-13 21:54 ` [PATCH 1/2] media: si2168: request caching of firmware to make it available on resume Luis Chamberlain
2021-04-01 14:42 ` Lukas Middendorf
2021-04-02 18:04 ` Luis Chamberlain
2021-04-09 11:29 ` Mauro Carvalho Chehab
2021-04-09 16:58 ` Luis Chamberlain
2021-04-09 22:02 ` Lukas Middendorf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200813214538.8474-1-kernel@tuxforce.de \
--to=kernel@tuxforce.de \
--cc=crope@iki.fi \
--cc=linux-media@vger.kernel.org \
--cc=mcgrof@kernel.org \
--cc=mchehab@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox