aboutsummaryrefslogtreecommitdiff
path: root/arch/metag/include/asm/da.h
blob: 81bd5212fb03eb6498904a67e376e7458a811dd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * Meta DA JTAG debugger control.
 *
 * Copyright 2012 Imagination Technologies Ltd.
 */

#ifndef _METAG_DA_H_
#define _METAG_DA_H_

#ifdef CONFIG_METAG_DA

#include <linux/init.h>
#include <linux/types.h>

extern bool _metag_da_present;

/**
 * metag_da_enabled() - Find whether a DA is currently enabled.
 *
 * Returns:	true if a DA was detected, false if not.
 */
static inline bool metag_da_enabled(void)
{
	return _metag_da_present;
}

/**
 * metag_da_probe() - Try and detect a connected DA.
 *
 * This is used at start up to detect whether a DA is active.
 *
 * Returns:	0 on detection, -err otherwise.
 */
int __init metag_da_probe(void);

#else /* !CONFIG_METAG_DA */

#define metag_da_enabled() false
#define metag_da_probe() do {} while (0)

#endif

#endif /* _METAG_DA_H_ */