mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
62 lines
1.7 KiB
C
62 lines
1.7 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Freescale Layerscape MC I/O wrapper
|
|
*
|
|
* Copyright (C) 2013-2015 Freescale Semiconductor, Inc.
|
|
* Author: German Rivera <German.Rivera@freescale.com>
|
|
*/
|
|
|
|
#include <fsl-mc/fsl_mc_sys.h>
|
|
#include <fsl-mc/fsl_mc_cmd.h>
|
|
#include <common.h>
|
|
#include <errno.h>
|
|
#include <asm/io.h>
|
|
|
|
#define MC_CMD_HDR_READ_CMDID(_hdr) \
|
|
((uint16_t)mc_dec((_hdr), MC_CMD_HDR_CMDID_O, MC_CMD_HDR_CMDID_S))
|
|
|
|
/**
|
|
* mc_send_command - Send MC command and wait for response
|
|
*
|
|
* @mc_io: Pointer to MC I/O object to be used
|
|
* @cmd: MC command buffer. On input, it contains the command to send to the MC.
|
|
* On output, it contains the response from the MC if any.
|
|
*
|
|
* Depending on the sharing option specified when creating the MC portal
|
|
* wrapper, this function will use a spinlock or mutex to ensure exclusive
|
|
* access to the MC portal from the point when the command is sent until a
|
|
* response is received from the MC.
|
|
*/
|
|
int mc_send_command(struct fsl_mc_io *mc_io,
|
|
struct mc_command *cmd)
|
|
{
|
|
enum mc_cmd_status status;
|
|
int timeout = 12000;
|
|
|
|
mc_write_command(mc_io->mmio_regs, cmd);
|
|
|
|
for ( ; ; ) {
|
|
status = mc_read_response(mc_io->mmio_regs, cmd);
|
|
if (status != MC_CMD_STATUS_READY)
|
|
break;
|
|
|
|
if (--timeout == 0) {
|
|
printf("Error: Timeout waiting for MC response\n");
|
|
return -ETIMEDOUT;
|
|
}
|
|
|
|
udelay(500);
|
|
}
|
|
|
|
if (status != MC_CMD_STATUS_OK) {
|
|
printf("Error: MC command failed (portal: %p, obj handle: %#x, command: %#x, status: %#x)\n",
|
|
mc_io->mmio_regs,
|
|
(unsigned int)MC_CMD_HDR_READ_TOKEN(cmd->header),
|
|
(unsigned int)MC_CMD_HDR_READ_CMDID(cmd->header),
|
|
(unsigned int)status);
|
|
|
|
return -EIO;
|
|
}
|
|
|
|
return 0;
|
|
}
|