Shifting signed 32-bit value by 31 bits is undefined, so changing
significant bit to unsigned. The UBSAN warning calltrace like below:
UBSAN: shift-out-of-bounds in ./include/drm/ttm/ttm_tt.h:122:26
left shift of 1 by 31 places cannot be represented in type 'int'
Call Trace:
<TASK>
dump_stack_lvl+0x7d/0xa5
dump_stack+0x15/0x1b
ubsan_epilogue+0xe/0x4e
__ubsan_handle_shift_out_of_bounds+0x1e7/0x20c
ttm_bo_move_memcpy+0x3b4/0x460 [ttm]
bo_driver_move+0x32/0x40 [drm_vram_helper]
ttm_bo_handle_move_mem+0x118/0x200 [ttm]
ttm_bo_validate+0xfa/0x220 [ttm]
drm_gem_vram_pin_locked+0x70/0x1b0 [drm_vram_helper]
drm_gem_vram_pin+0x48/0xb0 [drm_vram_helper]
drm_gem_vram_plane_helper_prepare_fb+0x53/0xe0 [drm_vram_helper]
drm_gem_vram_simple_display_pipe_prepare_fb+0x26/0x30 [drm_vram_helper]
drm_simple_kms_plane_prepare_fb+0x4d/0xe0 [drm_kms_helper]
drm_atomic_helper_prepare_planes+0xda/0x210 [drm_kms_helper]
drm_atomic_helper_commit+0xc3/0x1e0 [drm_kms_helper]
drm_atomic_commit+0x9c/0x160 [drm]
drm_client_modeset_commit_atomic+0x33a/0x380 [drm]
drm_client_modeset_commit_locked+0x77/0x220 [drm]
drm_client_modeset_commit+0x31/0x60 [drm]
__drm_fb_helper_restore_fbdev_mode_unlocked+0xa7/0x170 [drm_kms_helper]
drm_fb_helper_set_par+0x51/0x90 [drm_kms_helper]
fbcon_init+0x316/0x790
visual_init+0x113/0x1d0
do_bind_con_driver+0x2a3/0x5c0
do_take_over_console+0xa9/0x270
do_fbcon_takeover+0xa1/0x170
do_fb_registered+0x2a8/0x340
fbcon_fb_registered+0x47/0xe0
register_framebuffer+0x294/0x4a0
__drm_fb_helper_initial_config_and_unlock+0x43c/0x880 [drm_kms_helper]
drm_fb_helper_initial_config+0x52/0x80 [drm_kms_helper]
drm_fbdev_client_hotplug+0x156/0x1b0 [drm_kms_helper]
drm_fbdev_generic_setup+0xfc/0x290 [drm_kms_helper]
bochs_pci_probe+0x6ca/0x772 [bochs]
local_pci_probe+0x4d/0xb0
pci_device_probe+0x119/0x320
really_probe+0x181/0x550
__driver_probe_device+0xc6/0x220
driver_probe_device+0x32/0x100
__driver_attach+0x195/0x200
bus_for_each_dev+0xbb/0x120
driver_attach+0x27/0x30
bus_add_driver+0x22e/0x2f0
driver_register+0xa9/0x190
__pci_register_driver+0x90/0xa0
bochs_pci_driver_init+0x52/0x1000 [bochs]
do_one_initcall+0x76/0x430
do_init_module+0x61/0x28a
load_module+0x1f82/0x2e50
__do_sys_finit_module+0xf8/0x190
__x64_sys_finit_module+0x23/0x30
do_syscall_64+0x58/0x80
entry_SYSCALL_64_after_hwframe+0x63/0xcd
</TASK>
Fixes: 3312be8f6f
("drm/ttm: move populated state into page flags")
Signed-off-by: Gaosheng Cui <cuigaosheng1@huawei.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20221031113350.4180975-1-cuigaosheng1@huawei.com
Signed-off-by: Christian König <christian.koenig@amd.com>
250 lines
7.8 KiB
C
250 lines
7.8 KiB
C
/**************************************************************************
|
|
*
|
|
* Copyright (c) 2006-2009 Vmware, Inc., Palo Alto, CA., USA
|
|
* All Rights Reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sub license, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice (including the
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
* of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
|
|
* THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
|
|
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
|
|
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
|
|
* USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
**************************************************************************/
|
|
#ifndef _TTM_TT_H_
|
|
#define _TTM_TT_H_
|
|
|
|
#include <linux/pagemap.h>
|
|
#include <linux/types.h>
|
|
#include <drm/ttm/ttm_caching.h>
|
|
#include <drm/ttm/ttm_kmap_iter.h>
|
|
|
|
struct ttm_device;
|
|
struct ttm_tt;
|
|
struct ttm_resource;
|
|
struct ttm_buffer_object;
|
|
struct ttm_operation_ctx;
|
|
|
|
/**
|
|
* struct ttm_tt - This is a structure holding the pages, caching- and aperture
|
|
* binding status for a buffer object that isn't backed by fixed (VRAM / AGP)
|
|
* memory.
|
|
*/
|
|
struct ttm_tt {
|
|
/** @pages: Array of pages backing the data. */
|
|
struct page **pages;
|
|
/**
|
|
* @page_flags: The page flags.
|
|
*
|
|
* Supported values:
|
|
*
|
|
* TTM_TT_FLAG_SWAPPED: Set by TTM when the pages have been unpopulated
|
|
* and swapped out by TTM. Calling ttm_tt_populate() will then swap the
|
|
* pages back in, and unset the flag. Drivers should in general never
|
|
* need to touch this.
|
|
*
|
|
* TTM_TT_FLAG_ZERO_ALLOC: Set if the pages will be zeroed on
|
|
* allocation.
|
|
*
|
|
* TTM_TT_FLAG_EXTERNAL: Set if the underlying pages were allocated
|
|
* externally, like with dma-buf or userptr. This effectively disables
|
|
* TTM swapping out such pages. Also important is to prevent TTM from
|
|
* ever directly mapping these pages.
|
|
*
|
|
* Note that enum ttm_bo_type.ttm_bo_type_sg objects will always enable
|
|
* this flag.
|
|
*
|
|
* TTM_TT_FLAG_EXTERNAL_MAPPABLE: Same behaviour as
|
|
* TTM_TT_FLAG_EXTERNAL, but with the reduced restriction that it is
|
|
* still valid to use TTM to map the pages directly. This is useful when
|
|
* implementing a ttm_tt backend which still allocates driver owned
|
|
* pages underneath(say with shmem).
|
|
*
|
|
* Note that since this also implies TTM_TT_FLAG_EXTERNAL, the usage
|
|
* here should always be:
|
|
*
|
|
* page_flags = TTM_TT_FLAG_EXTERNAL |
|
|
* TTM_TT_FLAG_EXTERNAL_MAPPABLE;
|
|
*
|
|
* TTM_TT_FLAG_PRIV_POPULATED: TTM internal only. DO NOT USE. This is
|
|
* set by TTM after ttm_tt_populate() has successfully returned, and is
|
|
* then unset when TTM calls ttm_tt_unpopulate().
|
|
*/
|
|
#define TTM_TT_FLAG_SWAPPED (1 << 0)
|
|
#define TTM_TT_FLAG_ZERO_ALLOC (1 << 1)
|
|
#define TTM_TT_FLAG_EXTERNAL (1 << 2)
|
|
#define TTM_TT_FLAG_EXTERNAL_MAPPABLE (1 << 3)
|
|
|
|
#define TTM_TT_FLAG_PRIV_POPULATED (1U << 31)
|
|
uint32_t page_flags;
|
|
/** @num_pages: Number of pages in the page array. */
|
|
uint32_t num_pages;
|
|
/** @sg: for SG objects via dma-buf. */
|
|
struct sg_table *sg;
|
|
/** @dma_address: The DMA (bus) addresses of the pages. */
|
|
dma_addr_t *dma_address;
|
|
/** @swap_storage: Pointer to shmem struct file for swap storage. */
|
|
struct file *swap_storage;
|
|
/**
|
|
* @caching: The current caching state of the pages, see enum
|
|
* ttm_caching.
|
|
*/
|
|
enum ttm_caching caching;
|
|
};
|
|
|
|
/**
|
|
* struct ttm_kmap_iter_tt - Specialization of a mappig iterator for a tt.
|
|
* @base: Embedded struct ttm_kmap_iter providing the usage interface
|
|
* @tt: Cached struct ttm_tt.
|
|
* @prot: Cached page protection for mapping.
|
|
*/
|
|
struct ttm_kmap_iter_tt {
|
|
struct ttm_kmap_iter base;
|
|
struct ttm_tt *tt;
|
|
pgprot_t prot;
|
|
};
|
|
|
|
static inline bool ttm_tt_is_populated(struct ttm_tt *tt)
|
|
{
|
|
return tt->page_flags & TTM_TT_FLAG_PRIV_POPULATED;
|
|
}
|
|
|
|
/**
|
|
* ttm_tt_create
|
|
*
|
|
* @bo: pointer to a struct ttm_buffer_object
|
|
* @zero_alloc: true if allocated pages needs to be zeroed
|
|
*
|
|
* Make sure we have a TTM structure allocated for the given BO.
|
|
* No pages are actually allocated.
|
|
*/
|
|
int ttm_tt_create(struct ttm_buffer_object *bo, bool zero_alloc);
|
|
|
|
/**
|
|
* ttm_tt_init
|
|
*
|
|
* @ttm: The struct ttm_tt.
|
|
* @bo: The buffer object we create the ttm for.
|
|
* @page_flags: Page flags as identified by TTM_TT_FLAG_XX flags.
|
|
* @caching: the desired caching state of the pages
|
|
* @extra_pages: Extra pages needed for the driver.
|
|
*
|
|
* Create a struct ttm_tt to back data with system memory pages.
|
|
* No pages are actually allocated.
|
|
* Returns:
|
|
* NULL: Out of memory.
|
|
*/
|
|
int ttm_tt_init(struct ttm_tt *ttm, struct ttm_buffer_object *bo,
|
|
uint32_t page_flags, enum ttm_caching caching,
|
|
unsigned long extra_pages);
|
|
int ttm_sg_tt_init(struct ttm_tt *ttm_dma, struct ttm_buffer_object *bo,
|
|
uint32_t page_flags, enum ttm_caching caching);
|
|
|
|
/**
|
|
* ttm_tt_fini
|
|
*
|
|
* @ttm: the ttm_tt structure.
|
|
*
|
|
* Free memory of ttm_tt structure
|
|
*/
|
|
void ttm_tt_fini(struct ttm_tt *ttm);
|
|
|
|
/**
|
|
* ttm_tt_destroy:
|
|
*
|
|
* @bdev: the ttm_device this object belongs to
|
|
* @ttm: The struct ttm_tt.
|
|
*
|
|
* Unbind, unpopulate and destroy common struct ttm_tt.
|
|
*/
|
|
void ttm_tt_destroy(struct ttm_device *bdev, struct ttm_tt *ttm);
|
|
|
|
/**
|
|
* ttm_tt_swapin:
|
|
*
|
|
* @ttm: The struct ttm_tt.
|
|
*
|
|
* Swap in a previously swap out ttm_tt.
|
|
*/
|
|
int ttm_tt_swapin(struct ttm_tt *ttm);
|
|
int ttm_tt_swapout(struct ttm_device *bdev, struct ttm_tt *ttm,
|
|
gfp_t gfp_flags);
|
|
|
|
/**
|
|
* ttm_tt_populate - allocate pages for a ttm
|
|
*
|
|
* @bdev: the ttm_device this object belongs to
|
|
* @ttm: Pointer to the ttm_tt structure
|
|
* @ctx: operation context for populating the tt object.
|
|
*
|
|
* Calls the driver method to allocate pages for a ttm
|
|
*/
|
|
int ttm_tt_populate(struct ttm_device *bdev, struct ttm_tt *ttm,
|
|
struct ttm_operation_ctx *ctx);
|
|
|
|
/**
|
|
* ttm_tt_unpopulate - free pages from a ttm
|
|
*
|
|
* @bdev: the ttm_device this object belongs to
|
|
* @ttm: Pointer to the ttm_tt structure
|
|
*
|
|
* Calls the driver method to free all pages from a ttm
|
|
*/
|
|
void ttm_tt_unpopulate(struct ttm_device *bdev, struct ttm_tt *ttm);
|
|
|
|
/**
|
|
* ttm_tt_mark_for_clear - Mark pages for clearing on populate.
|
|
*
|
|
* @ttm: Pointer to the ttm_tt structure
|
|
*
|
|
* Marks pages for clearing so that the next time the page vector is
|
|
* populated, the pages will be cleared.
|
|
*/
|
|
static inline void ttm_tt_mark_for_clear(struct ttm_tt *ttm)
|
|
{
|
|
ttm->page_flags |= TTM_TT_FLAG_ZERO_ALLOC;
|
|
}
|
|
|
|
void ttm_tt_mgr_init(unsigned long num_pages, unsigned long num_dma32_pages);
|
|
|
|
struct ttm_kmap_iter *ttm_kmap_iter_tt_init(struct ttm_kmap_iter_tt *iter_tt,
|
|
struct ttm_tt *tt);
|
|
|
|
#if IS_ENABLED(CONFIG_AGP)
|
|
#include <linux/agp_backend.h>
|
|
|
|
/**
|
|
* ttm_agp_tt_create
|
|
*
|
|
* @bo: Buffer object we allocate the ttm for.
|
|
* @bridge: The agp bridge this device is sitting on.
|
|
* @page_flags: Page flags as identified by TTM_TT_FLAG_XX flags.
|
|
*
|
|
*
|
|
* Create a TTM backend that uses the indicated AGP bridge as an aperture
|
|
* for TT memory. This function uses the linux agpgart interface to
|
|
* bind and unbind memory backing a ttm_tt.
|
|
*/
|
|
struct ttm_tt *ttm_agp_tt_create(struct ttm_buffer_object *bo,
|
|
struct agp_bridge_data *bridge,
|
|
uint32_t page_flags);
|
|
int ttm_agp_bind(struct ttm_tt *ttm, struct ttm_resource *bo_mem);
|
|
void ttm_agp_unbind(struct ttm_tt *ttm);
|
|
void ttm_agp_destroy(struct ttm_tt *ttm);
|
|
bool ttm_agp_is_bound(struct ttm_tt *ttm);
|
|
#endif
|
|
|
|
#endif
|