blob: 4370738fe2de99ba4c2f464fc54e9262f2c4b261 [file] [log] [blame]
Aaron Williams3bda89d2020-12-11 17:05:24 +01001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (C) 2020 Marvell International Ltd.
4 *
5 * Functions for LOOP initialization, configuration,
6 * and monitoring.
7 */
8
9#ifndef __CVMX_HELPER_LOOP_H__
10#define __CVMX_HELPER_LOOP_H__
11
12/**
13 * @INTERNAL
14 * Probe a LOOP interface and determine the number of ports
15 * connected to it. The LOOP interface should still be down after
16 * this call.
17 *
18 * @param xiface Interface to probe
19 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +010020 * Return: Number of ports on the interface. Zero to disable.
Aaron Williams3bda89d2020-12-11 17:05:24 +010021 */
22int __cvmx_helper_loop_probe(int xiface);
23int __cvmx_helper_loop_enumerate(int xiface);
24
25/**
26 * @INTERNAL
27 * Bringup and enable a LOOP interface. After this call packet
28 * I/O should be fully functional. This is called with IPD
29 * enabled but PKO disabled.
30 *
31 * @param xiface Interface to bring up
32 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +010033 * Return: Zero on success, negative on failure
Aaron Williams3bda89d2020-12-11 17:05:24 +010034 */
35int __cvmx_helper_loop_enable(int xiface);
36
37#endif