TweetFollow Us on Twitter

Nubus Slots
Volume Number:6
Issue Number:4
Column Tag:XCMD Corner

Related Info: Slot Manager Resource Manager

Exploring NuBus Slots

By Donald Koscheka, Ernst & Young, MacTutor Contributing Editor

Getting on the NuBus

One of the more salient differences between a personal computer and a mini computer is the bus architecture that is used to pipe data between the processor and its peripherals. Minicomputer designers expend great amounts of energy trying to optimize the system’s bus for throughput and flexibility. Personal computer designers seem to be willing to trade bandwidth for cost and “plug compatibility”. The Macintosh II clearly falls into this latter category. The choice of NuBus could only have been made on economic grounds; technologically it is one of the least inspiring choices possible as is evidenced by the use of byte lanes to correct the fact that NuBus is optimized for intel 808x processors.

While I’m underwhelmed with the choice of NuBus, I have to admit that it’s well documented in yet another outstanding technical reference piece available from Apple, Designing Cards and Drivers for Macintosh II and Macintosh SE (Addison Wesley).

A friend of mine asked if I could put together an XCMD that would return the names of all the NuBus cards plugged into the slots on a Macintosh II. I thought this a reasonable request so I plunged into the Slot Manager documentation in IM Volume V to figure out how to assemble such an XCMD. Like the rest of Inside Macintosh, the Slot Manager is a reference piece; it does a good job of documenting the calls to the slot manager but doesn’t go into a lot of depth on how to use these calls.

I called my friend to tell him that I thought the problem was solvable but that the documentation just didn’t lead to a quick solution. He suggested that I scan “Phil and Dave’s Excellent CD” for some examples on how to use the slot manager. Well the only thing I was able to turn up was a hastily written little application called “getsinfo”. To my chagrin, I couldn’t find any source code to this example so I took out MacNosy and began disassembling the code. Supplementing the information gleaned from MacNosy with some careful TMON walk throughs of the application , I pieced together enough information to write the XCMD.

Listing 1 presents an xcmd that returns a Hypercard list of each card plugged into the slots on a Macintosh II. If no card is plugged into a particular slot, it returns a “Empty Slot”. The information presented here augments what I’ve learned by reading the available documentation and by disassembling some code. Although the code in listing 1 works, it may not be complete or bulletproof so make sure that you use it as a point of embarkation. If you intend to explore NuBus further, I suggest that you get both Inside Macintosh, Volume V and Designing Cards and Drivers. I will be happy to publish any corrections or enhancements to this code if anyone feels inclined to take it out for a spin.

Talking to the Slots

Understanding this code requires a quick refresher course in I/O addressing on the Macintosh. The traditional Macintosh II memory map is depicted in Figure 1. Note that the NuBus cards are addressed just as if they were memory chips located between $90 000 and $EF FFFF. Each slot has up to one megabyte of address space assigned to it. Slot memory starts at location $90 0000 (above the ROM) so the six slots are number from $9-$E rather than from from 1 to 6 as might be expected. When making calls to the slot manager that require a slot number, you’ll want to make sure that the number falls between $9 and $E. Although the Mac II is assigned to slot 0, accessing its memory space will generate a bus error (its memory is assigned from $F0 0000 to the top of memory).

These rules change for 32 bit addressing but the 24-bit mode suffices for illustration.

FIGURE 1. Mac II Memory Model (24 bit addresses )

This memory map goes a long way towards explaining why slots are number starting at 9 rather than at 0 or 1. This doesn’t imply that the slots below 9 are reserved by Apple but rather that slots are numbered to correspond with where they reside in memory.

Communication with the slot manager takes place via a record called the SpBlock (think of it as a parameter block for slots). This “slot block” contains fields that are filled in as needed for a given call (See IM V-439 for more details on the slot block). Typically, you need to supply the slot number in the spSlot field and a slot list identification number in spID. Results are returned in the appropriate field or in the spResult field as needed.

Each NuBus card has associated with it a block of firmware called the declaration ROM. This area of card memory is used to store information that is needed by the card. The declaration ROM is organized into slot resources which act like resources in the Macintosh resource manager (they are related but are not interchangeable). Each sResource has a type and a name. For our purposes, we don’t need to concern ourselves with the exact structure of each sResources. We do need to figure out how to find the card name within the card’s declaration ROM.

Before querying a card in slot x for its name, it’s a good idea to check to see that slot x has a card installed in the first place. In listing 1, this is accomplished using the call to SReadInfo. We pass this call the slot number and the address of an sInfoRecord. Poll the siInitStatusA field of this record to determine whether the card is initialized. If the card is installed and initialized, this field will be set to 0 otherwise it will contain an error message describing why the card couldn’t be initialized. If the slot is empty , siInitStatusA will be set to -300, (smEmptySlot). In our slot loop, we ignore slots that are not installed and set the appropriate entry in the slot name list to “empty slot”.

If the slot is initialized, then we get the spID of the first sResource on the card with the call to sNextTypesRsrc. Now I determined this by disassembling the getsinfo application but it seems to me that sNextRsrc might have been just as useful. Since cards can have multiple functions, they can also have multiple resources. To get the name of each “sub device” you will probably need to walk through the sResource list, thus the call to sNextTypesRsrc.

All I’m really interested in is the spID returned by sNextTypesRsrc. Once gotten, I pass this id to sReadDrvrName to get the name of the driver that handles this card (it seems reasonable to associate the name of the card with the name of the driver that codes for it). This is accomplished with a call to sReadDrvrName although getsinfo appears to take another tack preferring to use SGetCString to extract the card name via a slightly more convoluted scheme. The problem with sGetDrvrName is that it returns the card name as a pascal string preceded by a “.” so that this name can be passed directly to openDriver. No big deal, I simply convert the string back to a “C” string and ignore the first character as it was added to the string anyway.

SlotInfo.c loops for as many slots as it can get information about in the call to SReadInfo. I chose this approach rather than using a for loop (0x09..0x0E) because not all Mac II’s have six slots. Thus slotinfo returns an entry for each slot in the physical machine regardless of whether the slot holds a card or not.

The results of this investigation were interesting. For example, the Apple video card is named the “Toby Frame Buffer” no doubt in honor of its inventor, Toby Frame Buffer. This name may not be too meaningful to the average user so my Hypercard handler for this XCMD converts it to “Apple Video Card”.

Conclusion

At any rate, this is a starting point for anyone that needs to explore programming for NuBus. I hope that the information is mostly correct, but if I’ve made any errors, please be kind enough to pass on the corrections to this magazine so that we can all expand our knowledge of this area.

Ther’s lots of things that you can do once armed with this information such as poll choice locations on the cards, return card status information and, of course, provide a software mechanism for telling the user what’s got under the hood so people don’t have to go around popping their tops every time they want to find out how their Macs are configured.

/****************************************/
/* File: SlotInfo.c*/
/* */
/* Returns a hypercard compatible list */
/* of the names of the cards in each of*/
/* the nuBus slots.*/
/****************************************/

#define UsingHypercard

#include<MacTypes.h>
#include<OSUtil.h>
#include<MemoryMgr.h>
#include<pascal.h>
#include<string.h>
#include “HyperXCmd.h”
#include<HyperUtils.h>
/* obtained from back issues of MacTutor */
#include<SlotMgr.h>

#define SLOT1  0x09

pascal void main( paramPtr )
 XCmdBlockPtr  paramPtr;
{
 short  slotnum  = SLOT1;
 OSErr  err;
 Handle SlotList = NewHandle( 0L );
 short  sResIndex;
 SpBlockslotblok;
 SInfoRecordslotinfo;
 char   slotName[256];
 
 /*** Loop until no more slots found ***/
 
 while( 1 ){
 slotblok.spSlot = slotnum;
 slotblok.spResult = (long)&slotinfo;
 
 if( (err = SReadInfo( &slotblok ) ) == noErr ){
 if( slotinfo.siInitStatusA == 0 ){
 /*** have a card in this slot ***/
 sResIndex = 0;
 
 slotblok.spSlot = slotnum;
 slotblok.spID = sResIndex;
 
 slotblok.spTBMask = 3;
 slotblok.spCategory = 1;
 slotblok.spCType= 0;
 slotblok.spDrvrHW = 0;
 slotblok.spDrvrSW = 0;
 slotblok.spHwDev= 0;
 slotblok.spExtDev = 0;
 err = SNextTypesRsrc( &slotblok );
 
 slotblok.spResult = (long)&slotName;
 
 DebugStr(“\p read name”);
 err = SReadDrvrName( &slotblok );
 
 if( !err ){
 PtoCstr( (char *)&slotName );
 CopyStrToHandle( (char *)&(slotName[1]), SlotList );
 }
 
 AppendCharToHandle( SlotList, ‘\r’ );

 }
 else
 pStrToField( “\pEmpty Slot”, ‘\r’, SlotList );
 
 slotnum++;
 }
 else
 break;
 }
 AppendCharToHandle( SlotList, ‘\0’ );
 paramPtr->returnValue = SlotList;
}

Listing 1. SlotInfo.c XCMD

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Fresh From the Land Down Under – The Tou...
After a two week hiatus, we are back with another episode of The TouchArcade Show. Eli is fresh off his trip to Australia, which according to him is very similar to America but more upside down. Also kangaroos all over. Other topics this week... | Read more »
TouchArcade Game of the Week: ‘Dungeon T...
I’m a little conflicted on this week’s pick. Pretty much everyone knows the legend of Dungeon Raid, the match-3 RPG hybrid that took the world by storm way back in 2011. Everyone at the time was obsessed with it, but for whatever reason the... | Read more »
SwitchArcade Round-Up: Reviews Featuring...
Hello gentle readers, and welcome to the SwitchArcade Round-Up for July 19th, 2024. In today’s article, we finish up the week with the unusual appearance of a review. I’ve spent my time with Hot Lap Racing, and I’m ready to give my verdict. After... | Read more »
Draknek Interview: Alan Hazelden on Thin...
Ever since I played my first release from Draknek & Friends years ago, I knew I wanted to sit down with Alan Hazelden and chat about the team, puzzle games, and much more. | Read more »
The Latest ‘Marvel Snap’ OTA Update Buff...
I don’t know about all of you, my fellow Marvel Snap (Free) players, but these days when I see a balance update I find myself clenching my… teeth and bracing for the impact to my decks. They’ve been pretty spicy of late, after all. How will the... | Read more »
‘Honkai Star Rail’ Version 2.4 “Finest D...
HoYoverse just announced the Honkai Star Rail (Free) version 2.4 “Finest Duel Under the Pristine Blue" update alongside a surprising collaboration. Honkai Star Rail 2.4 follows the 2.3 “Farewell, Penacony" update. Read about that here. | Read more »
‘Vampire Survivors+’ on Apple Arcade Wil...
Earlier this month, Apple revealed that poncle’s excellent Vampire Survivors+ () would be heading to Apple Arcade as a new App Store Great. I reached out to poncle to check in on the DLC for Vampire Survivors+ because only the first two DLCs were... | Read more »
Homerun Clash 2: Legends Derby opens for...
Since launching in 2018, Homerun Clash has performed admirably for HAEGIN, racking up 12 million players all eager to prove they could be the next baseball champions. Well, the title will soon be up for grabs again, as Homerun Clash 2: Legends... | Read more »
‘Neverness to Everness’ Is a Free To Pla...
Perfect World Games and Hotta Studio (Tower of Fantasy) announced a new free to play open world RPG in the form of Neverness to Everness a few days ago (via Gematsu). Neverness to Everness has an urban setting, and the two reveal trailers for it... | Read more »
Meditative Puzzler ‘Ouros’ Coming to iOS...
Ouros is a mediative puzzle game from developer Michael Kamm that launched on PC just a couple of months back, and today it has been revealed that the title is now heading to iOS and Android devices next month. Which is good news I say because this... | Read more »

Price Scanner via MacPrices.net

Amazon is still selling 16-inch MacBook Pros...
Prime Day in July is over, but Amazon is still selling 16-inch Apple MacBook Pros for $500-$600 off MSRP. Shipping is free. These are the lowest prices available this weekend for new 16″ Apple... Read more
Walmart continues to sell clearance 13-inch M...
Walmart continues to offer clearance, but new, Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBooks... Read more
Apple is offering steep discounts, up to $600...
Apple has standard-configuration 16″ M3 Max MacBook Pros available, Certified Refurbished, starting at $2969 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free,... Read more
Save up to $480 with these 14-inch M3 Pro/M3...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
Amazon has clearance 9th-generation WiFi iPad...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Apple is offering a $50 discount on 2nd-gener...
Apple has Certified Refurbished White and Midnight HomePods available for $249, Certified Refurbished. That’s $50 off MSRP and the lowest price currently available for a full-size Apple HomePod today... Read more
The latest MacBook Pro sale at Amazon: 16-inc...
Amazon is offering instant discounts on 16″ M3 Pro and 16″ M3 Max MacBook Pros ranging up to $400 off MSRP as part of their early July 4th sale. Shipping is free. These are the lowest prices... Read more
14-inch M3 Pro MacBook Pros with 36GB of RAM...
B&H Photo has 14″ M3 Pro MacBook Pros with 36GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 Pro MacBook Pro (... Read more
14-inch M3 MacBook Pros with 16GB of RAM on s...
B&H Photo has 14″ M3 MacBook Pros with 16GB of RAM and 512GB or 1TB SSDs in stock today and on sale for $150-$200 off Apple’s MSRP, each including free 1-2 day shipping: – 14″ M3 MacBook Pro (... Read more
Amazon is offering $170-$200 discounts on new...
Amazon is offering a $170-$200 discount on every configuration and color of Apple’s M3-powered 15″ MacBook Airs. Prices start at $1129 for models with 8GB of RAM and 256GB of storage: – 15″ M3... Read more

Jobs Board

*Apple* Systems Engineer - Chenega Corporati...
…LLC,** a **Chenega Professional Services** ' company, is looking for a ** Apple Systems Engineer** to support the Information Technology Operations and Maintenance Read more
Solutions Engineer - *Apple* - SHI (United...
**Job Summary** An Apple Solution Engineer's primary role is tosupport SHI customers in their efforts to select, deploy, and manage Apple operating systems and Read more
*Apple* / Mac Administrator - JAMF Pro - Ame...
Amentum is seeking an ** Apple / Mac Administrator - JAMF Pro** to provide support with the Apple Ecosystem to include hardware and software to join our team and Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.