2017-12-26 03:54:33 +08: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 23:41:33 +08:00
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/fb.h>
|
2010-08-05 06:54:49 +08:00
|
|
|
#include <linux/gpio.h>
|
2008-11-19 23:41:33 +08:00
|
|
|
|
2019-09-03 00:37:30 +08:00
|
|
|
#include "fb.h"
|
|
|
|
#include "gpio-cfg.h"
|
|
|
|
#include "gpio-samsung.h"
|
2008-11-19 23:41:33 +08:00
|
|
|
|
2011-12-02 13:17:36 +08:00
|
|
|
void s3c64xx_fb_gpio_setup_24bpp(void)
|
2008-11-19 23:41:33 +08:00
|
|
|
{
|
2010-10-01 19:20:37 +08: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 23:41:33 +08:00
|
|
|
}
|