2c0f4e57d7
Why I did it XGS saibcm-modules 8.4 is needed. #14471 Work item tracking Microsoft ADO (number only): 24917414 How I did it Copy files from xgs SDK 8.4 repo and modify makefiles to build the image. Upgrade version to 8.4.0.2 in saibcm-modules.mk. How to verify it Build a private image and run full qualification with it: https://elastictest.org/scheduler/testplan/650419cb71f60aa92c456a2b
95 lines
2.2 KiB
C
95 lines
2.2 KiB
C
/*! \file ngbde_iio.c
|
|
*
|
|
* API for managing and accessing memory-mapped I/O for interrupt
|
|
* controller registers.
|
|
*
|
|
*/
|
|
/*
|
|
* $Copyright: Copyright 2018-2022 Broadcom. All rights reserved.
|
|
* The term 'Broadcom' refers to Broadcom Inc. and/or its subsidiaries.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* version 2 as published by the Free Software Foundation.
|
|
*
|
|
* 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.
|
|
*
|
|
* A copy of the GNU General Public License version 2 (GPLv2) can
|
|
* be found in the LICENSES folder.$
|
|
*/
|
|
|
|
#include <ngbde.h>
|
|
|
|
void *
|
|
ngbde_iio_map(void *devh, phys_addr_t addr, phys_addr_t size)
|
|
{
|
|
struct ngbde_dev_s *sd = (struct ngbde_dev_s *)devh;
|
|
|
|
if (sd->iio_mem) {
|
|
if (addr == sd->iio_win.addr && size == sd->iio_win.size) {
|
|
/* Already mapped */
|
|
return sd->iio_mem;
|
|
}
|
|
ngbde_iio_unmap(devh);
|
|
}
|
|
|
|
sd->iio_mem = ioremap(addr, size);
|
|
|
|
if (sd->iio_mem) {
|
|
/* Save mapped resources */
|
|
sd->iio_win.addr = addr;
|
|
sd->iio_win.size = size;
|
|
}
|
|
|
|
return sd->iio_mem;
|
|
}
|
|
|
|
void
|
|
ngbde_iio_unmap(void *devh)
|
|
{
|
|
struct ngbde_dev_s *sd = (struct ngbde_dev_s *)devh;
|
|
|
|
if (sd->iio_mem) {
|
|
iounmap(sd->iio_mem);
|
|
sd->iio_mem = NULL;
|
|
}
|
|
}
|
|
|
|
void
|
|
ngbde_iio_cleanup(void)
|
|
{
|
|
struct ngbde_dev_s *swdev, *sd;
|
|
unsigned int num_swdev, idx;
|
|
|
|
ngbde_swdev_get_all(&swdev, &num_swdev);
|
|
|
|
for (idx = 0; idx < num_swdev; idx++) {
|
|
sd = ngbde_swdev_get(idx);
|
|
ngbde_iio_unmap(sd);
|
|
}
|
|
}
|
|
|
|
void
|
|
ngbde_iio_write32(void *devh, uint32_t offs, uint32_t val)
|
|
{
|
|
struct ngbde_dev_s *sd = (struct ngbde_dev_s *)devh;
|
|
|
|
if (sd->iio_mem) {
|
|
NGBDE_IOWRITE32(val, sd->iio_mem + offs);
|
|
}
|
|
}
|
|
|
|
uint32_t
|
|
ngbde_iio_read32(void *devh, uint32_t offs)
|
|
{
|
|
struct ngbde_dev_s *sd = (struct ngbde_dev_s *)devh;
|
|
|
|
if (sd->iio_mem) {
|
|
return NGBDE_IOREAD32(sd->iio_mem + offs);
|
|
}
|
|
return 0;
|
|
}
|