2017-12-25 19:54:33 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
//
|
|
|
|
// Copyright 2008 Openmoko, Inc.
|
|
|
|
// Copyright 2008 Simtec Electronics
|
|
|
|
// Ben Dooks <ben@simtec.co.uk>
|
|
|
|
// http://armlinux.simtec.co.uk/
|
|
|
|
//
|
|
|
|
// Base S3C64XX setup information for 24bpp LCD framebuffer
|
2008-11-19 15:41:33 +00:00
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/fb.h>
|
2010-08-04 22:54:49 +00:00
|
|
|
#include <linux/gpio.h>
|
2008-11-19 15:41:33 +00:00
|
|
|
|
|
|
|
#include <plat/fb.h>
|
|
|
|
#include <plat/gpio-cfg.h>
|
2014-01-14 13:24:24 +00:00
|
|
|
#include <mach/gpio-samsung.h>
|
2008-11-19 15:41:33 +00:00
|
|
|
|
2011-12-02 05:17:36 +00:00
|
|
|
void s3c64xx_fb_gpio_setup_24bpp(void)
|
2008-11-19 15:41:33 +00:00
|
|
|
{
|
2010-10-01 11:20:37 +00:00
|
|
|
s3c_gpio_cfgrange_nopull(S3C64XX_GPI(0), 16, S3C_GPIO_SFN(2));
|
|
|
|
s3c_gpio_cfgrange_nopull(S3C64XX_GPJ(0), 12, S3C_GPIO_SFN(2));
|
2008-11-19 15:41:33 +00:00
|
|
|
}
|