summaryrefslogtreecommitdiffstats
path: root/firmware/ioext.c
blob: b4c83429196f84883da648ba7d124fdb4c91bd81 (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
/*
 * Output extender
 *
 * Copyright (c) 2013 Michael Buesch <m@bues.ch>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "ioext.h"


struct ioext_context ioext_ctx;


/* Write the I/O-extender state out to the hardware
 * shift register.
 */
void ioext_commit(void)
{
	struct ioext_context *ctx = &ioext_ctx;
	uint8_t chip;

	/* For each chip. */
	for (chip = 0; chip < EXTOUT_NR_CHIPS; chip++) {
		/* Write the new state to the shift register,
		 * if it did not change.
		 */
		if (ctx->states[chip] != ctx->old_states[chip]) {
			ctx->old_states[chip] = ctx->states[chip];
			pcf8574_write(&ctx->chips[chip],
				      ctx->states[chip]);
		}
	}
}

/* Initialize the I/O-extender.
 * This also initializes the shift register.
 * If "all_ones" is true, all state bits are initialized to 1.
 */
void ioext_init(bool all_ones)
{
	struct ioext_context *ctx = &ioext_ctx;
	uint8_t chip;

	/* Reset data structures. */
	memset(ctx, 0, sizeof(*ctx));
	if (all_ones) {
		memset(ctx->states, 0xFF, sizeof(ctx->states));
		memset(ctx->old_states, 0xFF, sizeof(ctx->states));
	}

	/* Initialize the shift register. */
	for (chip = 0; chip < EXTOUT_NR_CHIPS; chip++)
		pcf8574_init(&ctx->chips[chip], chip, 1, all_ones);
}
bues.ch cgit interface