Skip to content

Commit

Permalink
tests/qtest/bcm2828-mailbox: Add mailbox test constants
Browse files Browse the repository at this point in the history
Signed-off-by: Sergey Kambalin <sergey.kambalin@auriga.com>
Message-id: 20240226000259.2752893-33-sergey.kambalin@auriga.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
  • Loading branch information
serg3vik authored and pm215 committed Feb 27, 2024
1 parent 0c1797f commit 782c530
Show file tree
Hide file tree
Showing 2 changed files with 89 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/qtest/bcm2838-mailbox.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "hw/registerfields.h"
#include "libqtest-single.h"
#include "bcm2838-mailbox.h"
#include "hw/arm/raspberrypi-fw-defs.h"

REG32(MBOX_EXCHNG_REG, 0)
FIELD(MBOX_EXCHNG_REG, CHANNEL, 0, 4)
Expand Down
88 changes: 88 additions & 0 deletions tests/qtest/bcm2838-mailbox.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,94 @@
* See the COPYING file in the top-level directory.
*/

#define MBOX0_BASE 0xFE00B880
#define MBOX1_BASE 0xFE00B8A0

#define MBOX_REG_READ 0x00
#define MBOX_REG_WRITE 0x00
#define MBOX_REG_PEEK 0x10
#define MBOX_REG_SENDER 0x14
#define MBOX_REG_STATUS 0x18
#define MBOX_REG_CONFIG 0x1C

#define MBOX_READ_EMPTY 0x40000000

#define MBOX_CHANNEL_ID_PROPERTY 8

#define MBOX_PROCESS_REQUEST 0x00000000
#define MBOX_SUCCESS 0x80000000
#define MBOX_ERROR_PARSING_BUFFER 0x80000001

#define BOARD_REVISION 0xB03115
#define FIRMWARE_REVISION 0x548E1
#define FIRMWARE_VARIANT 0x77777777 /* TODO: Find the real value */

#define ARM_MEMORY_BASE 0x00000000
#define ARM_MEMORY_SIZE 0x3c000000
#define VC_MEMORY_BASE 0x3c000000
#define VC_MEMORY_SIZE 0x04000000
#define VC_FB_BASE 0x3c100000
#define VC_FB_SIZE 0x00096000

#define CLOCK_ID_ROOT 0x00000000
#define CLOCK_ID_EMMC 0x00000001
#define CLOCK_ID_UART 0x00000002
#define CLOCK_ID_ARM 0x00000003
#define CLOCK_ID_CORE 0x00000004
#define CLOCK_ID_UNDEFINED 0x12345678

#define CLOCK_RATE_EMMC 50000000
#define CLOCK_RATE_UART 3000000
#define CLOCK_RATE_CORE 350000000
#define CLOCK_RATE_ANY 700000000

#define DEVICE_ID_SD_CARD 0x00000000
#define DEVICE_ID_UART0 0x00000001
#define DEVICE_ID_UART1 0x00000002
#define DEVICE_ID_USB HCD 0x00000003
#define DEVICE_ID_I2C0 0x00000004
#define DEVICE_ID_I2C1 0x00000005
#define DEVICE_ID_I2C2 0x00000006
#define DEVICE_ID_SPI 0x00000007
#define DEVICE_ID_CCP2TX 0x00000008
#define DEVICE_ID_UNKNOWN_0 0x00000009
#define DEVICE_ID_UNKNOWN_1 0x0000000a

#define TEMPERATURE_ID_SOC 0x00000000

#define TEMPERATURE_SOC 25000
#define TEMPERATURE_SOC_MAX 99000

#define ALIGN_4K 4096

#define PIXEL_ORDER_BGR 0
#define PIXEL_ORDER_RGB 1

#define ALPHA_MODE_ENABLED 0
#define ALPHA_MODE_REVERSED 1
#define ALPHA_MODE_IGNORED 2

#define GPIO_MASK 0x003c

#define GPIO_0 0x00000080

#define GPIO_DIRECTION_IN 0
#define GPIO_DIRECTION_OUT 1

#define GPIO_TERMINATION_DISABLED 0
#define GPIO_TERMINATION_ENABLED 1

#define GPIO_TERMINATION_PULLUP_DISABLED 0
#define GPIO_TERMINATION_PULLUP_ENABLED 1

#define GPIO_POLARITY_LOW 0
#define GPIO_POLARITY_HIGH 1

#define GPIO_STATE_DOWN 0

/* Used to test stubs that don't perform actual work */
#define DUMMY_VALUE 0x12345678

typedef struct {
uint32_t size;
uint32_t req_resp_code;
Expand Down

0 comments on commit 782c530

Please sign in to comment.