1210284Sjmallett/***********************license start***************
2232812Sjmallett * Copyright (c) 2003-2010  Cavium Inc. (support@cavium.com). All rights
3215990Sjmallett * reserved.
4210284Sjmallett *
5210284Sjmallett *
6215990Sjmallett * Redistribution and use in source and binary forms, with or without
7215990Sjmallett * modification, are permitted provided that the following conditions are
8215990Sjmallett * met:
9210284Sjmallett *
10215990Sjmallett *   * Redistributions of source code must retain the above copyright
11215990Sjmallett *     notice, this list of conditions and the following disclaimer.
12210284Sjmallett *
13215990Sjmallett *   * Redistributions in binary form must reproduce the above
14215990Sjmallett *     copyright notice, this list of conditions and the following
15215990Sjmallett *     disclaimer in the documentation and/or other materials provided
16215990Sjmallett *     with the distribution.
17215990Sjmallett
18232812Sjmallett *   * Neither the name of Cavium Inc. nor the names of
19215990Sjmallett *     its contributors may be used to endorse or promote products
20215990Sjmallett *     derived from this software without specific prior written
21215990Sjmallett *     permission.
22215990Sjmallett
23215990Sjmallett * This Software, including technical data, may be subject to U.S. export  control
24215990Sjmallett * laws, including the U.S. Export Administration Act and its  associated
25215990Sjmallett * regulations, and may be subject to export or import  regulations in other
26215990Sjmallett * countries.
27215990Sjmallett
28215990Sjmallett * TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
29232812Sjmallett * AND WITH ALL FAULTS AND CAVIUM INC. MAKES NO PROMISES, REPRESENTATIONS OR
30215990Sjmallett * WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO
31215990Sjmallett * THE SOFTWARE, INCLUDING ITS CONDITION, ITS CONFORMITY TO ANY REPRESENTATION OR
32215990Sjmallett * DESCRIPTION, OR THE EXISTENCE OF ANY LATENT OR PATENT DEFECTS, AND CAVIUM
33215990Sjmallett * SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE,
34215990Sjmallett * MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, LACK OF
35215990Sjmallett * VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR
36215990Sjmallett * CORRESPONDENCE TO DESCRIPTION. THE ENTIRE  RISK ARISING OUT OF USE OR
37215990Sjmallett * PERFORMANCE OF THE SOFTWARE LIES WITH YOU.
38210284Sjmallett ***********************license end**************************************/
39210284Sjmallett
40210284Sjmallett
41210284Sjmallett
42210284Sjmallett
43210284Sjmallett
44210284Sjmallett
45215990Sjmallett
46210284Sjmallett/**
47210284Sjmallett * @file
48210284Sjmallett *
49210284Sjmallett * Interface to the GMX hardware.
50210284Sjmallett *
51232812Sjmallett * <hr>$Revision: 70030 $<hr>
52210284Sjmallett */
53210284Sjmallett
54210284Sjmallett#ifndef __CVMX_GMX_H__
55210284Sjmallett#define __CVMX_GMX_H__
56210284Sjmallett
57210284Sjmallett#ifdef	__cplusplus
58210284Sjmallettextern "C" {
59210284Sjmallett#endif
60210284Sjmallett
61215990Sjmallett/* CSR typedefs have been moved to cvmx-gmx-defs.h */
62210284Sjmallett
63210284Sjmallett/**
64210284Sjmallett * Disables the sending of flow control (pause) frames on the specified
65210284Sjmallett * RGMII port(s).
66210284Sjmallett *
67210284Sjmallett * @param interface Which interface (0 or 1)
68210284Sjmallett * @param port_mask Mask (4bits) of which ports on the interface to disable
69210284Sjmallett *                  backpressure on.
70210284Sjmallett *                  1 => disable backpressure
71210284Sjmallett *                  0 => enable backpressure
72210284Sjmallett *
73210284Sjmallett * @return 0 on success
74210284Sjmallett *         -1 on error
75210284Sjmallett */
76210284Sjmallett
77210284Sjmallettstatic inline int cvmx_gmx_set_backpressure_override(uint32_t interface, uint32_t port_mask)
78210284Sjmallett{
79210284Sjmallett    cvmx_gmxx_tx_ovr_bp_t gmxx_tx_ovr_bp;
80210284Sjmallett    /* Check for valid arguments */
81210284Sjmallett    if (port_mask & ~0xf || interface & ~0x1)
82210284Sjmallett        return(-1);
83210284Sjmallett    gmxx_tx_ovr_bp.u64 = 0;
84210284Sjmallett    gmxx_tx_ovr_bp.s.en = port_mask; /* Per port Enable back pressure override */
85210284Sjmallett    gmxx_tx_ovr_bp.s.ign_full = port_mask; /* Ignore the RX FIFO full when computing BP */
86210284Sjmallett    cvmx_write_csr(CVMX_GMXX_TX_OVR_BP(interface), gmxx_tx_ovr_bp.u64);
87210284Sjmallett    return(0);
88210284Sjmallett
89210284Sjmallett}
90210284Sjmallett
91210284Sjmallett#ifdef	__cplusplus
92210284Sjmallett}
93210284Sjmallett#endif
94210284Sjmallett
95210284Sjmallett#endif
96210284Sjmallett
97