mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-31 11:01:19 +00:00
Since pretty much always, we've declared console commands to take a "longhelp" argument with detailed explanations of what the command does. But since almost as long, we've never actually used that argument for anything - we just silently throw it away in the macro. There's only one command (usbchargemode) that even thinks it defines that argument. We're never going to use this, let's just get rid of it. BUG=none BRANCH=none CQ-DEPEND=CL:*279060 CQ-DEPEND=CL:*279158 CQ-DEPEND=CL:*279037 TEST=make buildall; tested on Cr50 hardware Everything builds. Since we never used this arg anyway, there had better not be any difference in the result. Change-Id: Id3f71a53d02e3dc625cfcc12aa71ecb50e35eb9f Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/374163 Reviewed-by: Myles Watson <mylesgw@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org>
72 lines
1.5 KiB
C
72 lines
1.5 KiB
C
/*
|
|
* Copyright 2015 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*
|
|
* SPI transfer command for debugging SPI devices.
|
|
*/
|
|
|
|
#include "common.h"
|
|
#include "console.h"
|
|
#include "spi.h"
|
|
#include "timer.h"
|
|
#include "util.h"
|
|
|
|
static int command_spixfer(int argc, char **argv)
|
|
{
|
|
int dev_id;
|
|
uint8_t offset;
|
|
int v = 0;
|
|
uint8_t data[32];
|
|
char *e;
|
|
int rv = 0;
|
|
|
|
if (argc != 5)
|
|
return EC_ERROR_PARAM_COUNT;
|
|
|
|
dev_id = strtoi(argv[2], &e, 0);
|
|
if (*e)
|
|
return EC_ERROR_PARAM2;
|
|
|
|
offset = strtoi(argv[3], &e, 0);
|
|
if (*e)
|
|
return EC_ERROR_PARAM3;
|
|
|
|
v = strtoi(argv[4], &e, 0);
|
|
if (*e)
|
|
return EC_ERROR_PARAM4;
|
|
|
|
if (strcasecmp(argv[1], "rlen") == 0) {
|
|
uint8_t cmd = 0x80 | offset;
|
|
|
|
/* Arbitrary length read; param4 = len */
|
|
if (v < 0 || v > sizeof(data))
|
|
return EC_ERROR_PARAM4;
|
|
|
|
rv = spi_transaction(&spi_devices[dev_id], &cmd, 1, data, v);
|
|
|
|
if (!rv)
|
|
ccprintf("Data: %.*h\n", v, data);
|
|
|
|
} else if (strcasecmp(argv[1], "w") == 0) {
|
|
/* 8-bit write */
|
|
uint8_t cmd[2] = { offset, v };
|
|
|
|
rv = spi_transaction(&spi_devices[dev_id], cmd, 2, NULL, 0);
|
|
|
|
/*
|
|
* Some SPI device needs a delay before accepting other
|
|
* commands, otherwise the write might be ignored.
|
|
*/
|
|
msleep(1);
|
|
} else {
|
|
return EC_ERROR_PARAM1;
|
|
}
|
|
|
|
return rv;
|
|
}
|
|
DECLARE_CONSOLE_COMMAND(spixfer, command_spixfer,
|
|
"rlen/w id offset [value | len]",
|
|
"Read write spi. id is spi_devices array index");
|
|
|