Skip to content

Commit

Permalink
Kobo sunxi support (ion buffers/disp2 display driver) (#1386)
Browse files Browse the repository at this point in the history
Includes a minor refactor to its MXCFB cousin to simplify the refresh API, and keep the FFI structs around instead of reallocating them on each refresh.
  • Loading branch information
NiLuJe committed Jul 21, 2021
1 parent 66999c3 commit 85d9692
Show file tree
Hide file tree
Showing 21 changed files with 2,538 additions and 442 deletions.
294 changes: 294 additions & 0 deletions ffi-cdecl/include/ion-kobo.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,294 @@
/*
* drivers/staging/android/uapi/ion.h
*
* Copyright (C) 2011 Google, Inc.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/

#ifndef _UAPI_LINUX_ION_H
#define _UAPI_LINUX_ION_H

#include <stddef.h>
#include <stdint.h>

#include <linux/ioctl.h>

// NOTE: Valid handles start at 1, as per the idr_alloc call in ion_handle_add
typedef int ion_user_handle_t;

/**
* enum ion_heap_types - list of all possible types of heaps
* @ION_HEAP_TYPE_SYSTEM: memory allocated via vmalloc
* @ION_HEAP_TYPE_SYSTEM_CONTIG: memory allocated via kmalloc
* @ION_HEAP_TYPE_CARVEOUT: memory allocated from a prereserved
* carveout heap, allocations are physically
* contiguous
* @ION_HEAP_TYPE_DMA: memory allocated via DMA API
* @ION_NUM_HEAPS: helper for iterating over heaps, a bit mask
* is used to identify the heaps, so only 32
* total heap types are supported
*/
enum ion_heap_type
{
ION_HEAP_TYPE_SYSTEM,
ION_HEAP_TYPE_SYSTEM_CONTIG,
ION_HEAP_TYPE_CARVEOUT,
ION_HEAP_TYPE_CHUNK,
ION_HEAP_TYPE_DMA,
ION_HEAP_TYPE_CUSTOM, /*
* must be last so device specific heaps always
* are at the end of this enum
*/
ION_HEAP_TYPE_SECURE, /* allwinner add */
};

/**
* allocation flags - the lower 16 bits are used by core ion, the upper 16
* bits are reserved for use by the heaps themselves.
*/

/*
* mappings of this buffer should be cached, ion will do cache maintenance
* when the buffer is mapped for dma
*/
#define ION_FLAG_CACHED 1

/*
* mappings of this buffer will created at mmap time, if this is set
* caches must be managed manually
*/
#define ION_FLAG_CACHED_NEEDS_SYNC 2

/**
* DOC: Ion Userspace API
*
* create a client by opening /dev/ion
* most operations handled via following ioctls
*
*/

/**
* struct ion_allocation_data - metadata passed from userspace for allocations
* @len: size of the allocation
* @align: required alignment of the allocation
* @heap_id_mask: mask of heap ids to allocate from
* @flags: flags passed to heap
* @handle: pointer that will be populated with a cookie to use to
* refer to this allocation
*
* Provided by userspace as an argument to the ioctl
*/
struct ion_allocation_data
{
size_t len;
size_t align;
unsigned int heap_id_mask;
unsigned int flags;
ion_user_handle_t handle;
};

/**
* struct ion_fd_data - metadata passed to/from userspace for a handle/fd pair
* @handle: a handle
* @fd: a file descriptor representing that handle
*
* For ION_IOC_SHARE or ION_IOC_MAP userspace populates the handle field with
* the handle returned from ion alloc, and the kernel returns the file
* descriptor to share or map in the fd field. For ION_IOC_IMPORT, userspace
* provides the file descriptor and the kernel returns the handle.
*/
struct ion_fd_data
{
ion_user_handle_t handle;
int fd;
};

/**
* struct ion_handle_data - a handle passed to/from the kernel
* @handle: a handle
*/
struct ion_handle_data
{
ion_user_handle_t handle;
};

/**
* struct ion_custom_data - metadata passed to/from userspace for a custom ioctl
* @cmd: the custom ioctl function to call
* @arg: additional data to pass to the custom ioctl, typically a user
* pointer to a predefined structure
*
* This works just like the regular cmd and arg fields of an ioctl.
*/
struct ion_custom_data
{
unsigned int cmd;
unsigned long arg;
};

#define MAX_HEAP_NAME 32

/**
* struct ion_heap_data - data about a heap
* @name - first 32 characters of the heap name
* @type - heap type
* @heap_id - heap id for the heap
*/
struct ion_heap_data
{
char name[MAX_HEAP_NAME];
uint32_t type;
uint32_t heap_id;
uint32_t reserved0;
uint32_t reserved1;
uint32_t reserved2;
};

/**
* struct ion_heap_query - collection of data about all heaps
* @cnt - total number of heaps to be copied
* @heaps - buffer to copy heap data
*/
struct ion_heap_query
{
uint32_t cnt; /* Total number of heaps to be copied */
uint32_t reserved0; /* align to 64bits */
uint64_t heaps; /* buffer to be populated */
uint32_t reserved1;
uint32_t reserved2;
};

#define ION_IOC_MAGIC 'I'

/**
* DOC: ION_IOC_ALLOC - allocate memory
*
* Takes an ion_allocation_data struct and returns it with the handle field
* populated with the opaque handle for the allocation.
*/
#define ION_IOC_ALLOC _IOWR(ION_IOC_MAGIC, 0, struct ion_allocation_data)

/**
* DOC: ION_IOC_FREE - free memory
*
* Takes an ion_handle_data struct and frees the handle.
*/
#define ION_IOC_FREE _IOWR(ION_IOC_MAGIC, 1, struct ion_handle_data)

/**
* DOC: ION_IOC_MAP - get a file descriptor to mmap
*
* Takes an ion_fd_data struct with the handle field populated with a valid
* opaque handle. Returns the struct with the fd field set to a file
* descriptor open in the current address space. This file descriptor
* can then be used as an argument to mmap.
*/
#define ION_IOC_MAP _IOWR(ION_IOC_MAGIC, 2, struct ion_fd_data)

/**
* DOC: ION_IOC_SHARE - creates a file descriptor to use to share an allocation
*
* Takes an ion_fd_data struct with the handle field populated with a valid
* opaque handle. Returns the struct with the fd field set to a file
* descriptor open in the current address space. This file descriptor
* can then be passed to another process. The corresponding opaque handle can
* be retrieved via ION_IOC_IMPORT.
*/
#define ION_IOC_SHARE _IOWR(ION_IOC_MAGIC, 4, struct ion_fd_data)

/**
* DOC: ION_IOC_IMPORT - imports a shared file descriptor
*
* Takes an ion_fd_data struct with the fd field populated with a valid file
* descriptor obtained from ION_IOC_SHARE and returns the struct with the handle
* filed set to the corresponding opaque handle.
*/
#define ION_IOC_IMPORT _IOWR(ION_IOC_MAGIC, 5, struct ion_fd_data)

/**
* DOC: ION_IOC_SYNC - syncs a shared file descriptors to memory
*
* Deprecated in favor of using the dma_buf api's correctly (syncing
* will happen automatically when the buffer is mapped to a device).
* If necessary should be used after touching a cached buffer from the cpu,
* this will make the buffer in memory coherent.
*/
#define ION_IOC_SYNC _IOWR(ION_IOC_MAGIC, 7, struct ion_fd_data)

/**
* DOC: ION_IOC_CUSTOM - call architecture specific ion ioctl
*
* Takes the argument of the architecture specific ioctl to call and
* passes appropriate userdata for that ioctl
*/
#define ION_IOC_CUSTOM _IOWR(ION_IOC_MAGIC, 6, struct ion_custom_data)

/**
* DOC: ION_IOC_HEAP_QUERY - information about available heaps
*
* Takes an ion_heap_query structure and populates information about
* available Ion heaps.
*/
#define ION_IOC_HEAP_QUERY _IOWR(ION_IOC_MAGIC, 8, struct ion_heap_query)

//
// From "drivers/staging/android/ion/sunxi/sunxi_ion.h"
//
struct sunxi_cache_range
{
unsigned long start;
unsigned long end;
};

typedef struct
{
ion_user_handle_t handle;
unsigned int phys_addr;
unsigned int size;
} sunxi_phys_data;

#define ION_IOC_SUNXI_FLUSH_RANGE 5
#define ION_IOC_SUNXI_PHYS_ADDR 7
#define ION_IOC_SUNXI_TEE_ADDR 17

//
// And, much like the actual ioctl handler, shove that in an union to make our life easier.
//

union ion_ioctl_arg
{
struct ion_fd_data fd;
struct ion_allocation_data allocation;
struct ion_handle_data handle;
struct ion_custom_data custom;
struct ion_heap_query query;
struct sunxi_cache_range range;
};

// And a custom enum to make the heap_id_mask field less obscure...
// c.f., the ion block in the device tree in case something ever gets the ID wrong,
// e.g., L233 @ arch/arm/boot/dts/sun8iw15p1-eink_128m.dtsi
// & /sys/firmware/devicetree/base/ion/ at runtime.
// You can also check for the currently active allocations via debugfs,
// e.g., /sys/kernel/debug/ion/heaps/cma
enum ion_heap_mask
{
ION_HEAP_MASK_SYSTEM = (1 << ION_HEAP_TYPE_SYSTEM),
ION_HEAP_MASK_SYSTEM_CONTIG = (1 << ION_HEAP_TYPE_SYSTEM_CONTIG),
ION_HEAP_MASK_CARVEOUT = (1 << ION_HEAP_TYPE_CARVEOUT),
ION_HEAP_MASK_CHUNK = (1 << ION_HEAP_TYPE_CHUNK),
ION_HEAP_MASK_DMA = (1 << ION_HEAP_TYPE_DMA),
ION_HEAP_MASK_CUSTOM = (1 << ION_HEAP_TYPE_CUSTOM),
ION_HEAP_MASK_SECURE = (1 << ION_HEAP_TYPE_SECURE)
};

#endif // _UAPI_LINUX_ION_H
Loading

0 comments on commit 85d9692

Please sign in to comment.