blob: 59f0649646ea65440ef2ffc625f66d3f032bb198 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass048dba02015-07-02 18:16:10 -06002/*
3 * Copyright (C) 2015 Google, Inc
4 * Written by Simon Glass <sjg@chromium.org>
Simon Glass048dba02015-07-02 18:16:10 -06005 */
6
7#include <common.h>
8#include <dm.h>
9#include <video_bridge.h>
10
11static int ptn3460_attach(struct udevice *dev)
12{
Simon Glass048dba02015-07-02 18:16:10 -060013 debug("%s: %s\n", __func__, dev->name);
Simon Glass048dba02015-07-02 18:16:10 -060014
Masahiro Yamada720873b2016-09-06 22:17:33 +090015 return video_bridge_set_active(dev, true);
Simon Glass048dba02015-07-02 18:16:10 -060016}
17
18struct video_bridge_ops ptn3460_ops = {
19 .attach = ptn3460_attach,
20};
21
22static const struct udevice_id ptn3460_ids[] = {
23 { .compatible = "nxp,ptn3460", },
24 { }
25};
26
27U_BOOT_DRIVER(parade_ptn3460) = {
28 .name = "nmp_ptn3460",
29 .id = UCLASS_VIDEO_BRIDGE,
30 .of_match = ptn3460_ids,
31 .ops = &ptn3460_ops,
32};