fbdev fixes for 6.12-rc5:
- Fix some build warnings and failures with CONFIG_FB_IOMEM_FOPS and CONFIG_FB_DEVICE - Remove the da8xx fbdev driver - Constify struct sbus_mmap_map and fix indentation warning -----BEGIN PGP SIGNATURE----- iHUEABYKAB0WIQS86RI+GtKfB8BJu973ErUQojoPXwUCZxu/TwAKCRD3ErUQojoP XwV/AQC8Q0gNXLH2kx5pgtGwtSHkDJYG0NeMgyN4mUWuk7IEugEAhapxyU+7ZsEk ttpTmiNQU8z80SySPmmgy8/v5VSTpQg= =fh1y -----END PGP SIGNATURE----- Merge tag 'fbdev-for-6.12-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev Pull fbdev fixes from Helge Deller: - Fix some build warnings and failures with CONFIG_FB_IOMEM_FOPS and CONFIG_FB_DEVICE - Remove the da8xx fbdev driver - Constify struct sbus_mmap_map and fix indentation warning * tag 'fbdev-for-6.12-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev: fbdev: wm8505fb: select CONFIG_FB_IOMEM_FOPS fbdev: da8xx: remove the driver fbdev: Constify struct sbus_mmap_map fbdev: nvidiafb: fix inconsistent indentation warning fbdev: sstfb: Make CONFIG_FB_DEVICE optional
This commit is contained in:
commit
86d6688e60
@ -1236,7 +1236,6 @@ config FB_3DFX_I2C
|
||||
config FB_VOODOO1
|
||||
tristate "3Dfx Voodoo Graphics (sst1) support"
|
||||
depends on FB && PCI
|
||||
depends on FB_DEVICE
|
||||
select FB_IOMEM_HELPERS
|
||||
help
|
||||
Say Y here if you have a 3Dfx Voodoo Graphics (Voodoo1/sst1) or
|
||||
@ -1374,6 +1373,7 @@ config FB_VT8500
|
||||
config FB_WM8505
|
||||
bool "Wondermedia WM8xxx-series frame buffer support"
|
||||
depends on (FB = y) && HAS_IOMEM && (ARCH_VT8500 || COMPILE_TEST)
|
||||
select FB_IOMEM_FOPS
|
||||
select FB_SYS_FILLRECT if (!FB_WMT_GE_ROPS)
|
||||
select FB_SYS_COPYAREA if (!FB_WMT_GE_ROPS)
|
||||
select FB_SYS_IMAGEBLIT
|
||||
@ -1660,19 +1660,6 @@ config FB_SH7760
|
||||
and 8, 15 or 16 bpp color; 90 degrees clockwise display rotation for
|
||||
panels <= 320 pixel horizontal resolution.
|
||||
|
||||
config FB_DA8XX
|
||||
tristate "DA8xx/OMAP-L1xx/AM335x Framebuffer support"
|
||||
depends on FB && HAVE_CLK && HAS_IOMEM
|
||||
depends on ARCH_DAVINCI_DA8XX || SOC_AM33XX || COMPILE_TEST
|
||||
select FB_CFB_REV_PIXELS_IN_BYTE
|
||||
select FB_IOMEM_HELPERS
|
||||
select FB_MODE_HELPERS
|
||||
select VIDEOMODE_HELPERS
|
||||
help
|
||||
This is the frame buffer device driver for the TI LCD controller
|
||||
found on DA8xx/OMAP-L1xx/AM335x SoCs.
|
||||
If unsure, say N.
|
||||
|
||||
config FB_VIRTUAL
|
||||
tristate "Virtual Frame Buffer support (ONLY FOR TESTING!)"
|
||||
depends on FB
|
||||
|
@ -121,7 +121,6 @@ obj-$(CONFIG_FB_VESA) += vesafb.o
|
||||
obj-$(CONFIG_FB_EFI) += efifb.o
|
||||
obj-$(CONFIG_FB_VGA16) += vga16fb.o
|
||||
obj-$(CONFIG_FB_OF) += offb.o
|
||||
obj-$(CONFIG_FB_DA8XX) += da8xx-fb.o
|
||||
obj-$(CONFIG_FB_SSD1307) += ssd1307fb.o
|
||||
obj-$(CONFIG_FB_SIMPLE) += simplefb.o
|
||||
|
||||
|
@ -147,7 +147,7 @@ bw2_blank(int blank, struct fb_info *info)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct sbus_mmap_map bw2_mmap_map[] = {
|
||||
static const struct sbus_mmap_map bw2_mmap_map[] = {
|
||||
{
|
||||
.size = SBUS_MMAP_FBSIZE(1)
|
||||
},
|
||||
|
@ -360,7 +360,7 @@ static void cg14_init_fix(struct fb_info *info, int linebytes,
|
||||
info->fix.accel = FB_ACCEL_SUN_CG14;
|
||||
}
|
||||
|
||||
static struct sbus_mmap_map __cg14_mmap_map[CG14_MMAP_ENTRIES] = {
|
||||
static const struct sbus_mmap_map __cg14_mmap_map[CG14_MMAP_ENTRIES] = {
|
||||
{
|
||||
.voff = CG14_REGS,
|
||||
.poff = 0x80000000,
|
||||
|
@ -209,7 +209,7 @@ static int cg3_blank(int blank, struct fb_info *info)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct sbus_mmap_map cg3_mmap_map[] = {
|
||||
static const struct sbus_mmap_map cg3_mmap_map[] = {
|
||||
{
|
||||
.voff = CG3_MMAP_OFFSET,
|
||||
.poff = CG3_RAM_OFFSET,
|
||||
|
@ -545,7 +545,7 @@ static int cg6_blank(int blank, struct fb_info *info)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct sbus_mmap_map cg6_mmap_map[] = {
|
||||
static const struct sbus_mmap_map cg6_mmap_map[] = {
|
||||
{
|
||||
.voff = CG6_FBC,
|
||||
.poff = CG6_FBC_OFFSET,
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -710,7 +710,7 @@ static int ffb_blank(int blank, struct fb_info *info)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct sbus_mmap_map ffb_mmap_map[] = {
|
||||
static const struct sbus_mmap_map ffb_mmap_map[] = {
|
||||
{
|
||||
.voff = FFB_SFB8R_VOFF,
|
||||
.poff = FFB_SFB8R_POFF,
|
||||
|
@ -338,7 +338,7 @@ static int leo_blank(int blank, struct fb_info *info)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct sbus_mmap_map leo_mmap_map[] = {
|
||||
static const struct sbus_mmap_map leo_mmap_map[] = {
|
||||
{
|
||||
.voff = LEO_SS0_MAP,
|
||||
.poff = LEO_OFF_SS0,
|
||||
|
@ -1509,10 +1509,10 @@ void NVLoadStateExt(struct nvidia_par *par, RIVA_HW_STATE * state)
|
||||
NV_WR32(par->PFIFO, 0x0495 * 4, 0x00000001);
|
||||
NV_WR32(par->PFIFO, 0x0140 * 4, 0x00000001);
|
||||
|
||||
if (!state) {
|
||||
par->CurrentState = NULL;
|
||||
return;
|
||||
}
|
||||
if (!state) {
|
||||
par->CurrentState = NULL;
|
||||
return;
|
||||
}
|
||||
|
||||
if (par->Architecture >= NV_ARCH_10) {
|
||||
if (par->twoHeads) {
|
||||
|
@ -206,7 +206,7 @@ p9100_blank(int blank, struct fb_info *info)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct sbus_mmap_map p9100_mmap_map[] = {
|
||||
static const struct sbus_mmap_map p9100_mmap_map[] = {
|
||||
{ CG3_MMAP_OFFSET, 0, SBUS_MMAP_FBSIZE(1) },
|
||||
{ 0, 0, 0 }
|
||||
};
|
||||
|
@ -38,7 +38,7 @@ static unsigned long sbusfb_mmapsize(long size, unsigned long fbsize)
|
||||
return fbsize * (-size);
|
||||
}
|
||||
|
||||
int sbusfb_mmap_helper(struct sbus_mmap_map *map,
|
||||
int sbusfb_mmap_helper(const struct sbus_mmap_map *map,
|
||||
unsigned long physbase,
|
||||
unsigned long fbsize,
|
||||
unsigned long iospace,
|
||||
|
@ -19,7 +19,7 @@ struct sbus_mmap_map {
|
||||
|
||||
extern void sbusfb_fill_var(struct fb_var_screeninfo *var,
|
||||
struct device_node *dp, int bpp);
|
||||
extern int sbusfb_mmap_helper(struct sbus_mmap_map *map,
|
||||
extern int sbusfb_mmap_helper(const struct sbus_mmap_map *map,
|
||||
unsigned long physbase, unsigned long fbsize,
|
||||
unsigned long iospace,
|
||||
struct vm_area_struct *vma);
|
||||
|
@ -716,6 +716,7 @@ static void sstfb_setvgapass( struct fb_info *info, int enable )
|
||||
pci_write_config_dword(sst_dev, PCI_INIT_ENABLE, tmp);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_FB_DEVICE
|
||||
static ssize_t store_vgapass(struct device *device, struct device_attribute *attr,
|
||||
const char *buf, size_t count)
|
||||
{
|
||||
@ -739,7 +740,8 @@ static ssize_t show_vgapass(struct device *device, struct device_attribute *attr
|
||||
|
||||
static struct device_attribute device_attrs[] = {
|
||||
__ATTR(vgapass, S_IRUGO|S_IWUSR, show_vgapass, store_vgapass)
|
||||
};
|
||||
};
|
||||
#endif
|
||||
|
||||
static int sstfb_ioctl(struct fb_info *info, unsigned int cmd,
|
||||
unsigned long arg)
|
||||
@ -1436,9 +1438,10 @@ static int sstfb_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||
|
||||
sstfb_clear_screen(info);
|
||||
|
||||
#ifdef CONFIG_FB_DEVICE
|
||||
if (device_create_file(info->dev, &device_attrs[0]))
|
||||
printk(KERN_WARNING "sstfb: can't create sysfs entry.\n");
|
||||
|
||||
#endif
|
||||
|
||||
fb_info(info, "%s frame buffer device at 0x%p\n",
|
||||
fix->id, info->screen_base);
|
||||
@ -1468,7 +1471,9 @@ static void sstfb_remove(struct pci_dev *pdev)
|
||||
info = pci_get_drvdata(pdev);
|
||||
par = info->par;
|
||||
|
||||
#ifdef CONFIG_FB_DEVICE
|
||||
device_remove_file(info->dev, &device_attrs[0]);
|
||||
#endif
|
||||
sst_shutdown(info);
|
||||
iounmap(info->screen_base);
|
||||
iounmap(par->mmio_vbase);
|
||||
|
@ -236,7 +236,7 @@ tcx_blank(int blank, struct fb_info *info)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct sbus_mmap_map __tcx_mmap_map[TCX_MMAP_ENTRIES] = {
|
||||
static const struct sbus_mmap_map __tcx_mmap_map[TCX_MMAP_ENTRIES] = {
|
||||
{
|
||||
.voff = TCX_RAM8BIT,
|
||||
.size = SBUS_MMAP_FBSIZE(1)
|
||||
|
@ -1,94 +0,0 @@
|
||||
/*
|
||||
* Header file for TI DA8XX LCD controller platform data.
|
||||
*
|
||||
* Copyright (C) 2008-2009 MontaVista Software Inc.
|
||||
* Copyright (C) 2008-2009 Texas Instruments Inc
|
||||
*
|
||||
* This file is licensed under the terms of the GNU General Public License
|
||||
* version 2. This program is licensed "as is" without any warranty of any
|
||||
* kind, whether express or implied.
|
||||
*/
|
||||
|
||||
#ifndef DA8XX_FB_H
|
||||
#define DA8XX_FB_H
|
||||
|
||||
enum panel_shade {
|
||||
MONOCHROME = 0,
|
||||
COLOR_ACTIVE,
|
||||
COLOR_PASSIVE,
|
||||
};
|
||||
|
||||
enum raster_load_mode {
|
||||
LOAD_DATA = 1,
|
||||
LOAD_PALETTE,
|
||||
};
|
||||
|
||||
enum da8xx_frame_complete {
|
||||
DA8XX_FRAME_WAIT,
|
||||
DA8XX_FRAME_NOWAIT,
|
||||
};
|
||||
|
||||
struct da8xx_lcdc_platform_data {
|
||||
const char manu_name[10];
|
||||
void *controller_data;
|
||||
const char type[25];
|
||||
};
|
||||
|
||||
struct lcd_ctrl_config {
|
||||
enum panel_shade panel_shade;
|
||||
|
||||
/* AC Bias Pin Frequency */
|
||||
int ac_bias;
|
||||
|
||||
/* AC Bias Pin Transitions per Interrupt */
|
||||
int ac_bias_intrpt;
|
||||
|
||||
/* DMA burst size */
|
||||
int dma_burst_sz;
|
||||
|
||||
/* Bits per pixel */
|
||||
int bpp;
|
||||
|
||||
/* FIFO DMA Request Delay */
|
||||
int fdd;
|
||||
|
||||
/* TFT Alternative Signal Mapping (Only for active) */
|
||||
unsigned char tft_alt_mode;
|
||||
|
||||
/* 12 Bit Per Pixel (5-6-5) Mode (Only for passive) */
|
||||
unsigned char stn_565_mode;
|
||||
|
||||
/* Mono 8-bit Mode: 1=D0-D7 or 0=D0-D3 */
|
||||
unsigned char mono_8bit_mode;
|
||||
|
||||
/* Horizontal and Vertical Sync Edge: 0=rising 1=falling */
|
||||
unsigned char sync_edge;
|
||||
|
||||
/* Raster Data Order Select: 1=Most-to-least 0=Least-to-most */
|
||||
unsigned char raster_order;
|
||||
|
||||
/* DMA FIFO threshold */
|
||||
int fifo_th;
|
||||
};
|
||||
|
||||
struct lcd_sync_arg {
|
||||
int back_porch;
|
||||
int front_porch;
|
||||
int pulse_width;
|
||||
};
|
||||
|
||||
/* ioctls */
|
||||
#define FBIOGET_CONTRAST _IOR('F', 1, int)
|
||||
#define FBIOPUT_CONTRAST _IOW('F', 2, int)
|
||||
#define FBIGET_BRIGHTNESS _IOR('F', 3, int)
|
||||
#define FBIPUT_BRIGHTNESS _IOW('F', 3, int)
|
||||
#define FBIGET_COLOR _IOR('F', 5, int)
|
||||
#define FBIPUT_COLOR _IOW('F', 6, int)
|
||||
#define FBIPUT_HSYNC _IOW('F', 9, int)
|
||||
#define FBIPUT_VSYNC _IOW('F', 10, int)
|
||||
|
||||
/* Proprietary FB_SYNC_ flags */
|
||||
#define FB_SYNC_CLK_INVERT 0x40000000
|
||||
|
||||
#endif /* ifndef DA8XX_FB_H */
|
||||
|
Loading…
Reference in New Issue
Block a user