/*      $NetBSD: mem.c,v 1.2 2022/09/29 06:39:58 skrll Exp $    */

/*      $OpenBSD: mem.c,v 1.30 2007/09/22 16:21:32 krw Exp $    */
/*
* Copyright (c) 1998-2004 Michael Shalayeff
* 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, 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.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 HIS RELATIVES 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 MIND, 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.
*/
/*
* Copyright (c) 1991,1992,1994, The University of Utah and
* the Computer Systems Laboratory (CSL).  All rights reserved.
*
* Subject to your agreements with CMU,
* permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* THE UNIVERSITY OF UTAH AND CSL ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS
* IS" CONDITION.  THE UNIVERSITY OF UTAH AND CSL DISCLAIM ANY LIABILITY OF
* ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* CSL requests users of this software to return to [email protected] any
* improvements that they make and grant CSL redistribution rights.
*
*      Utah $Hdr: mem.c 1.9 94/12/16$
*/
/*
* Mach Operating System
* Copyright (c) 1992 Carnegie Mellon University
* All Rights Reserved.
*
* Permission to use, copy, modify and distribute this software and its
* documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
*  Software Distribution Coordinator  or  [email protected]
*  School of Computer Science
*  Carnegie Mellon University
*  Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie Mellon
* the rights to redistribute these changes.
*/

#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: mem.c,v 1.2 2022/09/29 06:39:58 skrll Exp $");

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
#include <sys/conf.h>
#include <sys/proc.h>
#include <sys/uio.h>
#include <sys/types.h>
#include <sys/device.h>
#include <sys/errno.h>
#include <sys/ioctl.h>
#include <sys/file.h>
#include <sys/bus.h>
#include <sys/mutex.h>

#include <uvm/uvm.h>

#include <machine/iomod.h>
#include <machine/autoconf.h>
#include <machine/pmap.h>

#include <hppa/hppa/machdep.h>
#include <hppa/dev/cpudevs.h>
#include <hppa/dev/viper.h>

/* registers on the PCXL2 MIOC */
struct l2_mioc {
       uint32_t        pad[0x20];      /* 0x000 */
       uint32_t        mioc_control;   /* 0x080 MIOC control bits */
       uint32_t        mioc_status;    /* 0x084 MIOC status bits */
       uint32_t        pad1[6];        /* 0x088 */
       uint32_t        sltcv;          /* 0x0a0 L2 cache control */
#define SLTCV_AVWL      0x00002000      /* extra cycle for addr valid write low */
#define SLTCV_UP4COUT   0x00001000      /* update cache on CPU castouts */
#define SLTCV_EDCEN     0x08000000      /* enable error correction */
#define SLTCV_EDTAG     0x10000000      /* enable diagtag */
#define SLTCV_CHKTP     0x20000000      /* enable parity checking */
#define SLTCV_LOWPWR    0x40000000      /* low power mode */
#define SLTCV_ENABLE    0x80000000      /* enable L2 cache */
#define SLTCV_BITS      "\020\15avwl\16up4cout\24edcen\25edtag\26chktp\27lowpwr\30l2ena"
       uint32_t        tagmask;        /* 0x0a4 L2 cache tag mask */
       uint32_t        diagtag;        /* 0x0a8 L2 invalidates tag */
       uint32_t        sltestat;       /* 0x0ac L2 last logged tag read */
       uint32_t        slteadd;        /* 0x0b0 L2 pa of -- " -- */
       uint32_t        pad2[3];        /* 0x0b4 */
       uint32_t        mtcv;           /* 0x0c0 MIOC timings */
       uint32_t        ref;            /* 0x0cc MIOC refresh timings */
       uint32_t        pad3[4];        /* 0x0d0 */
       uint32_t        mderradd;       /* 0x0e0 addr of most evil mem error */
       uint32_t        pad4;           /* 0x0e4 */
       uint32_t        dmaerr;         /* 0x0e8 addr of most evil dma error */
       uint32_t        dioerr;         /* 0x0ec addr of most evil dio error */
       uint32_t        gsc_timeout;    /* 0x0f0 1-compl of GSC timeout delay */
       uint32_t        hidmamem;       /* 0x0f4 amount of phys mem installed */
       uint32_t        pad5[2];        /* 0x0f8 */
       uint32_t        memcomp[16];    /* 0x100 memory address comparators */
       uint32_t        memmask[16];    /* 0x140 masks for -- " -- */
       uint32_t        memtest;        /* 0x180 test address decoding */
       uint32_t        pad6[0xf];      /* 0x184 */
       uint32_t        outchk;         /* 0x1c0 address decoding output */
       uint32_t        pad7[0x168];    /* 0x200 */
       uint32_t        gsc15x_config;  /* 0x7a0 writev enable */
};

struct mem_softc {
       device_t sc_dev;

       volatile struct vi_trs *sc_vp;
       volatile struct l2_mioc *sc_l2;
};

int     memmatch(device_t, cfdata_t, void *);
void    memattach(device_t, device_t, void *);

CFATTACH_DECL_NEW(mem, sizeof(struct mem_softc), memmatch, memattach,
   NULL, NULL);

int
memmatch(device_t parent, cfdata_t cf, void *aux)
{
       struct confargs *ca = aux;

       if (ca->ca_type.iodc_type != HPPA_TYPE_MEMORY ||
           ca->ca_type.iodc_sv_model != HPPA_MEMORY_PDEP)
               return 0;
       return 1;
}

void
memattach(device_t parent, device_t self, void *aux)
{
       struct pdc_iodc_minit pdc_minit;
       struct confargs *ca = aux;
       struct mem_softc *sc = device_private(self);
       int err, pagezero_cookie;
       char bits[128];

       sc->sc_dev = self;

       aprint_normal(":");

       pagezero_cookie = hppa_pagezero_map();

       /* XXX check if we are dealing w/ Viper */
       if (ca->ca_hpa == (hppa_hpa_t)VIPER_HPA) {

               sc->sc_vp = (struct vi_trs *)
                   &((struct iomod *)ca->ca_hpa)->priv_trs;

               /* XXX other values seem to blow it up */
               if (sc->sc_vp->vi_status.hw_rev == 0) {
                       uint32_t vic;
                       int s, settimeout;

                       switch (cpu_modelno) {
                       case HPPA_BOARD_HP715_33:
                       case HPPA_BOARD_HP715S_33:
                       case HPPA_BOARD_HP715T_33:
                       case HPPA_BOARD_HP715_50:
                       case HPPA_BOARD_HP715S_50:
                       case HPPA_BOARD_HP715T_50:
                       case HPPA_BOARD_HP715_75:
                       case HPPA_BOARD_HP725_50:
                       case HPPA_BOARD_HP725_75:
                               settimeout = 1;
                               break;
                       default:
                               settimeout = 0;
                               break;
                       }
                       if (device_cfdata(self)->cf_flags & 1)
                               settimeout = !settimeout;

                       snprintb(bits, sizeof(bits), VIPER_BITS, VI_CTRL);
                       aprint_normal(" viper rev %x, ctrl %s",
                           sc->sc_vp->vi_status.hw_rev, bits);

                       s = splhigh();
                       vic = VI_CTRL;
                       ((struct vi_ctrl *)&vic)->core_den = 0;
                       ((struct vi_ctrl *)&vic)->sgc0_den = 0;
                       ((struct vi_ctrl *)&vic)->sgc1_den = 0;
                       ((struct vi_ctrl *)&vic)->eisa_den = 1;
                       ((struct vi_ctrl *)&vic)->core_prf = 1;

                       if (settimeout &&
                           ((struct vi_ctrl *)&vic)->vsc_tout == 0)
                               /* clks */
                               ((struct vi_ctrl *)&vic)->vsc_tout = 850;

                       sc->sc_vp->vi_control = vic;

                       __asm __volatile("stwas %1, 0(%0)"
                           :: "r" (&VI_CTRL), "r" (vic) : "memory");
                       splx(s);
#ifdef DEBUG
                       snprintb(bits, sizeof(bits), VIPER_BITS, VI_CTRL);
                       printf (" >> %s", bits);
#endif
               } else
                       sc->sc_vp = NULL;
       } else
               sc->sc_vp = NULL;

       err = pdcproc_iodc_ninit(&pdc_minit, ca->ca_hpa, PAGE0->imm_spa_size);
       if (err < 0)
               pdc_minit.max_spa = PAGE0->imm_max_mem;

       hppa_pagezero_unmap(pagezero_cookie);

       aprint_normal(" size %d", pdc_minit.max_spa / (1024*1024));
       if (pdc_minit.max_spa % (1024*1024))
               aprint_normal(".%d", pdc_minit.max_spa % (1024*1024));
       aprint_normal("MB");

       /* L2 cache controller is a part of the memory controller on PCXL2 */
       if (hppa_cpu_info->hci_cputype == hpcxl2) {
               sc->sc_l2 = (struct l2_mioc *)ca->ca_hpa;
#ifdef DEBUG
               snprintb(bits, sizeof(bits), SLTCV_BITS, sc->sc_l2->sltcv);
               printf(", sltcv %s", bits);
#endif
               /* sc->sc_l2->sltcv |= SLTCV_UP4COUT; */
               if (sc->sc_l2->sltcv & SLTCV_ENABLE) {
                       uint32_t tagmask = sc->sc_l2->tagmask >> 20;
                       aprint_normal(", %dMB L2 cache", tagmask + 1);
               }
       }
       aprint_normal("\n");
}

void
viper_setintrwnd(uint32_t mask)
{
       device_t dv;
       struct mem_softc *sc;

       dv = device_find_by_driver_unit("mem", 0);
       sc = device_private(dv);

       if (sc->sc_vp)
               sc->sc_vp->vi_intrwd;
}

void
viper_eisa_en(void)
{
       device_t dv;
       struct mem_softc *sc;

       dv = device_find_by_driver_unit("mem", 0);
       sc = device_private(dv);

       if (sc->sc_vp) {
               int pagezero_cookie;
               uint32_t vic;
               int s;

               pagezero_cookie = hppa_pagezero_map();
               s = splhigh();
               vic = VI_CTRL;
               ((struct vi_ctrl *)&vic)->eisa_den = 0;
               sc->sc_vp->vi_control = vic;
               __asm __volatile("stwas %1, 0(%0)"
                  :: "r" (&VI_CTRL), "r" (vic) : "memory");
               splx(s);
               hppa_pagezero_unmap(pagezero_cookie);
       }
}