Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 2 | #include <linux/io.h> |
Gerd Hoffmann | b8ccd70 | 2014-04-14 11:34:49 +0200 | [diff] [blame] | 3 | #include <linux/console.h> |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 4 | |
| 5 | #include <drm/drmP.h> |
| 6 | #include <drm/drm_crtc.h> |
| 7 | #include <drm/drm_crtc_helper.h> |
Laurent Pinchart | 9338203 | 2016-11-28 20:51:09 +0200 | [diff] [blame] | 8 | #include <drm/drm_encoder.h> |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 9 | #include <drm/drm_fb_helper.h> |
| 10 | |
Daniel Vetter | d9fc941 | 2014-09-23 15:46:53 +0200 | [diff] [blame] | 11 | #include <drm/drm_gem.h> |
| 12 | |
Masahiro Yamada | 61da540 | 2017-04-24 13:50:23 +0900 | [diff] [blame] | 13 | #include <drm/ttm/ttm_bo_driver.h> |
| 14 | #include <drm/ttm/ttm_page_alloc.h> |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 15 | |
| 16 | /* ---------------------------------------------------------------------- */ |
| 17 | |
| 18 | #define VBE_DISPI_IOPORT_INDEX 0x01CE |
| 19 | #define VBE_DISPI_IOPORT_DATA 0x01CF |
| 20 | |
| 21 | #define VBE_DISPI_INDEX_ID 0x0 |
| 22 | #define VBE_DISPI_INDEX_XRES 0x1 |
| 23 | #define VBE_DISPI_INDEX_YRES 0x2 |
| 24 | #define VBE_DISPI_INDEX_BPP 0x3 |
| 25 | #define VBE_DISPI_INDEX_ENABLE 0x4 |
| 26 | #define VBE_DISPI_INDEX_BANK 0x5 |
| 27 | #define VBE_DISPI_INDEX_VIRT_WIDTH 0x6 |
| 28 | #define VBE_DISPI_INDEX_VIRT_HEIGHT 0x7 |
| 29 | #define VBE_DISPI_INDEX_X_OFFSET 0x8 |
| 30 | #define VBE_DISPI_INDEX_Y_OFFSET 0x9 |
| 31 | #define VBE_DISPI_INDEX_VIDEO_MEMORY_64K 0xa |
| 32 | |
| 33 | #define VBE_DISPI_ID0 0xB0C0 |
| 34 | #define VBE_DISPI_ID1 0xB0C1 |
| 35 | #define VBE_DISPI_ID2 0xB0C2 |
| 36 | #define VBE_DISPI_ID3 0xB0C3 |
| 37 | #define VBE_DISPI_ID4 0xB0C4 |
| 38 | #define VBE_DISPI_ID5 0xB0C5 |
| 39 | |
| 40 | #define VBE_DISPI_DISABLED 0x00 |
| 41 | #define VBE_DISPI_ENABLED 0x01 |
| 42 | #define VBE_DISPI_GETCAPS 0x02 |
| 43 | #define VBE_DISPI_8BIT_DAC 0x20 |
| 44 | #define VBE_DISPI_LFB_ENABLED 0x40 |
| 45 | #define VBE_DISPI_NOCLEARMEM 0x80 |
| 46 | |
| 47 | /* ---------------------------------------------------------------------- */ |
| 48 | |
| 49 | enum bochs_types { |
| 50 | BOCHS_QEMU_STDVGA, |
| 51 | BOCHS_UNKNOWN, |
| 52 | }; |
| 53 | |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 54 | struct bochs_device { |
| 55 | /* hw */ |
| 56 | void __iomem *mmio; |
| 57 | int ioports; |
| 58 | void __iomem *fb_map; |
| 59 | unsigned long fb_base; |
| 60 | unsigned long fb_size; |
Gerd Hoffmann | 86351de | 2018-09-21 15:47:02 +0200 | [diff] [blame] | 61 | unsigned long qext_size; |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 62 | |
| 63 | /* mode */ |
| 64 | u16 xres; |
| 65 | u16 yres; |
| 66 | u16 yres_virtual; |
| 67 | u32 stride; |
| 68 | u32 bpp; |
| 69 | |
| 70 | /* drm */ |
| 71 | struct drm_device *dev; |
| 72 | struct drm_crtc crtc; |
| 73 | struct drm_encoder encoder; |
| 74 | struct drm_connector connector; |
| 75 | bool mode_config_initialized; |
| 76 | |
| 77 | /* ttm */ |
| 78 | struct { |
| 79 | struct drm_global_reference mem_global_ref; |
| 80 | struct ttm_bo_global_ref bo_global_ref; |
| 81 | struct ttm_bo_device bdev; |
| 82 | bool initialized; |
| 83 | } ttm; |
| 84 | |
| 85 | /* fbdev */ |
| 86 | struct { |
Peter Wu | df2052c | 2018-09-07 00:18:08 +0200 | [diff] [blame] | 87 | struct drm_framebuffer *fb; |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 88 | struct drm_fb_helper helper; |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 89 | } fb; |
| 90 | }; |
| 91 | |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 92 | struct bochs_bo { |
| 93 | struct ttm_buffer_object bo; |
| 94 | struct ttm_placement placement; |
| 95 | struct ttm_bo_kmap_obj kmap; |
| 96 | struct drm_gem_object gem; |
Christian König | f1217ed | 2014-08-27 13:16:04 +0200 | [diff] [blame] | 97 | struct ttm_place placements[3]; |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 98 | int pin_count; |
| 99 | }; |
| 100 | |
| 101 | static inline struct bochs_bo *bochs_bo(struct ttm_buffer_object *bo) |
| 102 | { |
| 103 | return container_of(bo, struct bochs_bo, bo); |
| 104 | } |
| 105 | |
| 106 | static inline struct bochs_bo *gem_to_bochs_bo(struct drm_gem_object *gem) |
| 107 | { |
| 108 | return container_of(gem, struct bochs_bo, gem); |
| 109 | } |
| 110 | |
| 111 | #define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT) |
| 112 | |
| 113 | static inline u64 bochs_bo_mmap_offset(struct bochs_bo *bo) |
| 114 | { |
| 115 | return drm_vma_node_offset_addr(&bo->bo.vma_node); |
| 116 | } |
| 117 | |
| 118 | /* ---------------------------------------------------------------------- */ |
| 119 | |
| 120 | /* bochs_hw.c */ |
Peter Wu | 7780eb9 | 2018-09-07 00:18:09 +0200 | [diff] [blame] | 121 | int bochs_hw_init(struct drm_device *dev); |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 122 | void bochs_hw_fini(struct drm_device *dev); |
| 123 | |
| 124 | void bochs_hw_setmode(struct bochs_device *bochs, |
Gerd Hoffmann | 86351de | 2018-09-21 15:47:02 +0200 | [diff] [blame] | 125 | struct drm_display_mode *mode, |
| 126 | const struct drm_format_info *format); |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 127 | void bochs_hw_setbase(struct bochs_device *bochs, |
| 128 | int x, int y, u64 addr); |
| 129 | |
| 130 | /* bochs_mm.c */ |
| 131 | int bochs_mm_init(struct bochs_device *bochs); |
| 132 | void bochs_mm_fini(struct bochs_device *bochs); |
| 133 | int bochs_mmap(struct file *filp, struct vm_area_struct *vma); |
| 134 | |
| 135 | int bochs_gem_create(struct drm_device *dev, u32 size, bool iskernel, |
| 136 | struct drm_gem_object **obj); |
| 137 | int bochs_gem_init_object(struct drm_gem_object *obj); |
| 138 | void bochs_gem_free_object(struct drm_gem_object *obj); |
| 139 | int bochs_dumb_create(struct drm_file *file, struct drm_device *dev, |
| 140 | struct drm_mode_create_dumb *args); |
| 141 | int bochs_dumb_mmap_offset(struct drm_file *file, struct drm_device *dev, |
| 142 | uint32_t handle, uint64_t *offset); |
| 143 | |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 144 | int bochs_bo_pin(struct bochs_bo *bo, u32 pl_flag, u64 *gpu_addr); |
| 145 | int bochs_bo_unpin(struct bochs_bo *bo); |
| 146 | |
Gerd Hoffmann | 0a6659b | 2013-12-17 18:04:46 +0100 | [diff] [blame] | 147 | /* bochs_kms.c */ |
| 148 | int bochs_kms_init(struct bochs_device *bochs); |
| 149 | void bochs_kms_fini(struct bochs_device *bochs); |
| 150 | |
| 151 | /* bochs_fbdev.c */ |
| 152 | int bochs_fbdev_init(struct bochs_device *bochs); |
| 153 | void bochs_fbdev_fini(struct bochs_device *bochs); |
Peter Wu | df2052c | 2018-09-07 00:18:08 +0200 | [diff] [blame] | 154 | |
| 155 | extern const struct drm_mode_config_funcs bochs_mode_funcs; |