mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
17 lines
383 B
C
17 lines
383 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
/*
|
||
|
* Copyright (C) 2020 Marvell International Ltd.
|
||
|
*
|
||
|
* Interface to the GMX hardware.
|
||
|
*/
|
||
|
|
||
|
#ifndef __CVMX_GMX_H__
|
||
|
#define __CVMX_GMX_H__
|
||
|
|
||
|
/* CSR typedefs have been moved to cvmx-gmx-defs.h */
|
||
|
|
||
|
int cvmx_gmx_set_backpressure_override(u32 interface, u32 port_mask);
|
||
|
int cvmx_agl_set_backpressure_override(u32 interface, u32 port_mask);
|
||
|
|
||
|
#endif
|