blob: 45e73d28e40a8f6adc45712f839274ef34c9e68d [file] [log] [blame]
Simon Glassba6c3ce2013-03-11 06:08:00 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Simon Glassba6c3ce2013-03-11 06:08:00 +00005 */
6
7#include <common.h>
Simon Glass0efc0242013-12-03 16:43:24 -07008#include <fdtdec.h>
Simon Glassba6c3ce2013-03-11 06:08:00 +00009#include <malloc.h>
10#include <spi.h>
11
Nikita Kiryanov5753d092013-10-16 17:23:25 +030012int spi_set_wordlen(struct spi_slave *slave, unsigned int wordlen)
13{
14 if (wordlen == 0 || wordlen > 32) {
Mario Six547bcc32018-01-15 11:08:35 +010015 printf("spi: invalid wordlen %u\n", wordlen);
Nikita Kiryanov5753d092013-10-16 17:23:25 +030016 return -1;
17 }
18
19 slave->wordlen = wordlen;
20
21 return 0;
22}
23
Simon Glassba6c3ce2013-03-11 06:08:00 +000024void *spi_do_alloc_slave(int offset, int size, unsigned int bus,
25 unsigned int cs)
26{
Mario Six547bcc32018-01-15 11:08:35 +010027 u8 *ptr;
Simon Glassba6c3ce2013-03-11 06:08:00 +000028
29 ptr = malloc(size);
30 if (ptr) {
Mario Six547bcc32018-01-15 11:08:35 +010031 struct spi_slave *slave;
32
Simon Glassba6c3ce2013-03-11 06:08:00 +000033 memset(ptr, '\0', size);
34 slave = (struct spi_slave *)(ptr + offset);
35 slave->bus = bus;
36 slave->cs = cs;
Nikita Kiryanov5753d092013-10-16 17:23:25 +030037 slave->wordlen = SPI_DEFAULT_WORDLEN;
Simon Glassba6c3ce2013-03-11 06:08:00 +000038 }
39
40 return ptr;
41}