a98f670e41
-----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEE+QmuaPwR3wnBdVwACF8+vY7k4RUFAl7XUmwACgkQCF8+vY7k 4RU4zg//fT32wiVAPHCCp+pDZVnWNeipXE1gnpqghd/qZXfzBPiLEC9sPS74VVkA jf1hhR33VZpKAKTPg/b074qhRZBywEOdHZnT/0CEE1oNB61shVOnyDYzLGSq95cO 6V55ovbi5IOkrg0QEJbHpG5YHzt+pq5XeWOkqGNsHwla7N7iMGMVYfHepVVDWPnZ 0wGYFF9cAJP+X/uxqkZLDVMA/K1I+QKh6vrj/qx53/eRt8VID3+i8ig3guk4PlUq 7RLw5w/CywtNaGE5zaz7T3i2eoED71JHOTXi6RxdP1z8IDvELZ9mT95GQ+enlwqt AS6Ju1sV40wviHMv5prJWQjJkrrtYH3S907lIjwBpQLNGbh2+5crCd/6CwumkGgv 1cCZ1dVmXpCe++9mU9AXmSkjsjGPStNcmHMOpc1Pwn9jUV3LQOOSDp8+RYdt1WHU Iw9cyM8NOpz5Mv/B1/ZPQ1gPb9lr1gE09XyUekxtAI/nl4nNHGWO8QDuX7Odfrv9 8nfo14lk/p6XCTA8dsWJCgI5B1fgnqD4frHKWO9Uctppc/KBW41c8JpQUjBNlG/T MhtlGwYMVgSQxpQ6wK018JUAFoWkn1Sr0zMKRayqCnMjMLHsaMwE6kq+LgmRBqbB ersKV/9ZLYqCU1d6PhEVG6xUs6GsWdLcyhALlmHsddPSdpFXdf8= =KNAo -----END PGP SIGNATURE----- Merge tag 'media/v5.8-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media Pull media updates from Mauro Carvalho Chehab: - Media documentation is now split into admin-guide, driver-api and userspace-api books (a longstanding request from Jon); - The media Kconfig was reorganized, in order to make easier to select drivers and their dependencies; - The testing drivers now has a separate directory; - added a new driver for Rockchip Video Decoder IP; - The atomisp staging driver was resurrected. It is meant to work with 4 generations of cameras on Atom-based laptops, tablets and cell phones. So, it seems worth investing time to cleanup this driver and making it in good shape. - Added some V4L2 core ancillary routines to help with h264 codecs; - Added an ov2740 image sensor driver; - The si2157 gained support for Analog TV, which, in turn, added support for some cx231xx and cx23885 boards to also support analog standards; - Added some V4L2 controls (V4L2_CID_CAMERA_ORIENTATION and V4L2_CID_CAMERA_SENSOR_ROTATION) to help identifying where the camera is located at the device; - VIDIOC_ENUM_FMT was extended to support MC-centric devices; - Lots of drivers improvements and cleanups. * tag 'media/v5.8-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media: (503 commits) media: Documentation: media: Refer to mbus format documentation from CSI-2 docs media: s5k5baf: Replace zero-length array with flexible-array media: i2c: imx219: Drop <linux/clk-provider.h> and <linux/clkdev.h> media: i2c: Add ov2740 image sensor driver media: ov8856: Implement sensor module revision identification media: ov8856: Add devicetree support media: dt-bindings: ov8856: Document YAML bindings media: dvb-usb: Add Cinergy S2 PCIe Dual Port support media: dvbdev: Fix tuner->demod media controller link media: dt-bindings: phy: phy-rockchip-dphy-rx0: move rockchip dphy rx0 bindings out of staging media: staging: dt-bindings: phy-rockchip-dphy-rx0: remove non-used reg property media: atomisp: unify the version for isp2401 a0 and b0 versions media: atomisp: update TODO with the current data media: atomisp: adjust some code at sh_css that could be broken media: atomisp: don't produce errs for ignored IRQs media: atomisp: print IRQ when debugging media: atomisp: isp_mmu: don't use kmem_cache media: atomisp: add a notice about possible leak resources media: atomisp: disable the dynamic and reserved pools media: atomisp: turn on camera before setting it ...
237 lines
5.5 KiB
C
237 lines
5.5 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* cec-notifier.c - notify CEC drivers of physical address changes
|
|
*
|
|
* Copyright 2016 Russell King.
|
|
* Copyright 2016-2017 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
|
|
*/
|
|
|
|
#include <linux/export.h>
|
|
#include <linux/string.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/list.h>
|
|
#include <linux/kref.h>
|
|
#include <linux/of_platform.h>
|
|
|
|
#include <media/cec.h>
|
|
#include <media/cec-notifier.h>
|
|
#include <drm/drm_edid.h>
|
|
|
|
struct cec_notifier {
|
|
struct mutex lock;
|
|
struct list_head head;
|
|
struct kref kref;
|
|
struct device *hdmi_dev;
|
|
struct cec_connector_info conn_info;
|
|
const char *port_name;
|
|
struct cec_adapter *cec_adap;
|
|
|
|
u16 phys_addr;
|
|
};
|
|
|
|
static LIST_HEAD(cec_notifiers);
|
|
static DEFINE_MUTEX(cec_notifiers_lock);
|
|
|
|
/**
|
|
* cec_notifier_get_conn - find or create a new cec_notifier for the given
|
|
* device and connector tuple.
|
|
* @hdmi_dev: device that sends the events.
|
|
* @port_name: the connector name from which the event occurs
|
|
*
|
|
* If a notifier for device @dev already exists, then increase the refcount
|
|
* and return that notifier.
|
|
*
|
|
* If it doesn't exist, then allocate a new notifier struct and return a
|
|
* pointer to that new struct.
|
|
*
|
|
* Return NULL if the memory could not be allocated.
|
|
*/
|
|
static struct cec_notifier *
|
|
cec_notifier_get_conn(struct device *hdmi_dev, const char *port_name)
|
|
{
|
|
struct cec_notifier *n;
|
|
|
|
mutex_lock(&cec_notifiers_lock);
|
|
list_for_each_entry(n, &cec_notifiers, head) {
|
|
if (n->hdmi_dev == hdmi_dev &&
|
|
(!port_name ||
|
|
(n->port_name && !strcmp(n->port_name, port_name)))) {
|
|
kref_get(&n->kref);
|
|
mutex_unlock(&cec_notifiers_lock);
|
|
return n;
|
|
}
|
|
}
|
|
n = kzalloc(sizeof(*n), GFP_KERNEL);
|
|
if (!n)
|
|
goto unlock;
|
|
n->hdmi_dev = hdmi_dev;
|
|
if (port_name) {
|
|
n->port_name = kstrdup(port_name, GFP_KERNEL);
|
|
if (!n->port_name) {
|
|
kfree(n);
|
|
n = NULL;
|
|
goto unlock;
|
|
}
|
|
}
|
|
n->phys_addr = CEC_PHYS_ADDR_INVALID;
|
|
|
|
mutex_init(&n->lock);
|
|
kref_init(&n->kref);
|
|
list_add_tail(&n->head, &cec_notifiers);
|
|
unlock:
|
|
mutex_unlock(&cec_notifiers_lock);
|
|
return n;
|
|
}
|
|
|
|
static void cec_notifier_release(struct kref *kref)
|
|
{
|
|
struct cec_notifier *n =
|
|
container_of(kref, struct cec_notifier, kref);
|
|
|
|
list_del(&n->head);
|
|
kfree(n->port_name);
|
|
kfree(n);
|
|
}
|
|
|
|
static void cec_notifier_put(struct cec_notifier *n)
|
|
{
|
|
mutex_lock(&cec_notifiers_lock);
|
|
kref_put(&n->kref, cec_notifier_release);
|
|
mutex_unlock(&cec_notifiers_lock);
|
|
}
|
|
|
|
struct cec_notifier *
|
|
cec_notifier_conn_register(struct device *hdmi_dev, const char *port_name,
|
|
const struct cec_connector_info *conn_info)
|
|
{
|
|
struct cec_notifier *n = cec_notifier_get_conn(hdmi_dev, port_name);
|
|
|
|
if (!n)
|
|
return n;
|
|
|
|
mutex_lock(&n->lock);
|
|
n->phys_addr = CEC_PHYS_ADDR_INVALID;
|
|
if (conn_info)
|
|
n->conn_info = *conn_info;
|
|
else
|
|
memset(&n->conn_info, 0, sizeof(n->conn_info));
|
|
if (n->cec_adap) {
|
|
cec_phys_addr_invalidate(n->cec_adap);
|
|
cec_s_conn_info(n->cec_adap, conn_info);
|
|
}
|
|
mutex_unlock(&n->lock);
|
|
return n;
|
|
}
|
|
EXPORT_SYMBOL_GPL(cec_notifier_conn_register);
|
|
|
|
void cec_notifier_conn_unregister(struct cec_notifier *n)
|
|
{
|
|
if (!n)
|
|
return;
|
|
|
|
mutex_lock(&n->lock);
|
|
memset(&n->conn_info, 0, sizeof(n->conn_info));
|
|
n->phys_addr = CEC_PHYS_ADDR_INVALID;
|
|
if (n->cec_adap) {
|
|
cec_phys_addr_invalidate(n->cec_adap);
|
|
cec_s_conn_info(n->cec_adap, NULL);
|
|
}
|
|
mutex_unlock(&n->lock);
|
|
cec_notifier_put(n);
|
|
}
|
|
EXPORT_SYMBOL_GPL(cec_notifier_conn_unregister);
|
|
|
|
struct cec_notifier *
|
|
cec_notifier_cec_adap_register(struct device *hdmi_dev, const char *port_name,
|
|
struct cec_adapter *adap)
|
|
{
|
|
struct cec_notifier *n;
|
|
|
|
if (WARN_ON(!adap))
|
|
return NULL;
|
|
|
|
n = cec_notifier_get_conn(hdmi_dev, port_name);
|
|
if (!n)
|
|
return n;
|
|
|
|
mutex_lock(&n->lock);
|
|
n->cec_adap = adap;
|
|
adap->conn_info = n->conn_info;
|
|
adap->notifier = n;
|
|
cec_s_phys_addr(adap, n->phys_addr, false);
|
|
mutex_unlock(&n->lock);
|
|
return n;
|
|
}
|
|
EXPORT_SYMBOL_GPL(cec_notifier_cec_adap_register);
|
|
|
|
void cec_notifier_cec_adap_unregister(struct cec_notifier *n,
|
|
struct cec_adapter *adap)
|
|
{
|
|
if (!n)
|
|
return;
|
|
|
|
mutex_lock(&n->lock);
|
|
adap->notifier = NULL;
|
|
n->cec_adap = NULL;
|
|
mutex_unlock(&n->lock);
|
|
cec_notifier_put(n);
|
|
}
|
|
EXPORT_SYMBOL_GPL(cec_notifier_cec_adap_unregister);
|
|
|
|
void cec_notifier_set_phys_addr(struct cec_notifier *n, u16 pa)
|
|
{
|
|
if (n == NULL)
|
|
return;
|
|
|
|
mutex_lock(&n->lock);
|
|
n->phys_addr = pa;
|
|
if (n->cec_adap)
|
|
cec_s_phys_addr(n->cec_adap, n->phys_addr, false);
|
|
mutex_unlock(&n->lock);
|
|
}
|
|
EXPORT_SYMBOL_GPL(cec_notifier_set_phys_addr);
|
|
|
|
void cec_notifier_set_phys_addr_from_edid(struct cec_notifier *n,
|
|
const struct edid *edid)
|
|
{
|
|
u16 pa = CEC_PHYS_ADDR_INVALID;
|
|
|
|
if (n == NULL)
|
|
return;
|
|
|
|
if (edid && edid->extensions)
|
|
pa = cec_get_edid_phys_addr((const u8 *)edid,
|
|
EDID_LENGTH * (edid->extensions + 1), NULL);
|
|
cec_notifier_set_phys_addr(n, pa);
|
|
}
|
|
EXPORT_SYMBOL_GPL(cec_notifier_set_phys_addr_from_edid);
|
|
|
|
struct device *cec_notifier_parse_hdmi_phandle(struct device *dev)
|
|
{
|
|
struct platform_device *hdmi_pdev;
|
|
struct device *hdmi_dev = NULL;
|
|
struct device_node *np;
|
|
|
|
np = of_parse_phandle(dev->of_node, "hdmi-phandle", 0);
|
|
|
|
if (!np) {
|
|
dev_err(dev, "Failed to find HDMI node in device tree\n");
|
|
return ERR_PTR(-ENODEV);
|
|
}
|
|
hdmi_pdev = of_find_device_by_node(np);
|
|
of_node_put(np);
|
|
if (hdmi_pdev) {
|
|
hdmi_dev = &hdmi_pdev->dev;
|
|
/*
|
|
* Note that the device struct is only used as a key into the
|
|
* cec_notifiers list, it is never actually accessed.
|
|
* So we decrement the reference here so we don't leak
|
|
* memory.
|
|
*/
|
|
put_device(hdmi_dev);
|
|
return hdmi_dev;
|
|
}
|
|
return ERR_PTR(-EPROBE_DEFER);
|
|
}
|
|
EXPORT_SYMBOL_GPL(cec_notifier_parse_hdmi_phandle);
|