-
Notifications
You must be signed in to change notification settings - Fork 11
/
api.h
52 lines (43 loc) · 1.73 KB
/
api.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// SPDX-License-Identifier: MIT
/**
Character Driver for Beckhoff BIOS API
Author: Patrick Brünn <p.bruenn@beckhoff.com>
Copyright (C) 2013 - 2018 Beckhoff Automation GmbH & Co. KG
*/
#ifndef __API_H_
#define __API_H_
#undef pr_fmt
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/mutex.h>
#include "simple_cdev.h"
#define BBIOSAPI_SIGNATURE_PHYS_START_ADDR 0xFFE00000 // Defining the Physical start address for the search
#define BBIOSAPI_SIGNATURE_SEARCH_AREA 0x001FFFFF // Defining the Memory search area size
#define BBAPI_BUFFER_SIZE 256 // maximum size of a buffer shared between user and kernel space
/**
* struct bbapi_object - manage access to Beckhoff BIOS functions
* @memory: pointer to a BIOS copy in RAM
* @entry: function pointer to the BIOS API function in RAM
* @in: buffer to exchange data between user space and BIOS
* @out: buffer to exchange data between BIOS and user space
* @dev: meta data for the character device interface
*
* The size of the output buffer should be large enough to satisfy the
* largest BIOS command. Right now this is: BIOSIOFFS_UEEPROM_READ.
*/
struct bbapi_object {
uint8_t *memory;
void *entry;
char in[BBAPI_BUFFER_SIZE];
char out[BBAPI_BUFFER_SIZE];
struct simple_cdev dev;
struct mutex mutex;
};
extern unsigned int bbapi_read(uint32_t group, uint32_t offset,
void __kernel * out, uint32_t size);
extern unsigned int bbapi_write(uint32_t group, uint32_t offset,
void __kernel * in, uint32_t size);
extern unsigned int bbapi_rw(uint32_t group, uint32_t offset,
void __kernel * in, uint32_t size_in,
void __kernel * out, uint32_t size_out, uint32_t *bytes_written);
extern int bbapi_board_is(const char *boardname);
#endif /* #ifndef __API_H_ */