/* $NetBSD: dwlpx_pci.c,v 1.21 2021/06/25 03:46:30 thorpej Exp $ */

/*
* Copyright (c) 1997 by Matthew Jacob
* NASA AMES Research Center.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
*    notice immediately at the beginning of the file, without modification,
*    this list of conditions, and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
*    notice, this list of conditions and the following disclaimer in the
*    documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote products
*    derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/

#include <sys/cdefs.h>                  /* RCS ID & Copyright macro defns */

__KERNEL_RCSID(0, "$NetBSD: dwlpx_pci.c,v 1.21 2021/06/25 03:46:30 thorpej Exp $");

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/device.h>

#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
#include <alpha/tlsb/tlsbreg.h>
#include <alpha/pci/dwlpxreg.h>
#include <alpha/pci/dwlpxvar.h>

#define KV(_addr)       ((void *)ALPHA_PHYS_TO_K0SEG((_addr)))

static int      dwlpx_bus_maxdevs(void *, int);
static pcitag_t dwlpx_make_tag(void *, int, int, int);
static void     dwlpx_decompose_tag(void *, pcitag_t, int *, int *,
                   int *);
static pcireg_t dwlpx_conf_read(void *, pcitag_t, int);
static void     dwlpx_conf_write(void *, pcitag_t, int, pcireg_t);

void
dwlpx_pci_init(pci_chipset_tag_t pc, void *v)
{
       pc->pc_conf_v = v;
       pc->pc_bus_maxdevs = dwlpx_bus_maxdevs;
       pc->pc_make_tag = dwlpx_make_tag;
       pc->pc_decompose_tag = dwlpx_decompose_tag;
       pc->pc_conf_read = dwlpx_conf_read;
       pc->pc_conf_write = dwlpx_conf_write;
}

static int
dwlpx_bus_maxdevs(void *cpv, int busno)
{
       return DWLPX_MAXDEV;
}

static pcitag_t
dwlpx_make_tag(void *cpv, int b, int d, int f)
{
       pcitag_t tag;
       int hpcdev, pci_idsel;

       pci_idsel = (1 << ((d & 0x3) + 2));
       hpcdev = d >> 2;
       tag = (b << 24) | (hpcdev << 22) | (pci_idsel << 16) | (f << 13);
       return (tag);
}

static void
dwlpx_decompose_tag(void *cpv, pcitag_t tag, int *bp, int *dp, int *fp)
{

       if (bp != NULL)
               *bp = (tag >> 24) & 0xff;
       if (dp != NULL) {
               int j, i = (tag >> 18) & 0xf;
               j = -1;
               while (i != 0) {
                       j++;
                       i >>= 1;
               }
               j += (((tag >> 22) & 3) << 2);
               *dp = j;
       }
       if (fp != NULL)
               *fp = (tag >> 13) & 0x7;
}

static pcireg_t
dwlpx_conf_read(void *cpv, pcitag_t tag, int offset)
{
       struct dwlpx_config *ccp = cpv;
       struct dwlpx_softc *sc;
       pcireg_t *dp, data = (pcireg_t) -1;
       unsigned long paddr;
       int secondary, i, s = 0;
       uint32_t rvp;

       if ((unsigned int)offset >= PCI_CONF_SIZE)
               return (data);

       if (ccp == NULL) {
               panic("NULL ccp in dwlpx_conf_read");
       }
       sc = ccp->cc_sc;
       secondary = tag >> 24;
       if (secondary) {
               tag &= 0x1fffff;
               tag |= (secondary << 21);

#if     0
               printf("read secondary %d reg %x (tag %x)",
                   secondary, offset, tag);
#endif

               alpha_pal_draina();
               s = splhigh();
               /*
                * Set up HPCs for type 1 cycles.
                */
               for (i = 0; i < sc->dwlpx_nhpc; i++) {
                       rvp = REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) |
                               PCIA_CTL_T1CYC;
                       alpha_mb();
                       REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) = rvp;
                       alpha_mb();
               }
       }
       paddr = (unsigned long) tag;
       paddr |= DWLPX_PCI_CONF;
       paddr |= ((unsigned long) ((offset >> 2) << 7));
       paddr |= (((unsigned long) sc->dwlpx_hosenum) << 34);
       paddr |= (((u_long) sc->dwlpx_node - 4) << 36);
       paddr |= (1LL << 39);
       paddr |= (3LL << 3);    /* 32 Bit PCI byte enables */

       dp = (pcireg_t *)KV(paddr);
       if (badaddr(dp, sizeof (*dp)) == 0) {
               data = *dp;
       }
       if (secondary) {
               alpha_pal_draina();
               for (i = 0; i < sc->dwlpx_nhpc; i++) {
                       rvp = REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) &
                               ~PCIA_CTL_T1CYC;
                       alpha_mb();
                       REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) = rvp;
                       alpha_mb();
               }
               (void) splx(s);
#if     0
               printf("=%x\n", data);
#endif
       }
       return (data);
}

static void
dwlpx_conf_write(void *cpv, pcitag_t tag, int offset, pcireg_t data)
{
       struct dwlpx_config *ccp = cpv;
       struct dwlpx_softc *sc;
       pcireg_t *dp;
       unsigned long paddr;
       int secondary, i, s = 0;
       uint32_t rvp;

       if ((unsigned int)offset >= PCI_CONF_SIZE)
               return;

       if (ccp == NULL) {
               panic("NULL ccp in dwlpx_conf_write");
       }
       sc = ccp->cc_sc;
       secondary = tag >> 24;
       if (secondary) {
               tag &= 0x1fffff;
               tag |= (secondary << 21);
#if     0
               printf("write secondary %d reg %x (tag %x) with %x\n",
                   secondary, offset, tag, data);
#endif

               alpha_pal_draina();
               s = splhigh();
               /*
                * Set up HPCs for type 1 cycles.
                */
               for (i = 0; i < sc->dwlpx_nhpc; i++) {
                       rvp = REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) |
                               PCIA_CTL_T1CYC;
                       alpha_mb();
                       REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) = rvp;
                       alpha_mb();
               }
       }
       paddr = (unsigned long) tag;
       paddr |= DWLPX_PCI_CONF;
       paddr |= ((unsigned long) ((offset >> 2) << 7));
       paddr |= (((unsigned long) sc->dwlpx_hosenum) << 34);
       paddr |= (((u_long) sc->dwlpx_node - 4) << 36);
       paddr |= (1LL << 39);
       paddr |= (3LL << 3);    /* 32 bit PCI byte enables */

       dp = (pcireg_t *)KV(paddr);
       *dp = data;
       alpha_mb();
       if (secondary) {
               alpha_pal_draina();
               for (i = 0; i < sc->dwlpx_nhpc; i++) {
                       rvp = REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) &
                               ~PCIA_CTL_T1CYC;
                       alpha_mb();
                       REGVAL(PCIA_CTL(i) + ccp->cc_sysbase) = rvp;
                       alpha_mb();
               }
               (void) splx(s);
       }
}