summaryrefslogtreecommitdiffstats
path: root/arch/blackfin/lib/post.c
blob: b3c5fab57652cc7928b71b54b217ad8eb5c6cc65 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * Blackfin POST code
 *
 * Copyright (c) 2005-2011 Analog Devices Inc.
 *
 * Licensed under the GPL-2 or later.
 */

#include <common.h>
#include <config.h>
#include <post.h>

#include <asm/gpio.h>

#if CONFIG_POST & CONFIG_SYS_POST_BSPEC1
int led_post_test(int flags)
{
	unsigned leds[] = { CONFIG_POST_BSPEC1_GPIO_LEDS };
	int i;

	/* First turn them all off */
	for (i = 0; i < ARRAY_SIZE(leds); ++i) {
		if (gpio_request(leds[i], "post")) {
			printf("could not request gpio %u\n", leds[i]);
			continue;
		}
		gpio_direction_output(leds[i], 0);
	}

	/* Now turn them on one by one */
	for (i = 0; i < ARRAY_SIZE(leds); ++i) {
		printf("LED%i on", i + 1);
		gpio_set_value(leds[i], 1);
		udelay(1000000);
		printf("\b\b\b\b\b\b\b");
		gpio_free(leds[i]);
	}

	return 0;
}
#endif

#if CONFIG_POST & CONFIG_SYS_POST_BSPEC2
int button_post_test(int flags)
{
	unsigned buttons[] = { CONFIG_POST_BSPEC2_GPIO_BUTTONS };
	unsigned int sws[] = { CONFIG_POST_BSPEC2_GPIO_NAMES };
	int i, delay = 5;
	unsigned short value = 0;
	int result = 0;

	for (i = 0; i < ARRAY_SIZE(buttons); ++i) {
		if (gpio_request(buttons[i], "post")) {
			printf("could not request gpio %u\n", buttons[i]);
			continue;
		}
		gpio_direction_input(buttons[i]);

		delay = 5;
		printf("\n--------Press SW%i: %2d ", sws[i], delay);
		while (delay--) {
			int j;
			for (j = 0; j < 100; j++) {
				value = gpio_get_value(buttons[i]);
				if (value != 0)
					break;
				udelay(10000);
			}
			printf("\b\b\b%2d ", delay);
		}
		if (value != 0)
			puts("\b\bOK");
		else {
			result = -1;
			puts("\b\bfailed");
		}

		gpio_free(buttons[i]);
	}

	puts("\n");

	return result;
}
#endif
OpenPOWER on IntegriCloud