1*388bb6deSriastradh /* $NetBSD: vlv_dsi.c,v 1.3 2021/12/19 11:50:31 riastradh Exp $ */
2190897e9Sriastradh
3190897e9Sriastradh /*-
4190897e9Sriastradh * Copyright (c) 2018 The NetBSD Foundation, Inc.
5190897e9Sriastradh * All rights reserved.
6190897e9Sriastradh *
7190897e9Sriastradh * This code is derived from software contributed to The NetBSD Foundation
8190897e9Sriastradh * by Taylor R. Campbell.
9190897e9Sriastradh *
10190897e9Sriastradh * Redistribution and use in source and binary forms, with or without
11190897e9Sriastradh * modification, are permitted provided that the following conditions
12190897e9Sriastradh * are met:
13190897e9Sriastradh * 1. Redistributions of source code must retain the above copyright
14190897e9Sriastradh * notice, this list of conditions and the following disclaimer.
15190897e9Sriastradh * 2. Redistributions in binary form must reproduce the above copyright
16190897e9Sriastradh * notice, this list of conditions and the following disclaimer in the
17190897e9Sriastradh * documentation and/or other materials provided with the distribution.
18190897e9Sriastradh *
19190897e9Sriastradh * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20190897e9Sriastradh * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21190897e9Sriastradh * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22190897e9Sriastradh * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23190897e9Sriastradh * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24190897e9Sriastradh * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25190897e9Sriastradh * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26190897e9Sriastradh * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27190897e9Sriastradh * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28190897e9Sriastradh * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29190897e9Sriastradh * POSSIBILITY OF SUCH DAMAGE.
30190897e9Sriastradh */
31190897e9Sriastradh
32190897e9Sriastradh #include <sys/cdefs.h>
33*388bb6deSriastradh __KERNEL_RCSID(0, "$NetBSD: vlv_dsi.c,v 1.3 2021/12/19 11:50:31 riastradh Exp $");
34190897e9Sriastradh
35dfa0e026Sriastradh #include "display/intel_dsi.h"
36190897e9Sriastradh
37190897e9Sriastradh void
vlv_dsi_init(struct drm_i915_private * dev_priv)38190897e9Sriastradh vlv_dsi_init(struct drm_i915_private *dev_priv)
39190897e9Sriastradh {
40190897e9Sriastradh }
41*388bb6deSriastradh
42*388bb6deSriastradh bool
bxt_dsi_pll_is_enabled(struct drm_i915_private * dev_priv)43*388bb6deSriastradh bxt_dsi_pll_is_enabled(struct drm_i915_private *dev_priv)
44*388bb6deSriastradh {
45*388bb6deSriastradh return 0;
46*388bb6deSriastradh }
47