blob: bf04deed5ba97c2056fa17d4b58abe2f4f02ef32 [file] [log] [blame]
Stefan Reinauere5a0a5d2012-09-19 10:51:48 -07001/*
2 * This file is part of the coreboot project.
3 *
Stefan Reinauere5a0a5d2012-09-19 10:51:48 -07004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Stefan Reinauere5a0a5d2012-09-19 10:51:48 -070013 */
14
Iru Caid7ee9dd2016-02-24 15:03:58 +080015#ifndef NORTHBRIDGE_INTEL_SANDYBRIDGE_GMA_H
16#define NORTHBRIDGE_INTEL_SANDYBRIDGE_GMA_H
17
Vladimir Serbinenkoa71bdc32014-08-30 00:35:39 +020018struct i915_gpu_controller_info;
Stefan Reinauere5a0a5d2012-09-19 10:51:48 -070019
Angel Pons7c49cb82020-03-16 23:17:32 +010020int i915lightup_sandy(const struct i915_gpu_controller_info *info, u32 physbase, u16 pio,
21 u8 *mmio, u32 lfb);
22
23int i915lightup_ivy(const struct i915_gpu_controller_info *info, u32 physbase, u16 pio,
24 u8 *mmio, u32 lfb);
Iru Caid7ee9dd2016-02-24 15:03:58 +080025
26#endif /* NORTHBRIDGE_INTEL_SANDYBRIDGE_GMA_H */