72 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * drivers/video/geode/video_cs5530.h4 * -- CS5530 video device5 *6 * Copyright (C) 2005 Arcom Control Systems Ltd.7 *8 * Based on AMD's original 2.4 driver:9 * Copyright (C) 2004 Advanced Micro Devices, Inc.10 */11#ifndef __VIDEO_CS5530_H__12#define __VIDEO_CS5530_H__13 14extern const struct geode_vid_ops cs5530_vid_ops;15 16/* CS5530 Video device registers */17 18#define CS5530_VIDEO_CONFIG 0x000019# define CS5530_VCFG_VID_EN 0x0000000120# define CS5530_VCFG_VID_REG_UPDATE 0x0000000221# define CS5530_VCFG_VID_INP_FORMAT 0x0000000C22# define CS5530_VCFG_8_BIT_4_2_0 0x0000000423# define CS5530_VCFG_16_BIT_4_2_0 0x0000000824# define CS5530_VCFG_GV_SEL 0x0000001025# define CS5530_VCFG_CSC_BYPASS 0x0000002026# define CS5530_VCFG_X_FILTER_EN 0x0000004027# define CS5530_VCFG_Y_FILTER_EN 0x0000008028# define CS5530_VCFG_LINE_SIZE_LOWER_MASK 0x0000FF0029# define CS5530_VCFG_INIT_READ_MASK 0x01FF000030# define CS5530_VCFG_EARLY_VID_RDY 0x0200000031# define CS5530_VCFG_LINE_SIZE_UPPER 0x0800000032# define CS5530_VCFG_4_2_0_MODE 0x1000000033# define CS5530_VCFG_16_BIT_EN 0x2000000034# define CS5530_VCFG_HIGH_SPD_INT 0x4000000035 36#define CS5530_DISPLAY_CONFIG 0x000437# define CS5530_DCFG_DIS_EN 0x0000000138# define CS5530_DCFG_HSYNC_EN 0x0000000239# define CS5530_DCFG_VSYNC_EN 0x0000000440# define CS5530_DCFG_DAC_BL_EN 0x0000000841# define CS5530_DCFG_DAC_PWR_EN 0x0000002042# define CS5530_DCFG_FP_PWR_EN 0x0000004043# define CS5530_DCFG_FP_DATA_EN 0x0000008044# define CS5530_DCFG_CRT_HSYNC_POL 0x0000010045# define CS5530_DCFG_CRT_VSYNC_POL 0x0000020046# define CS5530_DCFG_FP_HSYNC_POL 0x0000040047# define CS5530_DCFG_FP_VSYNC_POL 0x0000080048# define CS5530_DCFG_XGA_FP 0x0000100049# define CS5530_DCFG_FP_DITH_EN 0x0000200050# define CS5530_DCFG_CRT_SYNC_SKW_MASK 0x0001C00051# define CS5530_DCFG_CRT_SYNC_SKW_INIT 0x0001000052# define CS5530_DCFG_PWR_SEQ_DLY_MASK 0x000E000053# define CS5530_DCFG_PWR_SEQ_DLY_INIT 0x0008000054# define CS5530_DCFG_VG_CK 0x0010000055# define CS5530_DCFG_GV_PAL_BYP 0x0020000056# define CS5530_DCFG_DDC_SCL 0x0040000057# define CS5530_DCFG_DDC_SDA 0x0080000058# define CS5530_DCFG_DDC_OE 0x0100000059# define CS5530_DCFG_16_BIT_EN 0x0200000060 61#define CS5530_VIDEO_X_POS 0x000862#define CS5530_VIDEO_Y_POS 0x000C63#define CS5530_VIDEO_SCALE 0x001064#define CS5530_VIDEO_COLOR_KEY 0x001465#define CS5530_VIDEO_COLOR_MASK 0x001866#define CS5530_PALETTE_ADDRESS 0x001C67#define CS5530_PALETTE_DATA 0x002068#define CS5530_DOT_CLK_CONFIG 0x002469#define CS5530_CRCSIG_TFT_TV 0x002870 71#endif /* !__VIDEO_CS5530_H__ */72