22 lines
463 B
C
22 lines
463 B
C
/*
|
|
* mbox_proc.h
|
|
*
|
|
* Copyright (c) 2020 Semidrive Semiconductor.
|
|
* All rights reserved.
|
|
*
|
|
* Description: mailbox remote processors defination.
|
|
*
|
|
* Revision History:
|
|
* -----------------
|
|
*/
|
|
|
|
#ifndef _MBOX_PROC_H_
|
|
#define _MBOX_PROC_H_
|
|
|
|
/* sdrv mbox pre-alloc share memory for each processor
|
|
* Tx buffer base address must keep consistent with
|
|
* the start address of the "mb_shm" segment in link script */
|
|
#define MBOX_TX_BUFF_BASE (0x004FD000UL)
|
|
|
|
#endif
|